Skip to content

Commit

Permalink
feat(model): Add OllamaLLMClient to proxy module
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyinc committed Apr 28, 2024
1 parent b025d59 commit e0c296f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dbgpt/model/proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def __lazy_import(name):
"ZhipuLLMClient": "dbgpt.model.proxy.llms.zhipu",
"YiLLMClient": "dbgpt.model.proxy.llms.yi",
"MoonshotLLMClient": "dbgpt.model.proxy.llms.moonshot",
"OllamaLLMClient": "dbgpt.model.proxy.llms.ollama",
}

if name in module_path:
Expand All @@ -33,4 +34,5 @@ def __getattr__(name):
"SparkLLMClient",
"YiLLMClient",
"MoonshotLLMClient",
"OllamaLLMClient",
]

0 comments on commit e0c296f

Please sign in to comment.