A2UI Launched: Full CopilotKit support at launch!

A2UI Launched: CopilotKit has partnered with Google to deliver full support in both CopilotKit and AG-UI!

Check it out
LogoLogo
  • Overview
  • Integrations
  • API Reference
  • Copilot Cloud
Slanted end borderSlanted end border
Slanted start borderSlanted start border
Select integration...

Please select an integration to view the sidebar content.

Tutorial: Research ANA

Step 1: Checkout the repo

Get the starting code

We'll use the open-research-ana repository as our starting point. Clone the tutorial-start branch:

git clone -b tutorial-start https://github.com/CopilotKit/open-research-ana.git
cd open-research-ana

The repository contains:

  • frontend/: A NextJS application where we'll integrate our agent
  • agent/: A Python-based LangGraph agent we'll enhance with CopilotKit

Install frontend dependencies

Navigate to the frontend directory and install dependencies:

cd frontend
pnpm install

Start the application

Launch the development server:

pnpm run dev

Visit http://localhost:3000 to see the initial application. You'll see an empty chat interface and document - this is our starting point.

Next, we'll explore how our LangGraph agent works.

PREV
Overview
Slanted end borderSlanted end border
Slanted start borderSlanted start border
NEXT
Step 2: Start the Agent

On this page

Get the starting code
Install frontend dependencies
Start the application