feat: reasoning_content in API for reasoning models (#6322)
Signed-off-by: Abhijay007 <Abhijay007j@gmail.com>
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -564,6 +564,8 @@ export type MessageContent = (TextContent & {
|
||||
type: 'redactedThinking';
|
||||
}) | (SystemNotificationContent & {
|
||||
type: 'systemNotification';
|
||||
}) | (ReasoningContent & {
|
||||
type: 'reasoning';
|
||||
});
|
||||
|
||||
export type MessageEvent = {
|
||||
@@ -833,6 +835,10 @@ export type ReadResourceResponse = {
|
||||
uri: string;
|
||||
};
|
||||
|
||||
export type ReasoningContent = {
|
||||
text: string;
|
||||
};
|
||||
|
||||
export type Recipe = {
|
||||
activities?: Array<string> | null;
|
||||
author?: Author | null;
|
||||
|
||||
Reference in New Issue
Block a user