add openai compatible endpoint for chat completions

This commit is contained in:
geoffsee
2025-06-05 20:31:59 -04:00
committed by Geoff Seemueller
parent 3b4c8b045a
commit 8a3c0797c3
6 changed files with 965 additions and 78 deletions

View File

@@ -36,6 +36,13 @@ clap= { version = "4.2.4", features = ["derive"] }
tracing = "0.1.37"
tracing-chrome = "0.7.1"
tracing-subscriber = "0.3.7"
axum = { version = "0.7.4", features = ["json"] }
tower = "0.4.13"
tower-http = { version = "0.5.1", features = ["cors"] }
tokio = { version = "1.43.0", features = ["full"] }
either = { version = "1.9.0", features = ["serde"] }
utoipa = { version = "4.2.0", features = ["axum_extras"] }
uuid = { version = "1.7.0", features = ["v4"] }
[dev-dependencies]