File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export interface IHttpLlmFunction<Model extends ILlmSchema.Model> {
160
160
* used to explain the function to the user. Therefore, the `description`
161
161
* property has the highest priority, and you have to consider it.
162
162
*/
163
- description ?: string ;
163
+ description ?: string | undefined ;
164
164
165
165
/**
166
166
* Whether the function is deprecated or not.
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export interface IMcpLlmFunction<Model extends ILlmSchema.Model> {
47
47
* used to explain the function to the user. Therefore, the `description`
48
48
* property has the highest priority, and you have to consider it.
49
49
*/
50
- description ?: string ;
50
+ description ?: string | undefined ;
51
51
52
52
/**
53
53
* Parameters of the function.
You can’t perform that action at this time.
0 commit comments