Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion deploy-agent-on-av/example/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def handle_message(ctx: Context, sender: str, msg: ChatMessage):
max_tokens=2048,
)
response = str(r.choices[0].message.content)
except:
except Exception:
ctx.logger.exception("Error querying model")

await ctx.send(sender, ChatMessage(
Expand Down
Binary file modified frontend-integration/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion frontend-integration/frontend_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def health_check():
health_status[agent_name] = {"status": "healthy", "url": agent_url, "agent_info": health_data}
else:
health_status[agent_name] = {"status": "unhealthy", "url": agent_url}
except:
except requests.RequestException:
health_status[agent_name] = {"status": "offline", "url": agent_url}

return jsonify(health_status)
Expand Down
Loading