Self-hosted AI workspace.
Find a file
Matthieu acdfadbba9 fix(agent): make the tool-selection timeout configurable
Tool selection has a 1.5s budget covering three steps: index init, MCP
indexing, and retrieval. That suits a warm index on quick hardware. It
is tight anywhere else, because the steps run inside a request while the
app may also be loading FastEmbed, reaching ChromaDB and spawning MCP
servers.

The failure mode is what makes this worth fixing rather than the number
itself. On expiry, selection falls back to ALWAYS_AVAILABLE — which
contains no MCP tool at all. Every MCP server therefore disappears for
that turn, and the agent reports it does not have tools it is connected
to and could call directly. The warning line says the timeout expired;
nothing says the consequence was dropping the entire MCP surface, so the
two are not obviously related when reading logs.

Makes the value overridable via ODYSSEUS_TOOL_SELECTION_TIMEOUT so a
slower or busier deployment can buy headroom without patching. The
default is unchanged at 1.5s, so nothing moves for existing installs.

Also adds the missing `import os` — the module did not import it and
made no use of `os.` anywhere, so the new call would have raised
NameError at import time. Worth flagging because py_compile does not
catch it: it checks syntax, not name resolution.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-26 21:24:08 +02:00
.github ci: add CodeQL advanced setup to scan pull requests before merge (#5250) 2026-07-21 10:18:06 -07:00
companion fix(companion): require chat scope for model inventory (#4319) 2026-06-16 01:15:05 +02:00
config/searxng Generate SearXNG secret on first boot 2026-06-01 11:03:02 +09:00
core Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
docker fix(docker): make host Docker socket opt-in (#4902) 2026-06-30 19:54:51 +02:00
docs ci: add CodeQL advanced setup to scan pull requests before merge (#5250) 2026-07-21 10:18:06 -07:00
integrations Add Codex and Claude document draft integration 2026-06-09 14:27:53 +09:00
licenses feat(a11y): add a Text size control and an OpenDyslexic font option (#4210) 2026-06-22 13:53:46 +02:00
mcp_servers Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
routes Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
scripts Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
services Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
specs chore: update repository URLs after organization transfer (#5622) 2026-07-20 16:43:47 +02:00
src fix(agent): make the tool-selection timeout configurable 2026-07-26 21:24:08 +02:00
static Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
swift/odysseus-mlx-image-bridge Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
tests Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
.dockerignore fix(devops): harden docker config defaults (#4349) 2026-06-16 04:03:43 +01:00
.env.example fix(config): forward Google email OAuth settings through Compose (#5650) 2026-07-22 12:59:22 +02:00
.gitattributes Add native Windows compatibility layer 2026-06-01 15:09:47 +09:00
.gitignore pwa missing icons added (#428) 2026-06-15 16:00:13 +09:00
ACKNOWLEDGMENTS.md feat(a11y): add a Text size control and an OpenDyslexic font option (#4210) 2026-06-22 13:53:46 +02:00
app.py refactor(routes): move compare domain into routes/compare/ subpackage (#5660) 2026-07-21 12:40:09 +02:00
build-macos-app.sh macOS app: force native arm64 uvicorn on Apple Silicon 2026-06-02 20:56:53 +09:00
build-windows-portable.ps1 feat(launcher): add portable windows launcher (#976) 2026-06-16 04:58:16 +01:00
CONTRIBUTING.md chore: update repository URLs after organization transfer (#5622) 2026-07-20 16:43:47 +02:00
docker-compose.gpu-amd.yml fix(config): forward Google email OAuth settings through Compose (#5650) 2026-07-22 12:59:22 +02:00
docker-compose.gpu-nvidia.yml fix(config): forward Google email OAuth settings through Compose (#5650) 2026-07-22 12:59:22 +02:00
docker-compose.yml fix(config): forward Google email OAuth settings through Compose (#5650) 2026-07-22 12:59:22 +02:00
Dockerfile Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
install-service.sh Odysseus v1.0 2026-05-31 23:58:26 +09:00
launch-windows.ps1 feat(launcher): add portable windows launcher (#976) 2026-06-16 04:58:16 +01:00
launcher.py feat(launcher): add portable windows launcher (#976) 2026-06-16 04:58:16 +01:00
LICENSE chore: backport main-only changes to dev AGPL relicense + Cookbook serve fix (#3704) 2026-06-09 23:20:34 +02:00
odysseus-ui.service fix: systemd service should serve on port 7000 to match Docker/setup/README (#1297) 2026-06-03 02:04:37 +09:00
Odysseus.spec feat(launcher): add portable windows launcher (#976) 2026-06-16 04:58:16 +01:00
package-lock.json chore(deps): remove unused @anthropic-ai/sdk dependency (#4566) 2026-06-19 09:40:35 +02:00
package.json chore: update repository URLs after organization transfer (#5622) 2026-07-20 16:43:47 +02:00
pyproject.toml test: add fast lane and duration visibility (#3659) 2026-06-09 20:11:47 +02:00
README.md chore: update repository URLs after organization transfer (#5622) 2026-07-20 16:43:47 +02:00
requirements-optional.txt chore(deps): bump the python group with 3 updates (#3991) 2026-06-15 19:25:15 +09:00
requirements.txt fix(search): pin httpx connection to resolved IP to block DNS rebinding (#704) 2026-07-02 13:08:06 +01:00
ROADMAP.md Merge verified Odysseus fixes 2026-07-23 14:49:02 +00:00
SECURITY.md Clarify private deployment hardening docs 2026-06-02 13:01:12 +09:00
setup.py fix(setup): load .env so a pre-seeded admin password is honored on native installs (#4787) 2026-06-23 20:08:05 +02:00
start-macos.sh fix(macos): rebuild incomplete venv instead of failing on re-run (#3106) 2026-06-15 16:12:19 +09:00
THREAT_MODEL.md docs: add THREAT_MODEL.md (#1111) 2026-06-02 22:40:37 +09:00
update_windows.bat Windows: add Docker update script 2026-06-02 20:45:32 +09:00

Odysseus

A self-hosted AI workspace for chat, agents, research, documents, email, notes, calendar, and local model workflows.

Quick Start · Setup Guide · Contributing · Roadmap

Packaging status

Odysseus interface


Quick Start

dev is the default branch and gets the newest changes first. Use main if you want the more curated branch.

git clone https://github.com/odysseus-dev/odysseus.git
cd odysseus
cp .env.example .env
docker compose up -d --build

Open http://localhost:7000 when the containers are healthy. The first admin password is printed in docker compose logs odysseus.

Native installs, GPU notes, Windows/macOS instructions, HTTPS, and configuration live in the setup guide.

Features

  • Chat + Agents — local/API models, tools, MCP, files, shell, skills, and memory.
  • Cookbook — hardware-aware model recommendations, downloads, and serving.
  • Deep Research — multi-step web research with source reading and report generation.
  • Compare — blind side-by-side model testing and synthesis.
  • Documents — writing-first editor with AI edits, suggestions, Markdown, HTML, CSV, and syntax highlighting.
  • Email — IMAP/SMTP inbox with triage, tags, summaries, reminders, and reply drafts.
  • Notes, Tasks + Calendar — reminders, todos, scheduled agent tasks, and CalDAV sync.
  • Extras — gallery/image editor, themes, uploads, web search, presets, sessions, and 2FA.

Demo

A full hover-to-play tour lives on the landing page: docs/index.html.

Contributing

Help is welcome. The best entry points are fresh-install testing, provider setup bugs, mobile/editor polish, docs, and small focused refactors. See CONTRIBUTING.md and ROADMAP.md.

Security

Odysseus is a self-hosted workspace with powerful local tools. Keep auth enabled, keep private data out of Git, and do not expose raw model/service ports publicly. Deployment details are in the setup guide.

Star History

Star History Chart

License

AGPL-3.0-or-later -- see LICENSE and ACKNOWLEDGMENTS.md.