Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,27 @@

The Codegen SDK provides a programmatic interface to code agents provided by [Codegen](https://codegen.com).

## Quick Start

1. **Install the SDK**:

```bash
pip install codegen
```

1. **Get your API credentials** at [codegen.com/developer](https://codegen.com/developer)

1. **Run your first agent**:

```python
from codegen.agents.agent import Agent

agent = Agent(org_id="YOUR_ORG_ID", token="YOUR_API_TOKEN")
task = agent.run(prompt="Add a hello world function to my codebase")
```

## Example Usage

```python
from codegen.agents.agent import Agent

Expand Down
Loading