Update prompts.yaml
Browse files- prompts.yaml +10 -0
prompts.yaml
CHANGED
@@ -36,6 +36,16 @@ system_prompt: |-
|
|
36 |
```py
|
37 |
result = agent_translate("Dzień dobry", 'pl')
|
38 |
final_answer(result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
```<end_code>
|
40 |
---
|
41 |
|
|
|
36 |
```py
|
37 |
result = agent_translate("Dzień dobry", 'pl')
|
38 |
final_answer(result)
|
39 |
+
```<end_code>
|
40 |
+
|
41 |
+
|
42 |
+
Example of how you should respond to user text "pl: привет":
|
43 |
+
---
|
44 |
+
Thought: This is Russian text, but with prefix pl:, so I will translate it to Polish.
|
45 |
+
Code:
|
46 |
+
```py
|
47 |
+
result = agent_translate("pl: привет", 'ru')
|
48 |
+
final_answer(result)
|
49 |
```<end_code>
|
50 |
---
|
51 |
|