mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
18 lines
390 B
Python
18 lines
390 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import typing
|
||
|
|
import openai
|
||
|
|
|
||
|
|
from . import modelscopechatcmpl
|
||
|
|
|
||
|
|
|
||
|
|
class OpenRouterChatCompletions(modelscopechatcmpl.ModelScopeChatCompletions):
|
||
|
|
"""OpenRouter ChatCompletion API 请求器"""
|
||
|
|
|
||
|
|
client: openai.AsyncClient
|
||
|
|
|
||
|
|
default_config: dict[str, typing.Any] = {
|
||
|
|
'base_url': 'https://openrouter.ai/api/v1',
|
||
|
|
'timeout': 120,
|
||
|
|
}
|