Spaces:
Runtime error
Runtime error
Commit
·
6445633
1
Parent(s):
7817e5f
new commit
Browse files
app.py
CHANGED
@@ -178,6 +178,8 @@ async def process_message_route(message: MessageRequest):
|
|
178 |
raise HTTPException(status_code=400, detail="User message is required.")
|
179 |
|
180 |
bot_response = process_prompt(user_message) # Process the user's message
|
|
|
|
|
181 |
|
182 |
# Return the bot's response as JSON
|
183 |
return JSONResponse(content={"botResponse": bot_response})
|
|
|
178 |
raise HTTPException(status_code=400, detail="User message is required.")
|
179 |
|
180 |
bot_response = process_prompt(user_message) # Process the user's message
|
181 |
+
bot_response = bot_response.split("<|fim_suffix|>")[0].strip() # Remove everything after <|fim_suffix|> and trim
|
182 |
+
bot_response = bot_response.replace("\n", " ").strip()
|
183 |
|
184 |
# Return the bot's response as JSON
|
185 |
return JSONResponse(content={"botResponse": bot_response})
|