mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +08:00
18 lines
428 B
Python
18 lines
428 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
import openai
|
|
|
|
from . import modelscopechatcmpl
|
|
|
|
|
|
class BailianChatCompletions(modelscopechatcmpl.ModelScopeChatCompletions):
|
|
"""阿里云百炼大模型平台 ChatCompletion API 请求器"""
|
|
|
|
client: openai.AsyncClient
|
|
|
|
default_config: dict[str, typing.Any] = {
|
|
'base_url': 'https://dashscope.aliyuncs.com/compatible-mode/v1',
|
|
'timeout': 120,
|
|
}
|