Skip to content

Commit

Permalink
Updating inits
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Jun 21, 2024
1 parent 35f19cf commit 4f6090b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion blendsql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = "0.0.18"


from .ingredients.builtin import LLMMap, LLMQA, LLMJoin, LLMValidate, VQA
from .ingredients.builtin import LLMMap, LLMQA, LLMJoin, LLMValidate, ImageCaption
from .blend import blend
2 changes: 1 addition & 1 deletion blendsql/ingredients/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
IngredientException,
)

from .builtin import LLMQA, LLMJoin, LLMMap, LLMValidate, VQA
from .builtin import LLMQA, LLMJoin, LLMMap, LLMValidate, ImageCaption
2 changes: 1 addition & 1 deletion blendsql/ingredients/builtin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .join.main import LLMJoin
from .qa.main import LLMQA
from .map.main import LLMMap
from .vqa.main import VQA
from .vqa.main import ImageCaption
from .validate.main import LLMValidate
2 changes: 1 addition & 1 deletion blendsql/ingredients/builtin/vqa/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .main import VQA
from .main import ImageCaption
2 changes: 1 addition & 1 deletion blendsql/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .local._transformers import TransformersLLM, VQAModel
from .local._transformers import TransformersLLM, TransformersVisionModel
from .local._llama_cpp import LlamaCppLLM
from .remote._ollama import OllamaLLM
from .remote._openai import OpenaiLLM, AzureOpenaiLLM
Expand Down

0 comments on commit 4f6090b

Please sign in to comment.