Skip to content

Commit

Permalink
Add AzureModelConfig to ModelConfigType for multi-provider support
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonWehrhahn committed Jan 31, 2025
1 parent 652c3d0 commit e060cd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llm_core/llm_core/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from typing import Union

from llm_core.models.providers.azure_model_config import AzureModelConfig
from llm_core.models.providers.openai_model_config import OpenAIModelConfig


ModelConfigType = Union[OpenAIModelConfig]
ModelConfigType = Union[OpenAIModelConfig, AzureModelConfig]

0 comments on commit e060cd1

Please sign in to comment.