-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.yaml
52 lines (52 loc) · 1.63 KB
/
config.yaml
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
tools:
- name: "product_assistant"
description: "Answers questions related to CloudForge products: CloudForge Migrate, Secure, AI Optimizer, DevOps Accelerator, Kubernetes Orchestrator Pro"
url: "host/query/product"
config:
method: 'POST'
headers:
'Content-Type': 'application/json'
body:
query_text: '{{prompt}}'
top_k: 3
responseParser: 'text_chunk'
responseFormat:
agent: '{{response}}'
json:
- "response"
examples:
- "What does the CloudForge Migrate product do?"
- name: "HR_assistant"
description: "Answers questions related to HR, employment, onboarding, culture, policies, workplace, IT, and security"
url: "http://host/query/hr"
config:
method: 'POST'
headers:
'Content-Type': 'application/json'
body:
query_text: '{{prompt}}'
top_k: 3
responseParser: 'text_chunk'
responseFormat:
agent: '{{response}}'
json:
- "response"
examples:
- "What HR things should I do before the start date?"
- name: "accounts_assistant"
description: "Answers questions related to statements and revenue of customer accounts: FinNova Bank, MediCore Systems, TechWave Solutions"
url: "http://host/query/accounts"
config:
method: 'POST'
headers:
'Content-Type': 'application/json'
body:
query_text: '{{prompt}}'
top_k: 3
responseParser: 'text_chunk'
responseFormat:
agent: '{{response}}'
json:
- "response"
examples:
- "Total Payments Received from FinNova Bank?"