gemini pro

This commit is contained in:
Zylan
2025-04-11 17:10:18 +08:00
parent 65d1123eb2
commit e662ff24b5
11 changed files with 467 additions and 94 deletions

View File

@@ -3,6 +3,7 @@ from .anthropic import AnthropicModel
from .openai import OpenAIModel
from .deepseek import DeepSeekModel
from .alibaba import AlibabaModel
from .google import GoogleModel
from .factory import ModelFactory
__all__ = [
@@ -11,5 +12,6 @@ __all__ = [
'OpenAIModel',
'DeepSeekModel',
'AlibabaModel',
'GoogleModel',
'ModelFactory'
]