chores: run lint and format (#284)
This commit is contained in:
@@ -2,9 +2,7 @@ import importlib.metadata
|
||||
|
||||
__version__ = importlib.metadata.version(__package__ or __name__)
|
||||
|
||||
from .embedchain import (
|
||||
App, # noqa: F401
|
||||
OpenSourceApp, # noqa: F401
|
||||
PersonApp, # noqa: F401
|
||||
PersonOpenSourceApp, # noqa: F401
|
||||
)
|
||||
from .embedchain import App # noqa: F401
|
||||
from .embedchain import OpenSourceApp # noqa: F401
|
||||
from .embedchain import PersonApp # noqa: F401
|
||||
from .embedchain import PersonOpenSourceApp # noqa: F401
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import logging
|
||||
import os
|
||||
|
||||
from chromadb.utils import embedding_functions
|
||||
|
||||
from embedchain.config.BaseConfig import BaseConfig
|
||||
|
||||
|
||||
|
||||
@@ -9,7 +9,8 @@ from langchain.docstore.document import Document
|
||||
from langchain.memory import ConversationBufferMemory
|
||||
|
||||
from embedchain.config import AddConfig, ChatConfig, InitConfig, QueryConfig
|
||||
from embedchain.config.QueryConfig import CODE_DOCS_PAGE_PROMPT_TEMPLATE, DEFAULT_PROMPT
|
||||
from embedchain.config.QueryConfig import (CODE_DOCS_PAGE_PROMPT_TEMPLATE,
|
||||
DEFAULT_PROMPT)
|
||||
from embedchain.data_formatter import DataFormatter
|
||||
|
||||
gpt4all_model = None
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
import logging
|
||||
import os
|
||||
|
||||
import chromadb
|
||||
from chromadb.utils import embedding_functions
|
||||
|
||||
from embedchain.vectordb.base_vector_db import BaseVectorDB
|
||||
|
||||
|
||||
Reference in New Issue
Block a user