From 0a466929eb002cf6b39933b5227e9513d98bb3d9 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 20 Jan 2026 14:49:55 -0600 Subject: [PATCH] update gemini docs --- docs/docs/configuration/genai.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/docs/configuration/genai.md b/docs/docs/configuration/genai.md index 292bf437a..3a7cfaca8 100644 --- a/docs/docs/configuration/genai.md +++ b/docs/docs/configuration/genai.md @@ -117,7 +117,17 @@ genai: :::note -To use a different Gemini-compatible API endpoint, set the `GEMINI_BASE_URL` environment variable to your provider's API URL. +To use a different Gemini-compatible API endpoint, set the `provider_options` with the `base_url` key to your provider's API URL. For example: + +``` +genai: + provider: gemini + ... + provider_options: + base_url: https://... +``` + +Other HTTP options are available, see the [python-genai documentation](https://github.com/googleapis/python-genai). :::