bstraehle commited on
Commit
20757bd
·
verified ·
1 Parent(s): caf00ff

Update tools/ai_tools.py

Browse files
Files changed (1) hide show
  1. tools/ai_tools.py +12 -0
tools/ai_tools.py CHANGED
@@ -1,6 +1,18 @@
 
 
1
  from google import genai
2
  from google.genai import types
3
 
 
 
 
 
 
 
 
 
 
 
4
  class AITools():
5
  @tool("Web Search Tool")
6
  def web_search_tool(question: str) -> str:
 
1
+ import os
2
+
3
  from google import genai
4
  from google.genai import types
5
 
6
+ WEB_SEARCH_MODEL = "gemini-2.5-flash-preview-04-17"
7
+ IMAGE_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
8
+ AUDIO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
9
+ VIDEO_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
10
+ YOUTUBE_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
11
+ DOCUMENT_ANALYSIS_MODEL = "gemini-2.5-flash-preview-04-17"
12
+ ARITHMETIC_MODEL = "gemini-2.5-flash-preview-04-17"
13
+ CODE_GENERATION_MODEL = "gemini-2.5-flash-preview-04-17"
14
+ CODE_EXECUTION_MODEL = "gemini-2.5-flash-preview-04-17"
15
+
16
  class AITools():
17
  @tool("Web Search Tool")
18
  def web_search_tool(question: str) -> str: