mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
17 lines
260 B
Python
17 lines
260 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
import pydantic
|
|
|
|
from ...provider import entities
|
|
|
|
|
|
class Prompt(pydantic.BaseModel):
|
|
"""供AI使用的Prompt"""
|
|
|
|
name: str
|
|
"""名称"""
|
|
|
|
messages: list[entities.Message]
|
|
"""消息列表"""
|