Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a2e9fd6
fix(copilotkit): compile evaluator_graph with a checkpointer for inte…
mmercuri Apr 23, 2026
c40c03f
fix(copilotkit): register DTOs with serde, add AG-UI wire e2e test
mmercuri Apr 23, 2026
6421a9e
fix(copilotkit): resolve error/field collision + browser e2e harness
mmercuri Apr 23, 2026
542002b
fix(copilotkit): mirror CopilotKit's sample + workaround for ag-ui-la…
mmercuri Apr 24, 2026
e8d5f04
fix(copilotkit): also suppress duplicate RUN_STARTED on re-entry inte…
mmercuri Apr 24, 2026
796d562
fix(copilotkit): re-pin to latest published versions (DevRel env) and…
mmercuri Apr 24, 2026
fb43742
fix(copilotkit): wire useLangGraphInterrupt on frontend; drop backend…
mmercuri Apr 24, 2026
45fa80f
feat(copilotkit): rearchitect evaluator as create_agent + frontend HI…
mmercuri Apr 24, 2026
f8dd7db
test(copilotkit): add live-LLM e2e + OpenAI-compatible endpoint support
mmercuri Apr 25, 2026
a1eebe7
fix(copilotkit harness): unblock React hydration on Next 16 dev server
mmercuri Apr 25, 2026
268a273
fix(harness picker): resilient render while LLM streams tool args
mmercuri Apr 25, 2026
c953aee
feat(harness): per-tool render cards + Tailwind 4 + production Evalua…
mmercuri Apr 25, 2026
55b1f63
copilotkit sample: ship customer-facing app with shadcn-aligned cards
mmercuri Apr 26, 2026
bf1d20e
copilotkit sample: chat tokens, severity pills, trace status, markdow…
mmercuri Apr 26, 2026
05516be
copilotkit sample: render pending verdicts as skeleton cards
mmercuri Apr 26, 2026
a72a3ec
copilotkit sample: extract MarkdownLite, render judge goals
mmercuri Apr 26, 2026
2c7b60b
copilotkit sample: rewrite README to match the shipped architecture
mmercuri Apr 26, 2026
b0aa842
ci: replace walrus + reformat test_samples_e2e for ruff py37 target
mmercuri Apr 26, 2026
1a30622
copilotkit sample: drop OpenRouter-specific references
mmercuri Apr 26, 2026
d8601e3
ci: wrap server.py uvicorn boot in main() + extend test mocks
mmercuri Apr 26, 2026
569abdb
copilotkit sample: stop polling on any terminal eval state, not just …
mmercuri Apr 26, 2026
7228526
feat(assistant): add Stratix Assistant SDK resource
mmercuri Apr 26, 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
4 changes: 3 additions & 1 deletion docs/samples-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,13 @@ See the [MCP README](../samples/mcp/README.md) for setup instructions.

Located in [`samples/copilotkit/`](../samples/copilotkit/). Full-stack integration with CopilotKit using LangGraph CoAgents and generative UI card components.

- [`agents/evaluator_agent.py`](../samples/copilotkit/agents/evaluator_agent.py) -- LangGraph CoAgent for evaluation workflows
- [`agents/evaluator_agent.py`](../samples/copilotkit/agents/evaluator_agent.py) -- LangGraph CoAgent for evaluation workflows (human-in-the-loop judge confirmation via `interrupt()`)
- [`agents/investigator_agent.py`](../samples/copilotkit/agents/investigator_agent.py) -- LangGraph CoAgent for trace investigation
- [`components/*.tsx`](../samples/copilotkit/components/) -- React card components for rendering results
- [`hooks/*.ts`](../samples/copilotkit/hooks/) -- CopilotKit hooks for wiring LayerLens actions

> **Checkpointer note:** Any LangGraph CoAgent that calls `interrupt()` (such as `evaluator_agent.py`) **must** be compiled with a checkpointer. Without one, the AG-UI stream ends without emitting `RUN_FINISHED` and CopilotKit blocks all subsequent messages. The sample ships with `InMemorySaver` for a zero-setup local run and documents Postgres / SQLite / Redis / LangGraph Platform alternatives for production in its [README](../samples/copilotkit/README.md#human-in-the-loop-checkpointers).

See the [CopilotKit README](../samples/copilotkit/README.md) for the full list.

### Claude Code Skills (6 skills)
Expand Down
423 changes: 375 additions & 48 deletions samples/copilotkit/README.md

Large diffs are not rendered by default.

Loading
Loading