@trustgraph/react-state 1.4.1 → 1.4.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 +1 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/state/conversation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -150,12 +150,7 @@ const useSessionStore = zustand.create()((set) => ({
|
|
|
150
150
|
}));
|
|
151
151
|
|
|
152
152
|
const useConversation = zustand.create()((set) => ({
|
|
153
|
-
messages: [
|
|
154
|
-
{
|
|
155
|
-
role: "ai",
|
|
156
|
-
text: "Welcome to the TrustGraph Test Suite. Use the chat interface to perform Graph RAG requests.",
|
|
157
|
-
},
|
|
158
|
-
],
|
|
153
|
+
messages: [],
|
|
159
154
|
input: "",
|
|
160
155
|
chatMode: "graph-rag",
|
|
161
156
|
setMessages: (v) => set(() => ({
|