@copilotkit/react-ui 1.69.0 → 1.69.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +30 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +408 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +408 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +32 -2
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +30 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/components/chat/Chat.tsx +38 -0
- package/src/components/chat/ChatContext.tsx +19 -0
- package/src/components/chat/Markdown.tsx +19 -0
- package/src/components/chat/Modal.tsx +30 -3
- package/src/components/chat/Popup.tsx +19 -0
- package/src/components/chat/Sidebar.tsx +27 -0
- package/src/components/chat/Suggestion.tsx +19 -0
- package/src/components/chat/Suggestions.tsx +20 -1
- package/src/components/chat/attachment-utils.ts +18 -0
- package/src/components/chat/feedback.test.ts +2 -5
- package/src/components/chat/messages/AssistantMessage.tsx +20 -0
- package/src/components/chat/messages/ImageRenderer.tsx +20 -1
- package/src/components/chat/messages/UserMessage.tsx +21 -1
- package/src/components/chat/props.ts +124 -0
- package/src/components/dev-console/console.tsx +18 -0
- package/src/hooks/use-copilot-chat-suggestions.tsx +47 -4
- package/src/index.tsx +491 -0
- package/src/types/css.ts +20 -1
- package/src/types/suggestions.ts +19 -0
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AIMessage, Attachment, AttachmentModality, AttachmentsConfig, CopilotErrorEvent, CopilotErrorHandler, ImageData, InputContentSource, Message, UserMessage as UserMessage$2 } from "@copilotkit/shared";
|
|
1
|
+
import { AIMessage, Attachment, AttachmentModality, AttachmentsConfig, AttachmentsConfig as AttachmentsConfig$1, CopilotErrorEvent, CopilotErrorHandler, ImageData, InputContentSource, Message, UserMessage as UserMessage$2 } from "@copilotkit/shared";
|
|
2
2
|
import React$1, { CSSProperties, ReactNode } from "react";
|
|
3
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
4
|
import { ChatSuggestions, OnReloadMessages, OnStopGeneration, SystemMessageFunction, UseCopilotChatSuggestionsConfiguration, shouldShowDevConsole } from "@copilotkit/react-core";
|
|
@@ -592,7 +592,7 @@ interface CopilotChatProps {
|
|
|
592
592
|
* />
|
|
593
593
|
* ```
|
|
594
594
|
*/
|
|
595
|
-
attachments?: AttachmentsConfig;
|
|
595
|
+
attachments?: AttachmentsConfig$1;
|
|
596
596
|
/**
|
|
597
597
|
* A function that takes in context string and instructions and returns
|
|
598
598
|
* the system message to include in the chat request.
|
|
@@ -693,6 +693,19 @@ interface CopilotChatProps {
|
|
|
693
693
|
*/
|
|
694
694
|
onError?: CopilotErrorHandler;
|
|
695
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* @deprecated The v1 SDK is deprecated. Use v2 instead. Use `CopilotChat` from `@copilotkit/react-core/v2` instead.
|
|
698
|
+
*
|
|
699
|
+
* ```tsx
|
|
700
|
+
* import { CopilotChat } from "@copilotkit/react-core/v2";
|
|
701
|
+
* import "@copilotkit/react-core/v2/styles.css";
|
|
702
|
+
*
|
|
703
|
+
* function App() {
|
|
704
|
+
* return <CopilotChat agentId="my-agent" />;
|
|
705
|
+
* }
|
|
706
|
+
* ```
|
|
707
|
+
* See https://docs.copilotkit.ai/reference/v2/components/CopilotChat
|
|
708
|
+
*/
|
|
696
709
|
declare function CopilotChat({
|
|
697
710
|
instructions,
|
|
698
711
|
suggestions,
|
|
@@ -888,6 +901,23 @@ declare function suppressDeprecationWarnings(): void;
|
|
|
888
901
|
declare function CopilotDevConsole(): react_jsx_runtime0.JSX.Element | null;
|
|
889
902
|
//#endregion
|
|
890
903
|
//#region src/hooks/use-copilot-chat-suggestions.d.ts
|
|
904
|
+
/**
|
|
905
|
+
* @deprecated The v1 SDK is deprecated. Use v2 instead. Use `useConfigureSuggestions` from `@copilotkit/react-core/v2` instead.
|
|
906
|
+
*
|
|
907
|
+
* ```tsx
|
|
908
|
+
* import { useConfigureSuggestions } from "@copilotkit/react-core/v2";
|
|
909
|
+
*
|
|
910
|
+
* function Suggestions() {
|
|
911
|
+
* useConfigureSuggestions({
|
|
912
|
+
* suggestions: [
|
|
913
|
+
* { title: "Help", message: "Help me get started" },
|
|
914
|
+
* ],
|
|
915
|
+
* });
|
|
916
|
+
* return null;
|
|
917
|
+
* }
|
|
918
|
+
* ```
|
|
919
|
+
* See https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
920
|
+
*/
|
|
891
921
|
declare function useCopilotChatSuggestions(config: UseCopilotChatSuggestionsConfiguration, dependencies?: any[]): void;
|
|
892
922
|
//#endregion
|
|
893
923
|
//#region src/types/css.d.ts
|
|
@@ -910,5 +940,380 @@ interface CopilotKitCSSProperties extends CSSProperties {
|
|
|
910
940
|
"--copilot-kit-dev-console-text"?: string;
|
|
911
941
|
}
|
|
912
942
|
//#endregion
|
|
913
|
-
export {
|
|
943
|
+
export { /**
|
|
944
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
945
|
+
* Use `AssistantMessage` from `@copilotkit/react-core/v2` instead.
|
|
946
|
+
* Import and usage example:
|
|
947
|
+
* ```ts
|
|
948
|
+
* import { AssistantMessage } from "@copilotkit/react-core/v2";
|
|
949
|
+
* const v2AssistantMessage = AssistantMessage;
|
|
950
|
+
* ```
|
|
951
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
952
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
953
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
954
|
+
*/
|
|
955
|
+
AssistantMessage$1 as AssistantMessage, /**
|
|
956
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
957
|
+
* No 1:1 v2 replacement is available.
|
|
958
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
959
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
960
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
961
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
962
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
963
|
+
*/
|
|
964
|
+
type AssistantMessageProps, /**
|
|
965
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
966
|
+
* Use `Attachment` from `@copilotkit/react-core/v2` instead.
|
|
967
|
+
* Import and usage example:
|
|
968
|
+
* ```ts
|
|
969
|
+
* import type { Attachment } from "@copilotkit/react-core/v2";
|
|
970
|
+
* type V2Attachment = Attachment;
|
|
971
|
+
* ```
|
|
972
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
973
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
974
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
975
|
+
*/
|
|
976
|
+
type Attachment, /**
|
|
977
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
978
|
+
* Use `AttachmentModality` from `@copilotkit/react-core/v2` instead.
|
|
979
|
+
* Import and usage example:
|
|
980
|
+
* ```ts
|
|
981
|
+
* import type { AttachmentModality } from "@copilotkit/react-core/v2";
|
|
982
|
+
* type V2AttachmentModality = AttachmentModality;
|
|
983
|
+
* ```
|
|
984
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
985
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
986
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
987
|
+
*/
|
|
988
|
+
type AttachmentModality, /**
|
|
989
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
990
|
+
* Use `AttachmentsConfig` from `@copilotkit/react-core/v2` instead.
|
|
991
|
+
* Import and usage example:
|
|
992
|
+
* ```ts
|
|
993
|
+
* import type { AttachmentsConfig } from "@copilotkit/react-core/v2";
|
|
994
|
+
* type V2AttachmentsConfig = AttachmentsConfig;
|
|
995
|
+
* ```
|
|
996
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
997
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
998
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
999
|
+
*/
|
|
1000
|
+
type AttachmentsConfig, /**
|
|
1001
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1002
|
+
* No 1:1 v2 replacement is available.
|
|
1003
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1004
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1005
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1006
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1007
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1008
|
+
*/
|
|
1009
|
+
type ButtonProps, /**
|
|
1010
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1011
|
+
* No 1:1 v2 replacement is available.
|
|
1012
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1013
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1014
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1015
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1016
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1017
|
+
*/
|
|
1018
|
+
type ChatError, /**
|
|
1019
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1020
|
+
* No 1:1 v2 replacement is available.
|
|
1021
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1022
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1023
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1024
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1025
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1026
|
+
*/
|
|
1027
|
+
type ComponentsMap, /**
|
|
1028
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1029
|
+
* Use `CopilotChat` from `@copilotkit/react-core/v2` instead.
|
|
1030
|
+
* Import and usage example:
|
|
1031
|
+
* ```ts
|
|
1032
|
+
* import { CopilotChat } from "@copilotkit/react-core/v2";
|
|
1033
|
+
* import "@copilotkit/react-core/v2/styles.css";
|
|
1034
|
+
* function App() {
|
|
1035
|
+
* return <CopilotChat agentId="my-agent" />;
|
|
1036
|
+
* }
|
|
1037
|
+
* ```
|
|
1038
|
+
* See https://docs.copilotkit.ai/reference/v2/components/CopilotChat
|
|
1039
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1040
|
+
*/
|
|
1041
|
+
CopilotChat, /**
|
|
1042
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1043
|
+
* No 1:1 v2 replacement is available.
|
|
1044
|
+
* Related v2 docs (Chat suggestions): https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1045
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1046
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1047
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1048
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1049
|
+
*/
|
|
1050
|
+
type CopilotChatSuggestion, /**
|
|
1051
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1052
|
+
* No 1:1 v2 replacement is available.
|
|
1053
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1054
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1055
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1056
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1057
|
+
*/
|
|
1058
|
+
CopilotDevConsole, /**
|
|
1059
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1060
|
+
* No 1:1 v2 replacement is available.
|
|
1061
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1062
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1063
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1064
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1065
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1066
|
+
*/
|
|
1067
|
+
type CopilotKitCSSProperties, /**
|
|
1068
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1069
|
+
* No 1:1 v2 replacement is available.
|
|
1070
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1071
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1072
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1073
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1074
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1075
|
+
*/
|
|
1076
|
+
CopilotModal, /**
|
|
1077
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1078
|
+
* No 1:1 v2 replacement is available.
|
|
1079
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1080
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1081
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1082
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1083
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1084
|
+
*/
|
|
1085
|
+
type CopilotModalProps, /**
|
|
1086
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1087
|
+
* No 1:1 v2 replacement is available.
|
|
1088
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1089
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1090
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1091
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1092
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1093
|
+
*/
|
|
1094
|
+
type CopilotObservabilityHooks, /**
|
|
1095
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1096
|
+
* Use `CopilotPopup` from `@copilotkit/react-core/v2` instead.
|
|
1097
|
+
* Import and usage example:
|
|
1098
|
+
* ```ts
|
|
1099
|
+
* import { CopilotPopup } from "@copilotkit/react-core/v2";
|
|
1100
|
+
* <CopilotPopup />;
|
|
1101
|
+
* ```
|
|
1102
|
+
* See https://docs.copilotkit.ai/reference/v2/components/CopilotPopup
|
|
1103
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1104
|
+
*/
|
|
1105
|
+
CopilotPopup, /**
|
|
1106
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1107
|
+
* Use `CopilotSidebar` from `@copilotkit/react-core/v2` instead.
|
|
1108
|
+
* Import and usage example:
|
|
1109
|
+
* ```ts
|
|
1110
|
+
* import { CopilotSidebar } from "@copilotkit/react-core/v2";
|
|
1111
|
+
* <CopilotSidebar />;
|
|
1112
|
+
* ```
|
|
1113
|
+
* See https://docs.copilotkit.ai/reference/v2/components/CopilotSidebar
|
|
1114
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1115
|
+
*/
|
|
1116
|
+
CopilotSidebar, /**
|
|
1117
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1118
|
+
* Use `CopilotSidebarProps` from `@copilotkit/react-core/v2` instead.
|
|
1119
|
+
* Import and usage example:
|
|
1120
|
+
* ```ts
|
|
1121
|
+
* import type { CopilotSidebarProps } from "@copilotkit/react-core/v2";
|
|
1122
|
+
* type V2CopilotSidebarProps = CopilotSidebarProps;
|
|
1123
|
+
* ```
|
|
1124
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1125
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1126
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1127
|
+
*/
|
|
1128
|
+
type CopilotSidebarProps, /**
|
|
1129
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1130
|
+
* No 1:1 v2 replacement is available.
|
|
1131
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1132
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1133
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1134
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1135
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1136
|
+
*/
|
|
1137
|
+
type ErrorMessageProps, /**
|
|
1138
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1139
|
+
* No 1:1 v2 replacement is available.
|
|
1140
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1141
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1142
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1143
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1144
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1145
|
+
*/
|
|
1146
|
+
type HeaderProps, /**
|
|
1147
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1148
|
+
* No 1:1 v2 replacement is available.
|
|
1149
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1150
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1151
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1152
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1153
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1154
|
+
*/
|
|
1155
|
+
ImageRenderer$1 as ImageRenderer, /**
|
|
1156
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1157
|
+
* No 1:1 v2 replacement is available.
|
|
1158
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1159
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1160
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1161
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1162
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1163
|
+
*/
|
|
1164
|
+
type ImageRendererProps, /**
|
|
1165
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1166
|
+
* No 1:1 v2 replacement is available.
|
|
1167
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1168
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1169
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1170
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1171
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1172
|
+
*/
|
|
1173
|
+
type InputProps, /**
|
|
1174
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1175
|
+
* No 1:1 v2 replacement is available.
|
|
1176
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1177
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1178
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1179
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1180
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1181
|
+
*/
|
|
1182
|
+
Markdown, /**
|
|
1183
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1184
|
+
* No 1:1 v2 replacement is available.
|
|
1185
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1186
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1187
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1188
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1189
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1190
|
+
*/
|
|
1191
|
+
type MessagesProps, /**
|
|
1192
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1193
|
+
* No 1:1 v2 replacement is available.
|
|
1194
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1195
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1196
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1197
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1198
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1199
|
+
*/
|
|
1200
|
+
type RenderMessageProps, /**
|
|
1201
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1202
|
+
* No 1:1 v2 replacement is available.
|
|
1203
|
+
* Related v2 docs (Chat suggestions): https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1204
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1205
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1206
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1207
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1208
|
+
*/
|
|
1209
|
+
Suggestion as RenderSuggestion, /**
|
|
1210
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1211
|
+
* No 1:1 v2 replacement is available.
|
|
1212
|
+
* Related v2 docs (Chat suggestions): https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1213
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1214
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1215
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1216
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1217
|
+
*/
|
|
1218
|
+
Suggestions as RenderSuggestionsList, /**
|
|
1219
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1220
|
+
* No 1:1 v2 replacement is available.
|
|
1221
|
+
* Related v2 docs (Chat suggestions): https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1222
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1223
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1224
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1225
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1226
|
+
*/
|
|
1227
|
+
type RenderSuggestionsListProps, /**
|
|
1228
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1229
|
+
* No 1:1 v2 replacement is available.
|
|
1230
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1231
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1232
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1233
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1234
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1235
|
+
*/
|
|
1236
|
+
type Renderer, /**
|
|
1237
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1238
|
+
* No 1:1 v2 replacement is available.
|
|
1239
|
+
* Related v2 docs (Chat suggestions): https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1240
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1241
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1242
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1243
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1244
|
+
*/
|
|
1245
|
+
type SuggestionsProps, /**
|
|
1246
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1247
|
+
* Use `UserMessage` from `@copilotkit/react-core/v2` instead.
|
|
1248
|
+
* Import and usage example:
|
|
1249
|
+
* ```ts
|
|
1250
|
+
* import { UserMessage } from "@copilotkit/react-core/v2";
|
|
1251
|
+
* const v2UserMessage = UserMessage;
|
|
1252
|
+
* ```
|
|
1253
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1254
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1255
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1256
|
+
*/
|
|
1257
|
+
UserMessage$1 as UserMessage, /**
|
|
1258
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1259
|
+
* No 1:1 v2 replacement is available.
|
|
1260
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1261
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1262
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1263
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1264
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1265
|
+
*/
|
|
1266
|
+
type UserMessageProps, /**
|
|
1267
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1268
|
+
* No 1:1 v2 replacement is available.
|
|
1269
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1270
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1271
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1272
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1273
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1274
|
+
*/
|
|
1275
|
+
type WindowProps, /**
|
|
1276
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1277
|
+
* No 1:1 v2 replacement is available.
|
|
1278
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1279
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1280
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1281
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1282
|
+
*/
|
|
1283
|
+
shouldShowDevConsole, /**
|
|
1284
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1285
|
+
* No 1:1 v2 replacement is available.
|
|
1286
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1287
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1288
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1289
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1290
|
+
*/
|
|
1291
|
+
suppressDeprecationWarnings, /**
|
|
1292
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1293
|
+
* No 1:1 v2 replacement is available.
|
|
1294
|
+
* Related v2 docs (Chat UI): https://docs.copilotkit.ai/prebuilt-components/chat
|
|
1295
|
+
* Start with `@copilotkit/react-core/v2`.
|
|
1296
|
+
* V2 docs: https://docs.copilotkit.ai/
|
|
1297
|
+
* V2 reference docs: https://docs.copilotkit.ai/reference/v2
|
|
1298
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1299
|
+
*/
|
|
1300
|
+
useChatContext, /**
|
|
1301
|
+
* @deprecated Since 1.68.2. The v1 SDK is deprecated. Use v2 instead.
|
|
1302
|
+
* Use `useConfigureSuggestions` from `@copilotkit/react-core/v2` instead.
|
|
1303
|
+
* Import and usage example:
|
|
1304
|
+
* ```ts
|
|
1305
|
+
* import { useConfigureSuggestions } from "@copilotkit/react-core/v2";
|
|
1306
|
+
* function Suggestions() {
|
|
1307
|
+
* useConfigureSuggestions({
|
|
1308
|
+
* suggestions: [
|
|
1309
|
+
* { title: "Help", message: "Help me get started" },
|
|
1310
|
+
* ],
|
|
1311
|
+
* });
|
|
1312
|
+
* return null;
|
|
1313
|
+
* }
|
|
1314
|
+
* ```
|
|
1315
|
+
* See https://docs.copilotkit.ai/reference/v2/hooks/useConfigureSuggestions
|
|
1316
|
+
* Migration guide: https://docs.copilotkit.ai/migrate/v2
|
|
1317
|
+
*/
|
|
1318
|
+
useCopilotChatSuggestions };
|
|
914
1319
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":";;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/types/suggestions.ts","../src/components/chat/props.ts","../src/components/chat/ChatContext.tsx","../src/components/chat/Chat.tsx","../src/components/chat/Modal.tsx","../src/components/chat/Popup.tsx","../src/components/chat/Sidebar.tsx","../src/components/chat/Markdown.tsx","../src/components/chat/messages/AssistantMessage.tsx","../src/components/chat/messages/UserMessage.tsx","../src/components/chat/messages/ImageRenderer.tsx","../src/components/chat/Suggestions.tsx","../src/components/chat/Suggestion.tsx","../src/components/chat/attachment-utils.ts","../src/components/dev-console/console.tsx","../src/hooks/use-copilot-chat-suggestions.tsx","../src/types/css.ts"],"mappings":"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"}
|