mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
19 lines
648 B
Python
19 lines
648 B
Python
# Marsho 的类实例以及全局变量
|
|
from azure.ai.inference.aio import ChatCompletionsClient
|
|
from azure.core.credentials import AzureKeyCredential
|
|
from nonebot import get_driver
|
|
|
|
from .config import config
|
|
from .models import MarshoContext, MarshoTools
|
|
|
|
driver = get_driver()
|
|
|
|
command_start = driver.config.command_start
|
|
model_name = config.marshoai_default_model
|
|
context = MarshoContext()
|
|
tools = MarshoTools()
|
|
token = config.marshoai_token
|
|
endpoint = config.marshoai_azure_endpoint
|
|
client = ChatCompletionsClient(endpoint=endpoint, credential=AzureKeyCredential(token))
|
|
target_list: list[list] = [] # 记录需保存历史上下文的列表
|