Default LLMs and Embedders
The C3 Agentic AI Platform includes pre-configured LLM clients and authentication to support Agent Lifecycle Management features in C3 AI Studio.
Default client and authentication configurations
The following table shows the configured LLM clients and authentication objects for the C3 Agentic AI Platform.
| Requirement Type | Name | Provider | Model | Note |
|---|---|---|---|---|
| GenaiCore.Llm.Bedrock.Auth | "default-auth" | AWS Bedrock | N/A | |
| GenaiCore.Llm.AzureOpenAi.Auth | "default-auth" | Azure Open AI | N/A | |
| GenaiCore.Llm.VertexAi.Auth | "default-auth" | GCP Vertex AI | N/A | |
| GenaiCore.Llm.Completion.Client | "default-completions" | Depends on what cloud the customer is deployed on | Claude Sonnet 4.6 on AWS, GPT-5.4 on Azure, Gemini 2.5 Pro on GCP | |
| GenaiCore.Llm.Response.Client | "default-responses" | Azure OpenAI | GPT-5.4 | If the client doesn't allow Azure then this should be ignored |
| GenaiCore.Llm.Completion.Client | "default-completions-web" | Vertex AI | Gemini 2.5 Flash | In the defaultOptions parameter when setting up the GenaiCore.Llm.Completion.Client C3 object, the following argument be added: web_search_options={"search_context_size": "medium"} |
| GenaiCore.Llm.Completion.Client | "claude-sonnet-4.6" | AWS Bedrock | Claude Sonnet 4.6 | If customer is deployed on AWS |
| GenaiCore.Llm.Embedding.Client | "embedding-client-1" | AWS Bedrock | Cohere Embed v4 | If customer is deployed on AWS |
| GenaiCore.Llm.Completion.Client | "gemini-2.5-pro" | GCP Vertex AI | Gemini 2.5 Pro | If customer is deployed on GCP |
| GenaiCore.Llm.Embedding.Client | "embedding-client-1" | GCP Vertex AI | Gemini Embedding 001 | If customer is deployed on GCP |
| GenaiCore.Llm.Completion.Client | "gpt-5.4" | Azure OpenAI | GPT-5.4 | If customer is deployed on Azure |
| GenaiCore.Llm.Embedding.Client | "embedding-client-1" | Azure OpenAI | Cohere Embed v4 | If customer is deployed on Azure |
Models are provisioned and invoked in the region where your account is deployed by default.
If a model is not available in the region where your cluster or account is deployed, the GenaiCore.Llm.Auth and GenaiCore.Llm.Completion.Client objects will not be configured.
Configuring your own LLMs
To configure your LLM clients please follow Set Up LLM Clients.