Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mindsql/llms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .illm import ILlm
from .anthropic import AnthropicAi
from .googlegenai import GoogleGenAi
from .huggingface import HuggingFace
from .illm import ILlm
from .llama import LlamaCpp
from .open_ai import OpenAi
2 changes: 1 addition & 1 deletion mindsql/llms/anthropic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from anthropic import Anthropic

from . import ILlm
from .illm import ILlm
from .._utils.constants import ANTHROPIC_VALUE_ERROR, PROMPT_EMPTY_EXCEPTION


Expand Down
2 changes: 1 addition & 1 deletion mindsql/llms/googlegenai.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import google.generativeai as genai

from .._utils.constants import GOOGLE_GEN_AI_VALUE_ERROR, GOOGLE_GEN_AI_APIKEY_ERROR
from . import ILlm
from .illm import ILlm


class GoogleGenAi(ILlm):
Expand Down
2 changes: 1 addition & 1 deletion mindsql/llms/open_ai.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from openai import OpenAI

from . import ILlm
from .illm import ILlm
from .._utils.constants import OPENAI_VALUE_ERROR, PROMPT_EMPTY_EXCEPTION


Expand Down