Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: add the example for using HuggingFace text generation filter #36

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

This repo contains a curated list of VulcanSQL examples.

|Name|Installed Extensions|Deployment|Demo Link|
|---|---|---|---|
|[COVID 19 Global Data API](./covid19-global-data-api/)|DuckDB|Fly.io|https://covid19-dashboard.fly.dev/|
|[Yelp Dataset API](./yelp-dataset-api/)|DuckDB|Fly.io|https://yelp-dataset-demo.fly.dev/|
|[Customer Support on Twitter](./customer-support-on-twitter/)|PostgreSQL, DuckDB|Fly.io|https://customer-support-on-twitter-demo.fly.dev/|
|[Make a Admin Panel in Appsmith](./admin-panel-using-appsmith/)|DuckDB|Appsmith|https://app.appsmith.com/app/food-table-powered-by-vulcansql/page1-64a6848a4d60e87c5655e3f6|
|[Read Data from Internet](./read-data-from-internet/)|DuckDB|||
|[dbt Minimum Example Using jaffle-shop](./dbt-jaffle-shop/)|DuckDB, dbt|||
|[Data Sharing](./data-sharing/)|DuckDB|||
|[HuggingFace Table Question Answering](./huggingface/table-question-answering/)|DuckDB, HuggingFace|||
|[VulcanSQL Benchmark test](./daily-revenue/)|DuckDB, BigQuery|||
|[[WIP]: Kaggle: Credit Card customers](./kaggle-credit-card-customers/)||||
|[[WIP]: VulcanSQL Extensions](./vulcan-sql-extensions/)||||
| Name | Installed Extensions | Deployment | Demo Link |
|---------------------------------------------------------------------------------|----------------------|------------|---------------------------------------------------------------------------------------------|
| [COVID 19 Global Data API](./covid19-global-data-api/) | DuckDB | Fly.io | https://covid19-dashboard.fly.dev/ |
| [Yelp Dataset API](./yelp-dataset-api/) | DuckDB | Fly.io | https://yelp-dataset-demo.fly.dev/ |
| [Customer Support on Twitter](./customer-support-on-twitter/) | PostgreSQL, DuckDB | Fly.io | https://customer-support-on-twitter-demo.fly.dev/ |
| [Make a Admin Panel in Appsmith](./admin-panel-using-appsmith/) | DuckDB | Appsmith | https://app.appsmith.com/app/food-table-powered-by-vulcansql/page1-64a6848a4d60e87c5655e3f6 |
| [Read Data from Internet](./read-data-from-internet/) | DuckDB | | |
| [dbt Minimum Example Using jaffle-shop](./dbt-jaffle-shop/) | DuckDB, dbt | | |
| [Data Sharing](./data-sharing/) | DuckDB | | |
| [HuggingFace Table Question Answering](./huggingface/table-question-answering/) | DuckDB, HuggingFace | | |
| [HuggingFace Text Generation - Using Llama2](./huggingface/text-generation/) | DuckDB, HuggingFace | | |
| [VulcanSQL Benchmark test](./daily-revenue/) | DuckDB, BigQuery | | |
| [[WIP]: Kaggle: Credit Card customers](./kaggle-credit-card-customers/) | | | |
| [[WIP]: VulcanSQL Extensions](./vulcan-sql-extensions/) | | | |

## Public Datasets

Expand Down
9 changes: 8 additions & 1 deletion huggingface/table-question-answering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ $ yarn install -g @vulcan-sql/cli
$ yarn install
```

3. Start VulcanSQL in the terminal
3. Create your HuggingFace [User Access Token](https://huggingface.co/docs/hub/security-tokens) and add to `vulcan.yaml`:

```yaml
hf:
accessToken: "<your access token>"
```

4. Start VulcanSQL in the terminal

```bash
$ vulcan start --watch
Expand Down
2 changes: 1 addition & 1 deletion huggingface/table-question-answering/vulcan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ response-format:
- csv

hf:
accessToken: "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"
accessToken: "<your access token>"
Loading