fix: format lint (#316)

This commit is contained in:
cachho
2023-07-18 22:52:09 +02:00
committed by GitHub
parent bb1fbba161
commit d16eafae05
7 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,3 @@
import logging
from typing import Any
from chromadb.api.types import Documents, Embeddings
@@ -7,7 +6,6 @@ from dotenv import load_dotenv
from embedchain.models import EmbeddingFunctions, Providers
from .BaseAppConfig import BaseAppConfig
from embedchain.models import Providers
load_dotenv()

View File

@@ -15,7 +15,8 @@ class OpenSourceAppConfig(BaseAppConfig):
:param id: Optional. ID of the app. Document metadata will have this id.
:param host: Optional. Hostname for the database server.
:param port: Optional. Port for the database server.
:param model: Optional. GPT4ALL uses the model to instantiate the class. So unlike `App`, it has to be provided before querying.
:param model: Optional. GPT4ALL uses the model to instantiate the class.
So unlike `App`, it has to be provided before querying.
"""
self.model = model or "orca-mini-3b.ggmlv3.q4_0.bin"