We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7355ce3 commit 8dcddaaCopy full SHA for 8dcddaa
spring-ai-alibaba-jmanus/ui-vue3/src/views/direct/index.vue
@@ -256,7 +256,9 @@ onMounted(() => {
256
nextTick(() => {
257
if (chatRef.value && typeof chatRef.value.handleSendMessage === 'function') {
258
console.log('[Direct] Directly executing task via chatRef.handleSendMessage:', taskContent)
259
- chatRef.value.handleSendMessage(taskContent)
+ chatRef.value.handleSendMessage({
260
+ input: taskContent
261
+ })
262
} else {
263
console.warn('[Direct] chatRef.handleSendMessage method not available, falling back to prompt')
264
prompt.value = taskContent
0 commit comments