Datasets:
emrgnt-cmplxty
commited on
Commit
•
36a6ad2
1
Parent(s):
753ff5e
Update README.md
Browse files
README.md
CHANGED
@@ -45,15 +45,15 @@ To access and utilize the AgentSearch-V1 dataset, you can stream it via HuggingF
|
|
45 |
```python
|
46 |
from datasets import load_dataset
|
47 |
# To stream the entire dataset:
|
48 |
-
ds = load_dataset("SciPhi/
|
49 |
|
50 |
# Optional, stream just the "arxiv" dataset
|
51 |
-
ds = load_dataset("SciPhi/
|
52 |
```
|
53 |
|
54 |
---
|
55 |
|
56 |
-
A full set of scripts to recreate the dataset from scratch can be found [here](https://github.com/SciPhi/agent-search).
|
57 |
|
58 |
### Dataset Summary
|
59 |
|
|
|
45 |
```python
|
46 |
from datasets import load_dataset
|
47 |
# To stream the entire dataset:
|
48 |
+
ds = load_dataset("SciPhi/AgentSearch-V1", data_files="**/*", streaming=True)
|
49 |
|
50 |
# Optional, stream just the "arxiv" dataset
|
51 |
+
ds = load_dataset("SciPhi/AgentSearch-V1", data_files="arxiv/*", streaming=True)
|
52 |
```
|
53 |
|
54 |
---
|
55 |
|
56 |
+
A full set of scripts to recreate the dataset from scratch can be found [here](https://github.com/SciPhi-AI/agent-search). [Synthesizer](https://github.com/SciPhi-AI/synthesizer) offers direct integration with AgentSearch and top LLM providers.
|
57 |
|
58 |
### Dataset Summary
|
59 |
|