Skip to content

Commit

Permalink
Merge pull request #155 from Vhallo/main
Browse files Browse the repository at this point in the history
Simple Typo Fix
  • Loading branch information
bdashore3 authored Jul 27, 2024
2 parents 884b6f5 + b2064bb commit 6365427
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion endpoints/OAI/utils/chat_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async def stream_generate_chat_completion(
disconnect_task = asyncio.create_task(request_disconnect_loop(request))

try:
logger.info(f"Recieved chat completion streaming request {request.state.id}")
logger.info(f"Received chat completion streaming request {request.state.id}")

gen_params = data.to_gen_params()

Expand Down
2 changes: 1 addition & 1 deletion endpoints/OAI/utils/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def stream_generate_completion(
disconnect_task = asyncio.create_task(request_disconnect_loop(request))

try:
logger.info(f"Recieved streaming completion request {request.state.id}")
logger.info(f"Received streaming completion request {request.state.id}")

gen_params = data.to_gen_params()

Expand Down

0 comments on commit 6365427

Please sign in to comment.