Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jeisenman23 committed Nov 15, 2024
1 parent 93a7d97 commit 4e4dc4b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions elm/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def chat(self, query,
start_chat_time = perf_counter()
out = self.engineer_query(query, token_budget=token_budget,
new_info_threshold=new_info_threshold,
convo=convo, timeit=timeit)
convo=convo, timeit=True)
if timeit:
vector_query_time = out[2]

Expand All @@ -236,7 +236,6 @@ def chat(self, query,
chunk_msg = chunk.choices[0].delta.content or ""
response_message += chunk_msg
print(chunk_msg, end='')

else:
response_message = response.choices[0].message.content

Expand Down

0 comments on commit 4e4dc4b

Please sign in to comment.