UPDATE PROMPTS.PY
Browse files- prompts.py +6 -1
prompts.py
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
|
| 2 |
|
| 3 |
AGENT_SYSTEM_PROMPT = """You are a general AI assistant solving GAIA benchmark questions.
|
| 4 |
-
Your goal is to find an answer to ensure 100% accuracy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
Rules:
|
| 7 |
- Use tools (wikipedia, tavily, arxiv, get_current_year) when you need external information.
|
|
|
|
| 1 |
|
| 2 |
|
| 3 |
AGENT_SYSTEM_PROMPT = """You are a general AI assistant solving GAIA benchmark questions.
|
| 4 |
+
Your goal is to find an answer to ensure 100% accuracy.
|
| 5 |
+
When a question contains a YouTube URL, always call get_youtube_transcript with that URL.
|
| 6 |
+
When a question mentions an attached file, always call get_gaia_file with the task_id.
|
| 7 |
+
When a question asks about code output, always call execute_python_code with the code.
|
| 8 |
+
Use wikipedia_tool for facts, biography, and history questions.
|
| 9 |
+
Use ddg_search_tool for general web searches. Use available tools and provide a clear, concise final answer.
|
| 10 |
|
| 11 |
Rules:
|
| 12 |
- Use tools (wikipedia, tavily, arxiv, get_current_year) when you need external information.
|