[Feature] Add Qdrant support (#822)

This commit is contained in:
Rupesh Bansal
2023-10-19 02:57:57 +05:30
committed by GitHub
parent 7641cba01d
commit c8846e0e93
17 changed files with 460 additions and 18 deletions

View File

@@ -1,5 +1,7 @@
import pytest
from string import Template
import pytest
from embedchain.llm.base import BaseLlm, BaseLlmConfig

View File

@@ -1,4 +1,5 @@
import os
import pytest
from embedchain.config import BaseLlmConfig

View File

@@ -1,6 +1,8 @@
import importlib
import os
import pytest
from embedchain.config import BaseLlmConfig
from embedchain.llm.huggingface import HuggingFaceLlm

View File

@@ -1,8 +1,10 @@
import os
import pytest
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
from embedchain.config import BaseLlmConfig
from embedchain.llm.jina import JinaLlm
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
@pytest.fixture

View File

@@ -1,5 +1,7 @@
import os
import pytest
from embedchain.llm.llama2 import Llama2Llm

View File

@@ -1,8 +1,10 @@
import os
import pytest
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
from embedchain.config import BaseLlmConfig
from embedchain.llm.openai import OpenAILlm
from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler
@pytest.fixture

View File

@@ -1,6 +1,8 @@
import os
import pytest
from unittest.mock import MagicMock, patch
import pytest
from embedchain import App
from embedchain.config import AppConfig, BaseLlmConfig