-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: experimental features are now marked as stable (#326)
- Loading branch information
Showing
28 changed files
with
86 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@assistant-ui/react-hook-form": minor | ||
"@assistant-ui/react-ai-sdk": minor | ||
"@assistant-ui/react-ui": minor | ||
"@assistant-ui/react": minor | ||
--- | ||
|
||
feat!: experimental features are now marked as stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
packages/react-ai-sdk/src/ui/utils/useVercelAIComposerSync.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from "./providers"; | ||
export * from "./stores"; | ||
export * from "./react"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +0,0 @@ | ||
export type { | ||
ImageContentPart, | ||
ToolCallContentPart, | ||
UIContentPart, | ||
} from "./types/AssistantTypes"; | ||
|
||
export type { | ||
ModelConfigProvider, | ||
ModelConfig, | ||
} from "./utils/ModelConfigTypes"; | ||
|
||
export type { | ||
TextContentPartProps, | ||
TextContentPartComponent, | ||
ImageContentPartProps, | ||
ImageContentPartComponent, | ||
UIContentPartProps, | ||
UIContentPartComponent, | ||
ToolCallContentPartProps, | ||
ToolCallContentPartComponent, | ||
} from "./types/ContentPartComponentTypes"; | ||
|
||
export * from "./context"; | ||
export { useAssistantInstructions } from "./model-config/useAssistantInstructions"; | ||
export { | ||
useAssistantTool, | ||
type AssistantToolProps, | ||
} from "./model-config/useAssistantTool"; | ||
export { | ||
useAssistantToolUI, | ||
type AssistantToolUIProps, | ||
} from "./model-config/useAssistantToolUI"; | ||
export { makeAssistantTool } from "./model-config/makeAssistantTool"; | ||
export { makeAssistantToolUI } from "./model-config/makeAssistantToolUI"; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,8 @@ | ||
export * from "./primitive-hooks"; | ||
export * from "./primitives"; | ||
export * from "./runtime"; | ||
|
||
export type { | ||
ThreadMessage, | ||
AssistantMessage, | ||
UserMessage, | ||
AppendMessage, | ||
AssistantContentPart, | ||
UserContentPart, | ||
AppendContentPart, | ||
TextContentPart, | ||
} from "./types/AssistantTypes"; | ||
|
||
export { AssistantRuntimeProvider } from "./context/providers/AssistantRuntimeProvider"; | ||
|
||
// utils | ||
export type { Unsubscribe } from "./utils/Unsubscribe"; | ||
export * from "./context"; | ||
export * from "./model-config"; | ||
export * from "./types"; | ||
|
||
export * as INTERNAL from "./internal"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export { makeAssistantTool } from "./makeAssistantTool"; | ||
export { makeAssistantToolUI } from "./makeAssistantToolUI"; | ||
export { useAssistantInstructions } from "./useAssistantInstructions"; | ||
export { useAssistantTool, type AssistantToolProps } from "./useAssistantTool"; | ||
export { | ||
useAssistantToolUI, | ||
type AssistantToolUIProps, | ||
} from "./useAssistantToolUI"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
export type { | ||
ThreadMessage, | ||
AssistantMessage, | ||
UserMessage, | ||
AppendMessage, | ||
AssistantContentPart, | ||
UserContentPart, | ||
AppendContentPart, | ||
TextContentPart, | ||
ImageContentPart, | ||
ToolCallContentPart, | ||
UIContentPart, | ||
} from "./AssistantTypes"; | ||
|
||
export type { | ||
TextContentPartProps, | ||
TextContentPartComponent, | ||
ImageContentPartProps, | ||
ImageContentPartComponent, | ||
UIContentPartProps, | ||
UIContentPartComponent, | ||
ToolCallContentPartProps, | ||
ToolCallContentPartComponent, | ||
} from "./ContentPartComponentTypes"; | ||
|
||
export type { ModelConfig } from "./ModelConfigTypes"; | ||
|
||
export type { Unsubscribe } from "./Unsubscribe"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters