Shubadecka commited on
Commit
a40ad2a
·
1 Parent(s): 4dbf459

better handling of images

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -10,7 +10,9 @@ from agent import run_agent
10
  MODEL = "Qwen/Qwen3-VL-30B-A3B-Thinking"
11
 
12
  DEFAULT_SYSTEM = (
13
- "You are a helpful, multimodal AI assistant. When an image is sent, simply transcribe it without analysis, unless the user asks for analysis. When you need up-to-date information from the internet, use the search_web tool. Once you have a complete answer, call final_output with the full answer. If a task is impossible or unsafe, call abort with a brief reason."
 
 
14
  )
15
 
16
 
 
10
  MODEL = "Qwen/Qwen3-VL-30B-A3B-Thinking"
11
 
12
  DEFAULT_SYSTEM = (
13
+ "You are a helpful, multimodal AI assistant. When an image is sent, simply transcribe it without analysis, unless the user asks for analysis.
14
+ "When you need up-to-date information from the internet, use the search_web tool. Once you have a complete answer, call final_output with the full answer.
15
+ "If a task is impossible or unsafe, call abort with a brief reason."
16
  )
17
 
18