appQQQ commited on
Commit
16f2099
·
verified ·
1 Parent(s): 994df8e

chore: upload app/llm/__init__.py

Browse files
Files changed (1) hide show
  1. app/llm/__init__.py +5 -0
app/llm/__init__.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ """LLM provider 抽象. 由 factory.py 根据 settings.llm_provider 选择."""
2
+ from app.llm.base import AbstractLLM, LLMChunk, LLMMessage
3
+ from app.llm.factory import get_llm
4
+
5
+ __all__ = ["AbstractLLM", "LLMChunk", "LLMMessage", "get_llm"]