ai factory

This commit is contained in:
Zylan
2025-02-03 14:49:18 +08:00
parent ab4f208e48
commit 597d6353b4
22 changed files with 1868 additions and 736 deletions

13
models/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
from .base import BaseModel
from .claude import ClaudeModel
from .gpt4o import GPT4oModel
from .deepseek import DeepSeekModel
from .factory import ModelFactory
__all__ = [
'BaseModel',
'ClaudeModel',
'GPT4oModel',
'DeepSeekModel',
'ModelFactory'
]