- The default model when unspecified in
Agent
- The default embedder is OpenAIEmbedder with VectorDBs, unless specified
Quick fix: Configure a Different Model
It is best to specify the model for the agent explicitly, otherwise it would default toOpenAIChat
.
For example, to use Google’s Gemini instead of OpenAI:
Quick fix: Configure a Different Embedder
The same applies to embeddings. If you want to use a different embedder instead ofOpenAIEmbedder
, configure it explicitly.
For example, to use Google’s Gemini as an embedder, use GeminiEmbedder
: