Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ProviderMap = map[string]ProviderConfig{ "AIML": { Name: "AIML", BaseURL: "https://api.aimlapi.com/v1", ImplementsResponses: false, }, "Cerebras": { Name: "Cerebras", BaseURL: "https://api.cerebras.ai/v1", ImplementsResponses: false, }, "DeepSeek": { Name: "DeepSeek", BaseURL: "https://api.deepseek.com", ImplementsResponses: false, }, "GrokAI": { Name: "GrokAI", BaseURL: "https://api.x.ai/v1", ImplementsResponses: false, }, "Groq": { Name: "Groq", BaseURL: "https://api.groq.com/openai/v1", ImplementsResponses: false, }, "Langdock": { Name: "Langdock", BaseURL: "https://api.langdock.com/openai/{{REGION=us}}/v1", ImplementsResponses: false, }, "LiteLLM": { Name: "LiteLLM", BaseURL: "http://localhost:4000", ImplementsResponses: false, }, "Mistral": { Name: "Mistral", BaseURL: "https://api.mistral.ai/v1", ImplementsResponses: false, }, "OpenRouter": { Name: "OpenRouter", BaseURL: "https://openrouter.ai/api/v1", ImplementsResponses: false, }, "SiliconCloud": { Name: "SiliconCloud", BaseURL: "https://api.siliconflow.cn/v1", ImplementsResponses: false, }, }
ProviderMap is a map of provider name to ProviderConfig for O(1) lookup
Functions ¶
This section is empty.
Types ¶
type Client ¶
Client is the common structure for all OpenAI-compatible providers
func CreateClient ¶
CreateClient creates a new client for a provider by name
func NewClient ¶
func NewClient(providerConfig ProviderConfig) *Client
NewClient creates a new OpenAI-compatible client for the specified provider
type ProviderConfig ¶
type ProviderConfig struct {
Name string
BaseURL string
ImplementsResponses bool // Whether the provider supports OpenAI's new Responses API
}
ProviderConfig defines the configuration for an OpenAI-compatible API provider
func GetProviderByName ¶
func GetProviderByName(name string) (ProviderConfig, bool)
GetProviderByName returns the provider configuration for a given name with O(1) lookup
Click to show internal directories.
Click to hide internal directories.