-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.example.json
71 lines (71 loc) · 2.21 KB
/
params.example.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"model_provider": {
"provider": "GOOGLE",
"model_id": "claude-3-5-sonnet@20240620",
"temperature": 0.9,
"provider_args": {
"project_id": "<project_id>",
"location": "us-east5",
"sa": "GCP_SERVICE_ACCOUNT"
}
},
"researcher_worker": {
"id": "ResearcherWorker",
"task": "searchs information about the user request related to the topic of your interest",
"enabled": true,
"web_retriever": {
"enabled": false,
"urls": [],
"is_advanced_search": "true",
"max_number_of_resources": 5
},
"kdb_retriever_params": {
"kdb_id": "<YOUR BEDROCK KDB>",
"kdb_max_number_of_results": 3,
"kdb_region": "us-east-1"
}
},
"assistant_worker": {
"id": "AssistantWorker",
"task": "introduces the agent and all the details about the agent (name, role and features)"
},
"checkpointer": {
"endpoint": "127.0.0.1",
"port": 6379,
"db_number": 0,
"auth_params": {
"username": "default",
"password": "<your password>",
"ssl": true
}
},
"workers": [
{
"id": "CityGuide",
"name": "city guide",
"task": "help users find relevant plans around the city",
"tools": [
{
"name": "find_city_activities",
"description": "useful to find activities around the city",
"tool_schema": {
"title": "CityPlans",
"type": "object",
"properties": {
"city": {
"type": "string"
}
},
"required": ["city"]
},
"endpoint": "http://localhost:8000/city-plans",
"endpoint_config": {
"headers": {
"Content-Type": "application/json"
}
}
}
]
}
]
}