feat: Add LICENSE file and refactor MITM response handling and tracing.

This commit is contained in:
Nikketryhard
2026-02-18 02:43:05 -06:00
parent c0c12de83c
commit ad0aa1556c
26 changed files with 1132 additions and 569 deletions

View File

@@ -48,10 +48,7 @@ pub fn router(state: Arc<AppState>) -> Router {
"/v1/chat/completions",
post(completions::handle_completions),
)
.route(
"/v1beta/{*path}",
post(gemini::handle_gemini_v1beta),
)
.route("/v1beta/{*path}", post(gemini::handle_gemini_v1beta))
.route("/v1/models", get(handle_models))
.route("/v1/search", get(search::handle_search_get))
.route("/v1/search", post(search::handle_search_post))