v1.3.0: Full Rig integration - Multi-agent AI framework

This commit is contained in:
admin
2026-02-26 11:56:08 +04:00
Unverified
parent 04e0fcd59e
commit 5455eaa125
11 changed files with 1958 additions and 0 deletions

49
rig-service/Cargo.toml Normal file
View File

@@ -0,0 +1,49 @@
[package]
name = "qwenclaw-rig"
version = "0.1.0"
edition = "2021"
description = "Rig-based AI agent service for QwenClaw"
authors = ["admin <admin@rommark.dev>"]
[dependencies]
# Rig core framework
rig-core = "0.16"
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP server (Axum)
axum = { version = "0.7", features = ["macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1"
thiserror = "1"
# Environment variables
dotenvy = "0.15"
# UUID for session IDs
uuid = { version = "1", features = ["v4"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Vector store (SQLite for simplicity)
rusqlite = { version = "0.31", features = ["bundled"] }
# Embeddings (using Rig's built-in)
rig-sqlite = "0.1"
[profile.release]
opt-level = 3
lto = true