This commit is contained in:
2023-11-02 14:05:52 +00:00
parent 48273a493b
commit 8c3786705e

View File

@@ -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)