removed langchain dependency from config
Browse files
ControllerAtomicFlow.yaml
CHANGED
@@ -28,7 +28,7 @@ output_interface:
|
|
28 |
#######################################################
|
29 |
# ToDo: Some parts of the prompt don't make sense -- update them
|
30 |
system_message_prompt_template:
|
31 |
-
_target_:
|
32 |
template: |2-
|
33 |
You are a smart AI assistant.
|
34 |
|
@@ -70,22 +70,19 @@ system_message_prompt_template:
|
|
70 |
}
|
71 |
Ensure your responses can be parsed by Python json.loads
|
72 |
input_variables: ["commands"]
|
73 |
-
template_format: jinja2
|
74 |
|
75 |
human_message_prompt_template:
|
76 |
-
_target_:
|
77 |
template: |2-
|
78 |
Here is the response to your last action:
|
79 |
{{observation}}
|
80 |
input_variables:
|
81 |
- "observation"
|
82 |
-
template_format: jinja2
|
83 |
|
84 |
init_human_message_prompt_template:
|
85 |
-
_target_:
|
86 |
template: |2-
|
87 |
Here is the goal you need to achieve:
|
88 |
{{goal}}
|
89 |
input_variables:
|
90 |
- "goal"
|
91 |
-
template_format: jinja2
|
|
|
28 |
#######################################################
|
29 |
# ToDo: Some parts of the prompt don't make sense -- update them
|
30 |
system_message_prompt_template:
|
31 |
+
_target_: flows.prompt_template.JinjaPrompt
|
32 |
template: |2-
|
33 |
You are a smart AI assistant.
|
34 |
|
|
|
70 |
}
|
71 |
Ensure your responses can be parsed by Python json.loads
|
72 |
input_variables: ["commands"]
|
|
|
73 |
|
74 |
human_message_prompt_template:
|
75 |
+
_target_: flows.prompt_template.JinjaPrompt
|
76 |
template: |2-
|
77 |
Here is the response to your last action:
|
78 |
{{observation}}
|
79 |
input_variables:
|
80 |
- "observation"
|
|
|
81 |
|
82 |
init_human_message_prompt_template:
|
83 |
+
_target_: flows.prompt_template.JinjaPrompt
|
84 |
template: |2-
|
85 |
Here is the goal you need to achieve:
|
86 |
{{goal}}
|
87 |
input_variables:
|
88 |
- "goal"
|
|