diff --git a/slack_bot/slack_bot/models/__init__.py b/slack_bot/slack_bot/models/__init__.py index d22f0360..1878cb8b 100644 --- a/slack_bot/slack_bot/models/__init__.py +++ b/slack_bot/slack_bot/models/__init__.py @@ -1,7 +1,7 @@ from .base import ResponseModel from .chat_completion import ChatCompletionAzure, ChatCompletionOpenAI from .hello import Hello -from .llama import LlamaIndexGPTAzure, LlamaIndexGPTOpenAI, LlamaIndexHF +from .llama_index import LlamaIndexGPTAzure, LlamaIndexGPTOpenAI, LlamaIndexHF # Please ensure that any models needing OPENAI_API_KEY are named *openai* # Please ensure that any models needing OPENAI_AZURE_API_BASE and OPENAI_AZURE_API_KEY are named *azure* diff --git a/slack_bot/slack_bot/models/llama.py b/slack_bot/slack_bot/models/llama_index.py similarity index 100% rename from slack_bot/slack_bot/models/llama.py rename to slack_bot/slack_bot/models/llama_index.py