Skip to content

Commit ca1f59d

Browse files
committed
refactor(website): shrink HomeFAQ to non-binary questions
1 parent 66513ab commit ca1f59d

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

apps/website/src/components/landing/HomeFAQ.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ const ITEMS: FAQItem[] = [
88
q: 'How is this different from using AG-UI directly?',
99
a: 'AG-UI is a protocol rather than a complete Angular UI layer. Threadplane gives Angular teams the production surface around compatible runtimes: headless chat, durable threads, interrupts, subagents, planning, memory, generative UI, and runtime adapters.',
1010
},
11-
{
12-
q: 'Does it work with my existing Angular app?',
13-
a: 'Yes. Drop provideAgent (from @threadplane/langgraph or @threadplane/ag-ui) into your app.config.ts. The headless primitives don’t impose any UI; the chat compositions are opt-in.',
14-
},
15-
{
16-
q: 'Can I use this without LangGraph?',
17-
a: 'Yes. Use the @threadplane/ag-ui adapter for any AG-UI compliant backend, or implement the agent contract yourself. Threadplane keeps the Angular UI layer stable while the backend agent runtime can change.',
18-
},
1911
{
2012
q: 'Which adapter should I use — @threadplane/langgraph or @threadplane/ag-ui?',
2113
a: 'If your backend is LangGraph Platform, use @threadplane/langgraph. If your backend speaks the AG-UI protocol (CrewAI, Mastra, Microsoft Agent Framework, AG2, Pydantic AI, or AWS Strands), use @threadplane/ag-ui. Both expose the same provideAgent/injectAgent API — see /docs/choosing-an-adapter for a side-by-side comparison.',
@@ -40,10 +32,6 @@ const ITEMS: FAQItem[] = [
4032
q: 'Does it work with Angular Universal / SSR?',
4133
a: 'Streaming is client-side by design — agents are stateful and signal-based. If your shell is SSR’d, the agent-talking parts stay client-only; render fallbacks during hydration via standard Angular SSR patterns.',
4234
},
43-
{
44-
q: 'How do I test agent-driven components?',
45-
a: 'The agent is provided through Angular DI, so test doubles work the way you’re used to — supply a stub agent in your test module, drive it with signals, assert on the rendered output. See /docs/langgraph/guides/testing.',
46-
},
4735
];
4836

4937
export function HomeFAQ() {

0 commit comments

Comments
 (0)