Spaces:
Sleeping
Sleeping
acecalisto3
commited on
Commit
•
d5aaf91
1
Parent(s):
e9c6e66
Create langchain.yml
Browse files- langchain.yml +25 -0
langchain.yml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: "1"
|
2 |
+
|
3 |
+
components:
|
4 |
+
- name: BigAGIResolutionAgent
|
5 |
+
type: Agent
|
6 |
+
memory: IssueMemory
|
7 |
+
- name: IssueMemory
|
8 |
+
type: Memory
|
9 |
+
storage_type: Database
|
10 |
+
- name: IssueResolutionChain
|
11 |
+
type: Chain
|
12 |
+
llm: GPT-3
|
13 |
+
prompt: "issue_resolution_prompt.txt"
|
14 |
+
tools:
|
15 |
+
- "issue_resolution_tool.py"
|
16 |
+
- name: FeatureImplementationChain
|
17 |
+
type: Chain
|
18 |
+
llm: GPT-3
|
19 |
+
prompt: "feature_implementation_prompt.txt"
|
20 |
+
tools:
|
21 |
+
- "feature_implementation_tool.py"
|
22 |
+
|
23 |
+
flows:
|
24 |
+
- name: BigAGIResolutionFlow
|
25 |
+
file: flows/flow.json
|