chore: 整理文件

This commit is contained in:
RockChinQ
2024-01-28 18:45:18 +08:00
parent 2b0faea8ec
commit 698782c537
50 changed files with 29 additions and 1007 deletions
+14
View File
@@ -0,0 +1,14 @@
from __future__ import annotations
import typing
import pydantic
from ...gai import entities
class Prompt(pydantic.BaseModel):
"""供AI使用的Prompt"""
name: str
messages: list[entities.Message]