Skip to content

Commit

Permalink
add LlamaCppLLM to init
Browse files Browse the repository at this point in the history
  • Loading branch information
ashraq1455 committed Mar 14, 2024
1 parent 5e6fd2f commit 314005d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions semantic_router/llms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from semantic_router.llms.base import BaseLLM
from semantic_router.llms.cohere import CohereLLM
from semantic_router.llms.llamacpp import LlamaCppLLM
from semantic_router.llms.mistral import MistralAILLM
from semantic_router.llms.openai import OpenAILLM
from semantic_router.llms.openrouter import OpenRouterLLM
Expand All @@ -8,6 +9,7 @@
__all__ = [
"BaseLLM",
"OpenAILLM",
"LlamaCppLLM",
"OpenRouterLLM",
"CohereLLM",
"AzureOpenAILLM",
Expand Down
2 changes: 0 additions & 2 deletions semantic_router/llms/llamacpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
from pathlib import Path
from typing import Any, Optional

# from llama_cpp import Llama, LlamaGrammar

from semantic_router.llms.base import BaseLLM
from semantic_router.schema import Message
from semantic_router.utils.logger import logger
Expand Down

0 comments on commit 314005d

Please sign in to comment.