-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.json
42 lines (41 loc) · 1.01 KB
/
config.json
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
35
36
37
38
39
40
41
42
{
"resources": [
{
"type": "text",
"path": "inputs/press_release.txt",
"template": "Here are your thoughts on the statement '{chunk}' from the file '{file}' (start: {start}, end: {end}):"
},
{
"type": "pdf",
"path": "inputs/sec_filings_10k.pdf",
"template": "The following excerpt is from the PDF '{file}' (start: {start}, end: {end}):\\n{chunk}"
},
{
"type": "web",
"path": "https://blogs.nvidia.com/",
"template": "The following content is scraped from the web page '{file}':\\n{chunk}"
}
],
"agents": [
{
"name": "Researcher",
"role": "Text Analysis"
},
{
"name": "Web Analyzer",
"role": "Web Scraping"
}
],
"tasks": [
{
"name": "Text Task",
"agent": "Researcher",
"resource": "Text"
},
{
"name": "Web Scrape Task",
"agent": "Web Analyzer",
"resource": "Web"
}
]
}