File size: 828 Bytes
437562b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
476f152
 
 
 
962b01b
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
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")
```