Spaces:
Sleeping
Sleeping
Update prompts.yaml
Browse files- prompts.yaml +2 -2
prompts.yaml
CHANGED
@@ -158,8 +158,8 @@ tools:
|
|
158 |
```tool
|
159 |
convert_units(value=100, from_unit="F", to_unit="C")
|
160 |
```
|
161 |
-
tool_result: "100 F = 37.78 C"
|
162 |
-
assistant_final: "100 F = 37.78 C"
|
163 |
{%- for tool in tools.values() %}
|
164 |
- {{ tool.name }}: {{ tool.description }}
|
165 |
Takes inputs: {{tool.inputs}}
|
|
|
158 |
```tool
|
159 |
convert_units(value=100, from_unit="F", to_unit="C")
|
160 |
```
|
161 |
+
tool_result: "100 F = 37.78 C" # Quoted string with no % or special char
|
162 |
+
assistant_final: "100 F = 37.78 C" # Quoted string, ensures safe YAML parsing
|
163 |
{%- for tool in tools.values() %}
|
164 |
- {{ tool.name }}: {{ tool.description }}
|
165 |
Takes inputs: {{tool.inputs}}
|