Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Clone the repo, run `nx serve cockpit-langgraph-interrupts-angular`, and follow

<div style={{ marginTop: 40, marginBottom: 44 }}>
<CardGroup cols={2}>
<Card title="Run the live demo" icon="▶" href="/docs/langgraph/guides/interrupts?mode=run">
<Card title="Run the live demo" href="/docs/langgraph/guides/interrupts?mode=run">
The refund agent running in the docs workspace. Walk the approve / edit / cancel flow yourself.
</Card>
<Card title="View the source" icon="⌥" external href="https://github.com/cacheplane/angular-agent-framework/tree/main/cockpit/langgraph/interrupts">
<Card title="View the source" external href="https://github.com/cacheplane/angular-agent-framework/tree/main/cockpit/langgraph/interrupts">
The exact graph.py and Angular component from this post.
</Card>
</CardGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Clone the repo, run `nx serve cockpit-ag-ui-interrupts-angular`, and follow alon

<div style={{ marginTop: 40, marginBottom: 44 }}>
<CardGroup cols={2}>
<Card title="Run the live demo" icon="▶" href="/docs/ag-ui/guides/interrupts?mode=run">
<Card title="Run the live demo" href="/docs/ag-ui/guides/interrupts?mode=run">
The refund agent running in the docs workspace. Walk the approve / edit / cancel flow yourself.
</Card>
<Card title="View the source" icon="⌥" external href="https://github.com/cacheplane/angular-agent-framework/tree/main/cockpit/ag-ui/interrupts">
<Card title="View the source" external href="https://github.com/cacheplane/angular-agent-framework/tree/main/cockpit/ag-ui/interrupts">
The exact graph.py, server.py, and Angular component from this post.
</Card>
</CardGroup>
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/ag-ui/guides/testing.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Test AG-UI components with provideFakeAgent() and its event script, the neutral mockAgent(), or a hand-written AbstractAgent, and know which double covers which surface.
description: Test AG-UI components with provideFakeAgent() and its event script, the neutral mockAgent(), or a hand-written AbstractAgent, and which double fits where.
---

# Testing
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/chat/guides/error-handling.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: The structured AgentError on the agent error signal — its failure kinds, the retryable flag, the built-in chat-error UI, and classifying failures in a custom adapter.
description: The structured AgentError on the agent error signal — its failure kinds, the retryable flag, the built-in chat-error UI, and classifying failures.
---

# Error Handling
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/chat/guides/lifecycle.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: The CHAT_LIFECYCLE token exposes per-instance signals for readiness, first submit, submit count and last submit timeand where in the injector tree they are reachable.
description: The CHAT_LIFECYCLE token exposes per-instance signals for readiness, first submit, submit count and last submit time, and where they are reachable.
---

# Chat Lifecycle Signals
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/chat/guides/theming.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: How the theming example swaps --tplane-chat-* custom properties at runtime, where the token defaults come from, and how to override them in your own application.
description: How the theming example swaps --tplane-chat-* custom properties at runtime, where the token defaults come from, and how to override them in your app.
---

# Theming
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: Implement the runtime-neutral Agent contract for a custom backend — the required fields, a working in-process example, the conformance suite, and publishing notes.
description: Implement the runtime-neutral Agent contract for a custom backend — the required fields, a working in-process example, and the conformance suite.
---

# Writing an Adapter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: The runtime-neutral Agent contract from @threadplane/chat — its state signals, actions, optional capabilities, and how the LangGraph and AG-UI adapters satisfy it
description: The runtime-neutral Agent contract from @threadplane/chat — its state signals, actions, optional capabilities, and how the adapters satisfy it.
---

# Agent Contract
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/langgraph/guides/subgraphs.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: How the subgraphs example routes a turn into a compiled child graph, keeps the child's state and tokens out of the transcript, and surfaces the child as a stream
description: How the subgraphs example routes a turn into a compiled child graph, keeps the child's state and tokens out of the transcript, and streams the child.
---

# Subgraphs
Expand Down
2 changes: 1 addition & 1 deletion apps/website/content/docs/langgraph/guides/time-travel.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: How the time travel example checkpoints every turn, lists the checkpoints in a timeline sidebar, and selects or forks from one, plus the history signals and the branch tree
description: How the time travel example checkpoints every turn, lists them in a timeline sidebar, and forks from one, plus the history signals and the branch tree.
---

# Time Travel
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: defineAngularRegistry()
description: API reference for defineAngularRegistry() -- the entry shapes it accepts, the normalized registry it returns, per-component fallbacks, and schema-gated mounting.
description: API reference for defineAngularRegistry() -- the entry shapes it accepts, the normalized registry it returns, per-component fallbacks, and schema gating.
---

# defineAngularRegistry()
Expand Down
3 changes: 0 additions & 3 deletions apps/website/src/components/docs/mdx/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ export function CardGroup({ cols = 2, children }: { cols?: number; children: Rea
export function Card({
title,
href,
icon,
external = false,
children,
}: {
title: string;
href: string;
icon?: string;
/** When true, open in a new tab (for off-site links: demos, GitHub, etc.). */
external?: boolean;
children: React.ReactNode;
Expand All @@ -34,7 +32,6 @@ export function Card({
<div data-mdx="card">
<div className="mdx-card-row">
<div>
{icon ? <div className="mdx-card-icon">{icon}</div> : null}
<div className="mdx-card-title">{title}</div>
</div>
<span className="mdx-card-arrow">→</span>
Expand Down
Loading
Loading