Skip to content
Open
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
8 changes: 4 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ The CLI follows a command pattern with subcommands. The main components are:
### Python SDK Architecture

- `python/cog/` - Core SDK
- `base_predictor.py` - Base class for model predictors
- `predictor.py` - `BasePredictor`, the base class for model predictors
- `types.py` - Input/output type definitions
- `server/` - HTTP/queue server implementation
- `command/` - Runner implementations for predict/train
- `coder.py` - Custom type encoding/decoding for predictor inputs and outputs
- `server/` - HTTP server implementation

### Coglet Architecture (Rust)

Expand Down Expand Up @@ -314,7 +314,7 @@ Skills are invoked automatically by agents when a matching task is detected. See
- `cog.yaml` - User-facing model configuration
- `pkg/config/config.go` - Go code for parsing and validating `cog.yaml`
- `pkg/config/data/config_schema_v1.0.json` - JSON schema for `cog.yaml`
- `python/cog/base_predictor.py` - Predictor interface
- `python/cog/predictor.py` - Predictor interface (`BasePredictor`)
- `crates/Cargo.toml` - Rust workspace configuration (version must match VERSION.txt)
- `crates/README.md` - Coglet architecture overview
- `mise.toml` - Task definitions for development workflow
Expand Down