https://github.com/copilotkit/copilotkit-deepmind
https://github.com/copilotkit/copilotkit-deepmind
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/copilotkit/copilotkit-deepmind
- Owner: CopilotKit
- Created: 2025-08-04T06:14:50.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-08-05T13:16:27.000Z (5 months ago)
- Last Synced: 2025-08-05T15:12:17.205Z (5 months ago)
- Language: TypeScript
- Homepage: https://copilot-kit-deepmind.vercel.app
- Size: 274 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CopilotKit-Deepmind
## Post Generator Agent

## Stack Analyzing Agent

A demo project with a Next.js frontend and a FastAPI-based backend agent for Post Generation and Stack Analyzing using Google Gemini.
---
## Project Structure
- `frontend/` — Next.js 15 app (UI)
- `agent/` — FastAPI backend agent (Python)
---
## Getting Started
### 1. Environment Configuration
Create a `.env` file in each relevant directory as needed.
#### Backend (`agent/.env`):
```env
GOOGLE_API_KEY=<>
```
#### Frontend (`frontend/.env`):
```env
GOOGLE_API_KEY=<>
```
---
### 2. Start the Backend Agent
```bash
cd agent
poetry install
poetry run python main.py
```
---
### 3. Start the Frontend
```bash
cd frontend
pnpm install
pnpm run dev
```
Open [http://localhost:3000](http://localhost:3000) in your browser to view the app.
---
## Notes
- Ensure the backend agent is running before using the frontend.
- Update environment variables as needed for your deployment.
---
### Hosted URL : https://copilot-kit-deepmind.vercel.app/