Use variously llms to handle your agents and tasks.
The Upsonic framework can use .env variable files or environment variables for LLM support. Once you provide the keys for various services, you can easily select the LLM by using the model parameter within the agents.
The supported LLMs are:
OpenAI
Azure
Anthropic
AWS Bedrock
DeepSeek
Google Gemini
Ollama
OpenRouter
Note: OpenRouter acts as a gateway to access various LLM models from different providers. You can use any model available on OpenRouter by following the pattern
openrouter/{provider}/{model-name}
. This allows you to access models that might not be directly supported through their native APIs.
To use these LLMs, an example .env variable file is as follows. You can adjust the variables according to the LLM you want to use and fill in only the ones required. This .env file must be located in your working directory.
Using the model parameter, you can easily select which LLM each agent will use. You can refer to the example below:
As like Agent you can specify model directly with model
parameter.
Use variously llms to handle your agents and tasks.
The Upsonic framework can use .env variable files or environment variables for LLM support. Once you provide the keys for various services, you can easily select the LLM by using the model parameter within the agents.
The supported LLMs are:
OpenAI
Azure
Anthropic
AWS Bedrock
DeepSeek
Google Gemini
Ollama
OpenRouter
Note: OpenRouter acts as a gateway to access various LLM models from different providers. You can use any model available on OpenRouter by following the pattern
openrouter/{provider}/{model-name}
. This allows you to access models that might not be directly supported through their native APIs.
To use these LLMs, an example .env variable file is as follows. You can adjust the variables according to the LLM you want to use and fill in only the ones required. This .env file must be located in your working directory.
Using the model parameter, you can easily select which LLM each agent will use. You can refer to the example below:
As like Agent you can specify model directly with model
parameter.