consts.py 559 B

12345678910111213141516
  1. GEN_AI_SYSTEM = "gcp.gemini"
  2. # Mapping of tool attributes to their descriptions
  3. # These are all tools that are available in the Google GenAI API
  4. TOOL_ATTRIBUTES_MAP = {
  5. "google_search_retrieval": "Google Search retrieval tool",
  6. "google_search": "Google Search tool",
  7. "retrieval": "Retrieval tool",
  8. "enterprise_web_search": "Enterprise web search tool",
  9. "google_maps": "Google Maps tool",
  10. "code_execution": "Code execution tool",
  11. "computer_use": "Computer use tool",
  12. }
  13. IDENTIFIER = "google_genai"
  14. ORIGIN = f"auto.ai.{IDENTIFIER}"