Update README.md
Browse files
README.md
CHANGED
|
@@ -19,4 +19,16 @@ configs:
|
|
| 19 |
# Nexus Function Definitions
|
| 20 |
|
| 21 |
This dataset reformats function specs from the [Nexusflow/Function_Call_Definitions](https://huggingface.co/datasets/Nexusflow/Function_Call_Definitions) VT_Multi subset.
|
| 22 |
-
The function defitions are formatted as JSON Schema objects making them suitable for use with OpenAI compatible APIs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
# Nexus Function Definitions
|
| 20 |
|
| 21 |
This dataset reformats function specs from the [Nexusflow/Function_Call_Definitions](https://huggingface.co/datasets/Nexusflow/Function_Call_Definitions) VT_Multi subset.
|
| 22 |
+
The function defitions are formatted as JSON Schema objects making them suitable for use with OpenAI compatible APIs.
|
| 23 |
+
|
| 24 |
+
## Dataset Fields
|
| 25 |
+
|
| 26 |
+
* `function:str` - function spec in JSON Schema syntax serialized as a string with 4-space indent.
|
| 27 |
+
|
| 28 |
+
## Usage
|
| 29 |
+
|
| 30 |
+
```py
|
| 31 |
+
from datasets import load_dataset
|
| 32 |
+
|
| 33 |
+
dataset = load_dataset("fireworks-ai/nexus_parallel_functions")
|
| 34 |
+
```
|