From 8c3786705e533002fe9c80b8d4cc29512544dcbe Mon Sep 17 00:00:00 2001 From: tonaerospace Date: Thu, 2 Nov 2023 14:05:52 +0000 Subject: [PATCH] typo --- src/interface.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface.jl b/src/interface.jl index b1c5fd6..e3e2f55 100755 --- a/src/interface.jl +++ b/src/interface.jl @@ -267,11 +267,11 @@ function identifyUserIntention(a::agent, usermsg::String) Question: {input} """ - identify_usermsg = replace(identifymsgPrompt, "{input}" => usermsg) + identify_usermsg = replace(identify_usermsg, "{input}" => usermsg) msg = Dict( :msgMeta=> a.msgMeta, - :txt=> identifymsgPrompt, + :txt=> identify_usermsg, ) payloadChannel = Channel(1)