Skip to content

Commit 2cb930f

Browse files
committed
fix typo
1 parent 7714e8c commit 2cb930f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/doc/blog/querying-your-data-easily-and-smartly-through-huggingface.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ VulcanSQL currently integrates the table question answering feature by creating
6363
`huggingface_table_question_answering` and allows you to apply functions to variables using the
6464
pipe operator (`|`).
6565

66-
**Sample 1 - send the data from the variable `set` tag:**
66+
**Sample 1 - send the data from the [`set` tag](../docs/develop/advanced#set-variables):**
6767

6868
You could give the dataset with the **`set` tag**
6969
and give the question with the `query` field:
@@ -104,7 +104,7 @@ Here is a response returned by `huggingface_table_question_answering`:
104104
The result will be converted to a JSON string from `huggingface_table_question_answering`.
105105
You could decompress the JSON string and use the result by yourself.
106106

107-
**Sample 2 - send the data from the `req` tag:**
107+
**Sample 2 - send the data from the [`req` tag](../docs/develop/predefined-queries):**
108108

109109
You could also use the `req` tag to keep the query result from the previous SQL condition and save it
110110
to a variable named `repositories`. Then you can use `.value()` to get the data result and

packages/doc/docs/extensions/huggingface/huggingface-table-question-answering.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The [Table Question Answering](https://huggingface.co/docs/api-inference/detaile
66

77
The result will be converted to a JSON string from `huggingface_table_question_answering`. You could decompress the JSON string and use the result by itself.
88

9-
**Sample 1 - send the data from variable by [set tag](https://vulcansql.com/docs/develop/advance#set-variables):**
9+
**Sample 1 - send the data from variable by [set tag](../../develop/advanced#set-variables):**
1010

1111
```sql
1212
{% set data = [
@@ -41,7 +41,7 @@ SELECT {{ data | huggingface_table_question_answering(query="How many repositori
4141
]
4242
```
4343

44-
**Sample 2 - send the data from [req tag](https://vulcansql.com/docs/develop/predefined-queries):**
44+
**Sample 2 - send the data from [req tag](../../develop/predefined-queries):**
4545

4646
```sql
4747
{% req artists %}

0 commit comments

Comments
 (0)