File size: 546 Bytes
d5aaf91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
version: "1"

components:
  - name: BigAGIResolutionAgent
    type: Agent
    memory: IssueMemory
  - name: IssueMemory
    type: Memory
    storage_type: Database
  - name: IssueResolutionChain
    type: Chain
    llm: GPT-3
    prompt: "issue_resolution_prompt.txt"
    tools:
      - "issue_resolution_tool.py"
  - name: FeatureImplementationChain
    type: Chain
    llm: GPT-3
    prompt: "feature_implementation_prompt.txt"
    tools:
      - "feature_implementation_tool.py"

flows:
  - name: BigAGIResolutionFlow
    file: flows/flow.json