34 lines
649 B
Markdown
34 lines
649 B
Markdown
# Simple Chatbot Client
|
|
|
|
A Next.js application using TypeScript and the Pipecat React SDK to connect to a Pipecat AI agent.
|
|
|
|
## Features
|
|
|
|
- Next.js App Router architecture
|
|
- TypeScript for type safety
|
|
- RTVI client integration for real-time voice and video
|
|
- Daily.co WebRTC transport
|
|
- Custom API endpoint for Daily room creation
|
|
|
|
## Getting Started
|
|
|
|
1. Install dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
2. Create `.env.local` file with your Pipecat Cloud API key:
|
|
|
|
```
|
|
PIPECAT_CLOUD_API_KEY=your_pipecat_cloud_key
|
|
```
|
|
|
|
3. Start the development server:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
4. Open [http://localhost:3000](http://localhost:3000) in your browser
|