mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +08:00
15 lines
331 B
Python
15 lines
331 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
|
|
from . import chatcmpl
|
|
|
|
|
|
class GeminiChatCompletions(chatcmpl.OpenAIChatCompletions):
|
|
"""Google Gemini API 请求器"""
|
|
|
|
default_config: dict[str, typing.Any] = {
|
|
'base_url': 'https://generativelanguage.googleapis.com/v1beta/openai',
|
|
'timeout': 120,
|
|
}
|