Skip to main content
ponnuchama617877
Known Participant
September 9, 2026
Question

Chat Agent is not rendering the result as expected

  • September 9, 2026
  • 6 replies
  • 33 views

Hi Team, I am facing an issue while using AI Chat Agent. I have created a chat agent and plugged in with an interface rule. When I start with conversation, it has started and entered into “Thinking” status and not producing the response even though the instance is completed successfully (I checked it via Monitor tab). How to fix this issue? Is this issue specific to my appian enviornment (Current version is 26.6)?

For one of the instances, I did not get the response even after waiting for more than 5 hours. Please refer to the attached screenshots for your reference.

 

Note, Is there any possibility to test a chat agent before integrating with an interface rule? Currently, we able to test Process Agents before we integrate them with a process model.

6 replies

mathieud0001
Brainy
September 9, 2026
ponnuchama617877
Known Participant
September 10, 2026

Hi ​@mathieud0001,

    In the monitoring tab, I can see the expected results, and I have attached the screenshot as well (The output variable “chatResponse” has the value produced by Chat Agent). But, the same is not getting reflected in the UI where its plugged in.

harshas2775
Brainy
September 10, 2026

I dont think your agent needs any input - input is like a context to the agent ex record type! See what happens if you have a simple code like or follow the examples here

a!agentChatField(
title: "Ask a question",
agent: agent!MY_CHAT_AGENT,
placeholder: "Type your question here..."
)

 

ponnuchama617877
Known Participant
September 10, 2026

Hi ​@harshas2775,

    I tried it and getting the same response from chat agent i.e. It's not rendering the result and its keep on thinking. In monitoring tab of that chat agent, it produced the results within 4 seconds.

harshas2775
Brainy
September 10, 2026

your output variable is named as chatResponse right? Can you modify the saveInto in your code as and see if the variable gets updated in interface

a!save(local!agentOp,save!value.chatResponse)