Skip to content

Commit

Permalink
fix(main): fix responseSize
Browse files Browse the repository at this point in the history
  • Loading branch information
parkererickson-tg committed Jan 19, 2024
1 parent a5c86a0 commit d4898ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def retrieve_answer(graphname, query: NaturalLanguageQuery, credentials: Annotat
apiToken = apiToken
)

conn.customizeHeader(timeout=config["default_timeout"]*1000, responseSize=1024)
conn.customizeHeader(timeout=config["default_timeout"]*1000, responseSize=50000000)
logger.debug(f"/{graphname}/query request_id={req_id_cv.get()} database connection created")

if llm_config["completion_service"]["llm_service"].lower() == "openai":
Expand Down

0 comments on commit d4898ff

Please sign in to comment.