Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b057902
refactor(agents): migrate docqa + routing to hub (#1102)
Jun 4, 2026
dc71d62
fix(agents): repoint gaia-agent-code at relocated RoutingAgent (#1102)
Jun 4, 2026
42d3220
Merge remote-tracking branch 'origin/main' into claudia/task-8fa7ecef
Jun 10, 2026
7b7379f
Merge remote-tracking branch 'origin/main' into claudia/task-8fa7ecef
Jun 10, 2026
1674258
Merge branch 'main' into claudia/task-8fa7ecef
kovtcharov-amd Jun 10, 2026
3b81417
Merge branch 'main' into claudia/task-8fa7ecef
kovtcharov-amd Jun 11, 2026
7fc433d
Merge remote-tracking branch 'origin/main' into claudia/task-8fa7ecef
kovtcharov Jun 17, 2026
633e365
fix(agents): complete docqa+routing migration cleanup (#1102)
kovtcharov Jun 17, 2026
f5e3586
ci(code-agent): install local routing wheel before code agent (#1102)
kovtcharov Jun 17, 2026
81b07b8
ci(api): install routing+code wheels so gaia-code API path works (#1102)
kovtcharov Jun 17, 2026
28a643a
Merge remote-tracking branch 'origin/main' into pr1455-update
kovtcharov Jun 19, 2026
8fa14a5
docs(agents): fix stale docqa/routing paths flagged in review (#1102)
kovtcharov Jun 19, 2026
e8f5f45
Merge remote-tracking branch 'origin/main' into pr1455-update
kovtcharov Jun 19, 2026
17221cc
Merge remote-tracking branch 'origin/main' into pr1455-update
kovtcharov Jun 19, 2026
2c9f0ce
feat(agent-email): add GET /v1/email/init readiness preflight (#1795)
kovtcharov Jun 21, 2026
2995d77
test(agent-email): handle mounted sub-routers in init mount test
kovtcharov Jun 22, 2026
11da149
test(agent-email): prove init mount via HTTP, not route introspection
kovtcharov Jun 22, 2026
50d8649
feat(agent-email): add POST /v1/email/init streaming provisioning ver…
kovtcharov Jun 22, 2026
5ac76d8
feat(agent-email): readiness checks Lemonade VERSION compat, not just…
kovtcharov Jun 22, 2026
4941caa
feat(cli): add gaia init --profile email (download + version-check th…
kovtcharov Jun 22, 2026
2cb31af
Merge remote-tracking branch 'origin/main' into claudia/task-4a1065f9
kovtcharov Jun 22, 2026
6e13daf
Merge branch 'main' into claudia/task-4a1065f9
kovtcharov Jun 23, 2026
0fc78a1
Merge branch 'main' into claudia/task-4a1065f9
kovtcharov Jun 24, 2026
481fdf0
Merge branch 'main' into claudia/task-4a1065f9
Jul 6, 2026
7883e27
fix(email): restore missing fastapi.Response import, black-format tes…
Jul 6, 2026
7b1c97a
Merge remote-tracking branch 'origin/main' into pr1813-update
Jul 6, 2026
c2e13a5
docs(email): list init readiness/provisioning in the REST surface
Jul 6, 2026
c4fcdc9
Merge remote-tracking branch 'origin/main' into claudia/task-4a1065f9
kovtcharov Jul 7, 2026
26f037e
fix(agent-email): iterate provisioning stream in a worker thread
kovtcharov Jul 7, 2026
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
3 changes: 2 additions & 1 deletion docs/guides/email.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ isolated, and dogfoods the exact binary shipped to integrators.
`GAIA_EMAIL_AGENT_MODE` only selects which *process* answers (`user` default /
`dev`); there is no in-process fallback. Two surfaces run through it:

- **The `/v1/email/*` REST surface** — the full schema-2.2 contract (triage,
- **The `/v1/email/*` REST surface** — the full schema-2.2 contract (init
readiness probe + provisioning, triage,
batch triage, search, inbox pre-scan, scheduled daily briefing, draft/send +
confirm — attachments included, archive/unarchive, quarantine/unquarantine,
calendar view/preview/create/respond, health, version). This is exactly what
Expand Down
5 changes: 5 additions & 0 deletions hub/agents/python/email/gaia-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ python:

requirements:
min_memory_gb: 8
# Minimum Lemonade Server version the triage stack needs. Mirrors
# gaia_agent_email.version.MIN_LEMONADE_VERSION (the runtime source of truth
# for the GET /v1/email/init readiness check); a test keeps the two in
# lock-step. `gaia init` reads this manifest value for the install path.
min_lemonade_version: "10.2.0"
platforms: [win-x64, linux-x64, darwin-arm64]

interfaces:
Expand Down
Loading
Loading