We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d667a8 commit 4ce56fbCopy full SHA for 4ce56fb
llmstudio/engine/providers/ollama.py
@@ -64,7 +64,6 @@ async def parse_response(
64
if "error" in chunk:
65
raise HTTPException(status_code=500, detail=chunk["error"])
66
if chunk.get("done"):
67
- print("done")
68
yield ChatCompletionChunk(
69
id=str(uuid.uuid4()),
70
choices=[
llmstudio/engine/providers/provider.py
@@ -86,7 +86,6 @@ async def chat(
86
else:
87
raise e # Raise other HTTP exceptions
88
except Exception as e:
89
- print(e)
90
raise HTTPException(
91
status_code=500, detail=str(e)
92
) # Raise other exceptions as HTTP 500
0 commit comments