Skip to content
Merged
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
72 changes: 41 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ portable-pty = "0.9"
uuid = { version = "1", features = ["v4"] }

# HTTP server (daemon mode)
axum = "0.7"
axum = "0.8"
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.6", features = ["cors", "set-header"] }
tower-http = { version = "0.7", features = ["cors", "set-header"] }

# SQLite (session store)
rusqlite = { version = "0.40", features = ["bundled"] }
Expand Down
8 changes: 4 additions & 4 deletions vibe-indexer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//! | Method | Path | Description |
//! |--------|-----------------------|--------------------------------------|
//! | POST | `/index` | Start a new indexing job |
//! | GET | `/index/status/:id` | Poll job progress |
//! | GET | `/index/status/{id}` | Poll job progress |
//! | POST | `/search` | Semantic search over indexed content |
//! | GET | `/health` | Liveness probe |
//!
Expand Down Expand Up @@ -205,7 +205,7 @@ async fn start_index(
.into_response()
}

/// GET /index/status/:id — poll a job.
/// GET /index/status/{id} — poll a job.
async fn index_status(
State(state): State<Arc<AppState>>,
Path(id): Path<String>,
Expand Down Expand Up @@ -365,7 +365,7 @@ async fn main() -> anyhow::Result<()> {
.route("/health", get(health))
.route("/index", post(start_index))
.route("/index/jobs", get(list_jobs))
.route("/index/status/:id", get(index_status))
.route("/index/status/{id}", get(index_status))
.route("/search", post(search))
.with_state(state)
.layer(
Expand All @@ -378,7 +378,7 @@ async fn main() -> anyhow::Result<()> {
let addr = format!("0.0.0.0:{}", port);
info!("vibe-indexer listening on http://{}", addr);
info!(" POST /index — start indexing job");
info!(" GET /index/status/:id — poll job");
info!(" GET /index/status/{{id}} — poll job");
info!(" GET /index/jobs — list all jobs");
info!(" POST /search — semantic search");
info!(" GET /health — liveness probe");
Expand Down
6 changes: 3 additions & 3 deletions vibe-rl-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ dependencies = [
mujoco = ["mujoco>=3.0", "gymnasium[mujoco]>=0.29"]
atari = ["gymnasium[atari,accept-rom-license]>=0.29"]
box2d = ["gymnasium[box2d]>=0.29", "swig"]
onnx = ["onnx>=1.15", "onnxruntime>=1.16"]
onnx = ["onnx>=1.22.0", "onnxruntime>=1.16"]
# Slice 7a — distill + quantize + prune. Distill reuses the base PPO loop
# (no extra dep). Quantize needs onnx + onnxruntime.quantization. Prune
# uses torch.nn.utils.prune which is in core torch already.
opt = ["onnx>=1.15", "onnxruntime>=1.16"]
opt = ["onnx>=1.22.0", "onnxruntime>=1.16"]
# Slice 7b — multi-agent. PettingZoo provides the env API; mpe2 is the
# maintained replacement for PettingZoo's deprecated MPE suite (the
# canonical cooperative-MARL benchmarks). supersuit gives us
Expand All @@ -39,7 +39,7 @@ marl = [
# dep — DPO loss is ~30 lines of math. Reward-model training (for PPO-
# style alignment) is 7c-extras.
rlhf = [
"transformers>=4.40,<5.0",
"transformers>=5.3.0,<6.0",
"accelerate>=0.27,<2.0",
]
dev = ["pytest>=7", "pytest-timeout>=2"]
Expand Down
Loading
Loading