MCPcopy Create free account
hub / github.com/AsyncFuncAI/deepwiki-open / Provider

Class Provider

api/api.py:128–135  ·  view source on GitHub ↗

Model for LLM provider configuration

Source from the content-addressed store, hash-verified

126 name: str = Field(..., description="Display name for the model")
127
128class Provider(BaseModel):
129 """
130 Model for LLM provider configuration
131 """
132 id: str = Field(..., description="Provider identifier")
133 name: str = Field(..., description="Display name for the provider")
134 models: List[Model] = Field(..., description="List of available models for this provider")
135 supportsCustomModel: Optional[bool] = Field(False, description="Whether this provider supports custom models")
136
137class ModelConfig(BaseModel):
138 """

Callers 1

get_model_configFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected