-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add chat/agent related sdk and react-queries (#1635)
Because - add chat/agent related sdk and react-queries This commit - add chat/agent related sdk and react-queries
- Loading branch information
Showing
16 changed files
with
719 additions
and
10 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
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,4 +1,25 @@ | ||
import BulletList from "@tiptap/extension-bullet-list"; | ||
import Document from "@tiptap/extension-document"; | ||
import ListItem from "@tiptap/extension-list-item"; | ||
import Mention from "@tiptap/extension-mention"; | ||
import Paragraph from "@tiptap/extension-paragraph"; | ||
import Placeholder from "@tiptap/extension-placeholder"; | ||
import Text from "@tiptap/extension-text"; | ||
import { EditorContent, useEditor } from "@tiptap/react"; | ||
|
||
export * from "./components"; | ||
export * from "./constant"; | ||
export * from "./lib"; | ||
export * from "./view"; | ||
|
||
export const TipTap = { | ||
BulletList, | ||
Document, | ||
ListItem, | ||
Mention, | ||
Paragraph, | ||
Text, | ||
Placeholder, | ||
EditorContent, | ||
useEditor, | ||
}; |
8 changes: 8 additions & 0 deletions
8
packages/toolkit/src/lib/react-query-service/application/index.ts
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 * from "./useCreateNamespaceAgent"; | ||
export * from "./useCreateNamespaceChat"; | ||
export * from "./useDeleteNamespaceAgent"; | ||
export * from "./useDeleteNamespaceChat"; | ||
export * from "./useListNamespaceAgents"; | ||
export * from "./useListNamespaceChats"; | ||
export * from "./useUpdateNamespaceAgent"; | ||
export * from "./useUpdateNamespaceChat"; |
Oops, something went wrong.