fix: bump yanked openai==1.59.0 -> 1.59.2 - #26
Open
OneByJorah wants to merge 25 commits into
Open
Conversation
…wiki, DB UI) and update README
…adapter, rate limiter, session manager, email fetcher, nginx, setup scripts - docker-compose.yml: llama, helpdesk-agent, admin-agent, chroma, searxng, n8n, postgres, redis, nginx, email-fetcher - config/hermes-config.yaml: helpdesk agent config (no create_ticket) - config/admin-agent-config.yaml: admin agent config (full access) - config/nginx.conf: reverse proxy with security headers + rate limiting - config/system-prompt.md: helpdesk agent persona - config/agent-bridge.yaml: main Hermes delegation config - ticket_platforms/freshdesk.py: Freshdesk free plan adapter - scripts/agent_server.py: FastAPI agent server with rate limiting - scripts/rate_limiter.py: per-session rate limiting - scripts/session_manager.py: Redis-backed session management - scripts/email_fetcher.py: IMAP to ticket pipeline - scripts/index_kb.py: ChromaDB knowledge base indexer - scripts/setup.sh: one-time setup script - Dockerfile: main agent container - Dockerfile.email: email fetcher container - requirements.txt: python dependencies - .env.example: all environment variables - .gitignore: secrets and data exclusion
n8n workflow: auto-escalation setup.sh: one-time setup script
…itor - whatsapp_webhook.py: Full WhatsApp Business API integration with intent routing, session management, rate limiting, human queue + takeover - config/mcp-config.yaml: Freshdesk MCP server config (41 tools), per-agent permissions - scripts/health_monitor.py: Service health checks every 30s, metrics to Redis - workflows/ticket-created.json: n8n workflow for new ticket notifications - admin-dashboard.html: Full monitoring UI with tabs, service health, cost tracking
…nshots - whatsapp_webhook.py: Full WhatsApp Business API with intent routing, session management, rate limiting, human queue + takeover - Dockerfile.whatsapp: WhatsApp webhook container - docker-compose.yml: Added whatsapp-webhook, health-monitor, tools-ui services - docker-compose.dev.yml: Development overrides - tools-ui/: Widget config UI with live preview - Makefile: start, stop, logs, health, index-kb, dev, shell, test-api - .github/workflows/ci.yml: Lint, test, build pipeline - README.md: Full docs with screenshots, WhatsApp setup, MCP config, API reference
…compose - workflows/daily-digest.json: Daily ticket stats digest at 9AM - workflows/satisfaction-survey.json: Auto-send surveys after ticket closure - workflows/ticket-routing.json: Smart keyword-based ticket classification + urgent alerts - config/mcp-registry.yaml: Full MCP server catalog (Freshdesk, osTicket, Zammad, Slack, GitHub, SearXNG, PostgreSQL) - tools-ui/mobile-app.html: Mobile-first PWA admin app with bottom navigation - tools-ui/manifest.json: PWA manifest - scripts/analytics.py: Token usage, ticket stats, session metrics, resolution rates - docker-compose.prod.yml: Production overrides with health checks, resource limits, restart policies
- tools-ui/dashboard.html: Kanban-style workspace showing all subagent tasks - Columns: Ready, Running, Blocked, Done - Cards show assignee, priority, task ID, status - Click to view task details in modal - Activity feed showing live agent work - Stats bar with task counts - Mobile-responsive dark theme
Bumps [requests](https://github.com/psf/requests) from 2.32.3 to 2.33.0. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.32.3...v2.33.0) --- updated-dependencies: - dependency-name: requests dependency-version: 2.33.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [python-multipart](https://github.com/Kludex/python-multipart) from 0.0.20 to 0.0.31. - [Release notes](https://github.com/Kludex/python-multipart/releases) - [Changelog](https://github.com/Kludex/python-multipart/blob/main/CHANGELOG.md) - [Commits](Kludex/python-multipart@0.0.20...0.0.31) --- updated-dependencies: - dependency-name: python-multipart dependency-version: 0.0.31 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [python-dotenv](https://github.com/theskumar/python-dotenv) from 1.0.1 to 1.2.2. - [Release notes](https://github.com/theskumar/python-dotenv/releases) - [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md) - [Commits](theskumar/python-dotenv@v1.0.1...v1.2.2) --- updated-dependencies: - dependency-name: python-dotenv dependency-version: 1.2.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Added CHANGELOG.md
… unpublished on PyPI)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The Dockerfile build was failing because
openai==1.59.0is no longer published on PyPI (skipped 1.59.0 -> 1.59.2). Bumped to the nearest valid version1.59.2.Verification
docker buildnow succeeds (verified locally against this branch).Note
This repo's default branch is
master(notmain). PR targets master.