diff --git a/src/components/ChattyLLM/ConversationBox.vue b/src/components/ChattyLLM/ConversationBox.vue index 5fbf5235d..c73e03089 100644 --- a/src/components/ChattyLLM/ConversationBox.vue +++ b/src/components/ChattyLLM/ConversationBox.vue @@ -91,7 +91,7 @@ export default { return { regenerateFromId: null, deleteMessageId: null, - informationSourceNames: loadState('assistant', 'contextAgentToolSources'), + informationSourceNames: loadState('assistant', 'contextAgentToolSources', {}), } }, diff --git a/src/components/ChattyLLM/Message.vue b/src/components/ChattyLLM/Message.vue index d2111805e..ff776294c 100644 --- a/src/components/ChattyLLM/Message.vue +++ b/src/components/ChattyLLM/Message.vue @@ -136,7 +136,7 @@ export default { default: false, }, informationSourceNames: { - type: Array, + type: Object, default: null, }, },