Fixed python linting issues

This commit is contained in:
Niharika Goulikar
2024-11-21 11:22:33 +00:00
parent 0d4bc4ec2c
commit 8e9f31cc32

View File

@@ -317,7 +317,7 @@ class Stream(Resource):
conversation_id = data.get("conversation_id")
prompt_id = data.get("prompt_id", "default")
index=data.get("index",None);
index=data.get("index",None)
chunks = int(data.get("chunks", 2))
token_limit = data.get("token_limit", settings.DEFAULT_MAX_HISTORY)
retriever_name = data.get("retriever", "classic")