Update agents/llms.py
Browse files- agents/llms.py +19 -15
agents/llms.py
CHANGED
|
@@ -1,21 +1,25 @@
|
|
| 1 |
-
|
| 2 |
-
AGENT_MODEL = "gpt-4.1-mini"
|
| 3 |
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
-
|
| 7 |
-
IMAGE_ANALYSIS_MODEL = "gemini-3-pro-preview"
|
| 8 |
-
AUDIO_ANALYSIS_MODEL = "gemini-3-pro-preview"
|
| 9 |
-
VIDEO_ANALYSIS_MODEL = "gemini-3-pro-preview"
|
| 10 |
-
YOUTUBE_ANALYSIS_MODEL = "gemini-3-pro-preview"
|
| 11 |
-
DOCUMENT_ANALYSIS_MODEL = "gemini-3-pro-preview"
|
| 12 |
-
ARITHMETIC_MODEL = "gemini-3-pro-preview"
|
| 13 |
-
CODE_GENERATION_MODEL = "gemini-3-pro-preview"
|
| 14 |
-
CODE_EXECUTION_MODEL = "gemini-3-pro-preview"
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
Analyze this chess board image and convert it to FEN (Forsyth-Edwards Notation).
|
| 20 |
|
| 21 |
Rules:
|
|
@@ -32,7 +36,7 @@ Example: "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1" for the star
|
|
| 32 |
Return ONLY the FEN string, nothing else.
|
| 33 |
"""
|
| 34 |
|
| 35 |
-
|
| 36 |
You are an expert question answering assistant. Given a question and an initial answer, your task is to provide the final answer.
|
| 37 |
Your final answer must be a number and/or string OR as few words as possible OR a comma-separated list of numbers and/or strings.
|
| 38 |
If you are asked for a number, don't use comma to write your number neither use units such as USD, $, percent, or % unless specified otherwise.
|
|
|
|
| 1 |
+
# LLMs
|
|
|
|
| 2 |
|
| 3 |
+
LLM_MANAGER = "gpt-4.1"
|
| 4 |
+
LLM_AGENT = "gpt-4.1-mini"
|
| 5 |
|
| 6 |
+
LLM_FINAL_ANSWER = "gemini-2.5-pro"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
LLM_WEB_SEARCH = "gemini-3-pro-preview"
|
| 9 |
+
LLM_IMAGE_ANALYSIS = "gemini-3-pro-preview"
|
| 10 |
+
LLM_AUDIO_ANALYSIS = "gemini-3-pro-preview"
|
| 11 |
+
LLM_VIDEO_ANALYSIS = "gemini-3-pro-preview"
|
| 12 |
+
LLM_YOUTUBE_ANALYSIS = "gemini-3-pro-preview"
|
| 13 |
+
LLM_DOCUMENT_ANALYSIS = "gemini-3-pro-preview"
|
| 14 |
+
LLM_ARITHMETIC = "gemini-3-pro-preview"
|
| 15 |
+
LLM_CODE_GENERATION = "gemini-3-pro-preview"
|
| 16 |
+
LLM_CODE_EXECUTION = "gemini-3-pro-preview"
|
| 17 |
|
| 18 |
+
LLM_WEB_BROWSER = "claude-sonnet-4-5-latest"
|
| 19 |
+
|
| 20 |
+
# Prompts
|
| 21 |
+
|
| 22 |
+
PROMPT_IMG_TO_FEN = """
|
| 23 |
Analyze this chess board image and convert it to FEN (Forsyth-Edwards Notation).
|
| 24 |
|
| 25 |
Rules:
|
|
|
|
| 36 |
Return ONLY the FEN string, nothing else.
|
| 37 |
"""
|
| 38 |
|
| 39 |
+
PROMPT_FINAL_ANSWER = """
|
| 40 |
You are an expert question answering assistant. Given a question and an initial answer, your task is to provide the final answer.
|
| 41 |
Your final answer must be a number and/or string OR as few words as possible OR a comma-separated list of numbers and/or strings.
|
| 42 |
If you are asked for a number, don't use comma to write your number neither use units such as USD, $, percent, or % unless specified otherwise.
|