|
--- |
|
dataset_info: |
|
features: |
|
- name: function |
|
dtype: string |
|
splits: |
|
- name: train |
|
num_bytes: 23635 |
|
num_examples: 29 |
|
download_size: 10889 |
|
dataset_size: 23635 |
|
configs: |
|
- config_name: default |
|
data_files: |
|
- split: train |
|
path: data/train-* |
|
--- |
|
|
|
# Nexus Function Definitions |
|
|
|
This dataset reformats function specs from the [Nexusflow/Function_Call_Definitions](https://huggingface.co/datasets/Nexusflow/Function_Call_Definitions) VT_Multi subset. |
|
The function defitions are formatted as JSON Schema objects making them suitable for use with OpenAI compatible APIs. |
|
|
|
## Dataset Fields |
|
|
|
* `function:str` - function spec in JSON Schema syntax serialized as a string with 4-space indent. |
|
|
|
## Usage |
|
|
|
```py |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("fireworks-ai/nexus_parallel_functions") |
|
``` |