GoogleAI
GoogleAI¶
GoogleAI extends the Base LLM and implements the Google Gemini API.
GoogleAI Config¶
GoogleAI Config is the configuration object for Google Gemini. It is used to configure Google Gemini and is passed to GoogleAI when it is created.
director.llm.googleai.GoogleAIConfig
¶
GoogleAI Interface¶
GoogleAI is the LLM used by the agents and tools. It is used to generate responses to messages.
director.llm.googleai.GoogleAI
¶
Bases: BaseLLM
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config |
GoogleAIConfig
|
GoogleAI Config |
None
|
Source code in backend/director/llm/googleai.py
_format_messages
¶
Format the messages to the format that Google Gemini expects.
Source code in backend/director/llm/googleai.py
_format_tools
¶
Format the tools to the format that Gemini expects.
Example::
[
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get the weather in a given location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. Chicago, IL"
},
"unit": {
"type": "string",
"enum": ["celsius", "fahrenheit"]
}
},
"required": ["location"]
}
}
}
]
Source code in backend/director/llm/googleai.py
chat_completions
¶
Get chat completions using Gemini.
docs: https://ai.google.dev/gemini-api/docs/openai