Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,11 @@ codegen notebook

See [Getting Started](https://docs.codegen.com/introduction/getting-started) for a full tutorial.

```
```python
from codegen import Codebase

# For AI agent functionality
from codegen import Agent
```

## Troubleshooting
Expand Down
6 changes: 5 additions & 1 deletion src/codegen/agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ pip install codegen
### Basic Example

```python
from codegen.agents.agent import Agent
# You can import Agent directly from the top-level package
from codegen import Agent

# Or use the full import path
# from codegen.agents.agent import Agent

# Initialize the Agent with your organization ID and API token
agent = Agent(
Expand Down
Loading