Skip to content

Commit 41b80ff

Browse files
fix pylint issue
1 parent b3a7e46 commit 41b80ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api/services/chat_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async def stream_openai_text(self, conversation_id: str, query: str) -> Streamin
132132

133133
async for response in agent.invoke_stream(messages=query, thread=thread, truncation_strategy=truncation_strategy):
134134
yield response.content
135-
135+
136136
except RuntimeError as e:
137137
if "Rate limit is exceeded" in str(e):
138138
logger.error(f"Rate limit error: {e}")

0 commit comments

Comments
 (0)