Files
LangBot/pkg/provider/modelmgr/requesters/bailianchatcmpl.py

18 lines
428 B
Python
Raw Normal View History

from __future__ import annotations
2025-03-16 23:16:06 +08:00
import typing
import openai
2025-05-10 17:47:14 +08:00
from . import modelscopechatcmpl
class BailianChatCompletions(modelscopechatcmpl.ModelScopeChatCompletions):
2025-02-12 11:25:28 +08:00
"""阿里云百炼大模型平台 ChatCompletion API 请求器"""
client: openai.AsyncClient
2025-03-16 23:16:06 +08:00
default_config: dict[str, typing.Any] = {
'base_url': 'https://dashscope.aliyuncs.com/compatible-mode/v1',
2025-03-16 23:16:06 +08:00
'timeout': 120,
}