refactor: remove /v1/gemini endpoint, replaced by /v1beta routes

- Delete handle_gemini handler (identical to handle_gemini_v1beta)
- Remove /v1/gemini route from router
- Update root handler service name to zerogravity
- Clean all doc references
This commit is contained in:
Nikketryhard
2026-02-18 01:59:22 -06:00
parent 59ed872ed3
commit 1a5075dd20
5 changed files with 3 additions and 14 deletions

View File

@@ -133,7 +133,6 @@ graph TD
| ---------- | ---------------------- | --------------------------------- | --------------------------------------- |
| `POST` | `/v1/responses` | `responses::handle_responses` | OpenAI Responses API (streaming + sync) |
| `POST` | `/v1/chat/completions` | `completions::handle_completions` | OpenAI Chat Completions API |
| `POST` | `/v1/gemini` | `gemini::handle_gemini` | Custom Gemini endpoint |
| `POST` | `/v1beta/{*path}` | `gemini::handle_gemini_v1beta` | Official Gemini v1beta routes |
| `GET/POST` | `/v1/search` | `search::handle_search_*` | Web search via Google grounding |
| `GET` | `/v1/models` | `handle_models` | List available models |