11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
/**
|
|
* ModelParams types
|
|
*/
|
|
export type ModelParams = ModelRuntimeParams | ModelSettingParams
|
|
|
|
export type ModelTool = {
|
|
name: string
|
|
description: string
|
|
inputSchema: string
|
|
}
|