mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-12-02 01:53:14 +00:00
Update LLM_NAME and EMBEDDINGS_NAME
This commit is contained in:
@@ -8,7 +8,7 @@ current_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__
|
||||
|
||||
class Settings(BaseSettings):
|
||||
LLM_NAME: str = "docsgpt"
|
||||
EMBEDDINGS_NAME: str = "openai_text-embedding-ada-002"
|
||||
EMBEDDINGS_NAME: str = "huggingface_sentence-transformers/all-mpnet-base-v2"
|
||||
CELERY_BROKER_URL: str = "redis://localhost:6379/0"
|
||||
CELERY_RESULT_BACKEND: str = "redis://localhost:6379/1"
|
||||
MONGO_URI: str = "mongodb://localhost:27017/docsgpt"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -42,8 +42,6 @@ class DocsGPTAPILLM(BaseLLM):
|
||||
)
|
||||
|
||||
for line in response.iter_lines():
|
||||
import sys
|
||||
print(line, file=sys.stderr)
|
||||
if line:
|
||||
#data = json.loads(line)
|
||||
data_str = line.decode('utf-8')
|
||||
|
||||
Reference in New Issue
Block a user