Skip to content

Commit 0993f72

Browse files
Update dependencies and enhance OpenFox agent functionality
- Added new dependencies for OpenTelemetry and instrumentation in `pyproject.toml`. - Integrated tracing setup in `OpenFoxAgent` for improved observability. - Updated asset references in `index.html` to reflect new versions. - Introduced new JavaScript files for various functionalities, including `Alert`, `Badge`, and `Button`, while removing deprecated assets. - Enhanced overall asset organization for better maintainability.
1 parent 66a60eb commit 0993f72

188 files changed

Lines changed: 4654 additions & 155 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

openfox/core/agent.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import logging
2-
31
from agno.agent import Agent
42
from agno.db.sqlite import AsyncSqliteDb
53
from agno.models.litellm import LiteLLM
@@ -19,6 +17,7 @@
1917
from openfox.utils.notify import send_notification
2018
from openfox.utils.skills import LocalSkills
2119
from openfox.utils.web_static import install_web_routes
20+
from agno.tracing import setup_tracing
2221

2322
class OpenFoxAgent:
2423
"""Wires OpenFox config, storage, tools, and AgentOS runtime."""
@@ -31,7 +30,7 @@ def __init__(self):
3130
DB_PATH.parent.mkdir(parents=True, exist_ok=True)
3231
ensure_skills_from_bundle()
3332
self.db = AsyncSqliteDb(db_file=str(DB_PATH))
34-
33+
setup_tracing(self.db)
3534
self.knowledge = build_knowledge(self.config, self.db)
3635

3736
self.instructions = [

openfox/static/web/assets/Alert-8_rggHEV.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

openfox/static/web/assets/Alert-Wgwy0HFL.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openfox/static/web/assets/AppPageScaffold-BrWXRnXJ.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openfox/static/web/assets/AppPageScaffold-DHyARg0W.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)