Skip to content

Commit 4ce56fb

Browse files
committed
[chore] removed prints
1 parent 6d667a8 commit 4ce56fb

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

llmstudio/engine/providers/ollama.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ async def parse_response(
6464
if "error" in chunk:
6565
raise HTTPException(status_code=500, detail=chunk["error"])
6666
if chunk.get("done"):
67-
print("done")
6867
yield ChatCompletionChunk(
6968
id=str(uuid.uuid4()),
7069
choices=[

llmstudio/engine/providers/provider.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ async def chat(
8686
else:
8787
raise e # Raise other HTTP exceptions
8888
except Exception as e:
89-
print(e)
9089
raise HTTPException(
9190
status_code=500, detail=str(e)
9291
) # Raise other exceptions as HTTP 500

0 commit comments

Comments
 (0)