mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-04 21:06:03 +00:00
16 lines
318 B
Python
16 lines
318 B
Python
from __future__ import annotations
|
|
|
|
|
|
import typing
|
|
|
|
from . import ppiochatcmpl
|
|
|
|
|
|
class GiteeAIChatCompletions(ppiochatcmpl.PPIOChatCompletions):
|
|
"""Gitee AI ChatCompletions API 请求器"""
|
|
|
|
default_config: dict[str, typing.Any] = {
|
|
'base_url': 'https://ai.gitee.com/v1',
|
|
'timeout': 120,
|
|
}
|