mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-04-26 14:27:22 +08:00
12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
/**
|
|
* 共享 TypeBox Schema 片段
|
|
* 多个工具复用的时间参数 schema
|
|
*/
|
|
|
|
import { Type } from '@mariozechner/pi-ai'
|
|
|
|
export const timeParamProperties = {
|
|
start_time: Type.Optional(Type.String({ description: 'ai.tools._shared.params.start_time' })),
|
|
end_time: Type.Optional(Type.String({ description: 'ai.tools._shared.params.end_time' })),
|
|
}
|