https://github.com/pythonhubdev/coteach-ai
A multi-agent AI system that transforms simple course ideas into fully structured educational experiences through automated research and intelligent content organization.
https://github.com/pythonhubdev/coteach-ai
Last synced: 3 months ago
JSON representation
A multi-agent AI system that transforms simple course ideas into fully structured educational experiences through automated research and intelligent content organization.
- Host: GitHub
- URL: https://github.com/pythonhubdev/coteach-ai
- Owner: pythonhubdev
- Created: 2025-03-22T16:11:52.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-24T04:25:26.000Z (3 months ago)
- Last Synced: 2025-04-05T07:33:25.165Z (3 months ago)
- Language: Python
- Size: 795 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Co-Teach AI
A multi-agent AI system that transforms simple course ideas into fully structured educational experiences through
automated research and intelligent content organization.## Running in Local
1. Sync dependencies with UV
```shell
uv sync --group dev openai
```
2. Run the API
```shell
uv run python -m src
```## Folder Structure
```
src
└── coteach_ai
├── agent
│ └── config
├── api
│ └── course
├── core
│ ├── config
│ ├── constants
│ ├── schema
│ │ ├── dto
│ │ └── response
│ └── utils
├── errors
├── middlewares
├── services
└── static
└── docs
```