FAQs
How to...?
...add an LLM to my agent?
{
"tasks": [
{
"actions": ["send_to_ai"],
"id": "openai_chat",
"type": "openai",
"parameters": {
"apiKey": "${eddivault:OPENAI_KEY}",
"modelName": "gpt-4o",
"systemMessage": "You are a helpful assistant",
"sendConversation": "true",
"addToOutput": "true"
}
}
]
}...store API keys securely?
...use context to pass data from my app?
...set up monitoring?
...deploy to Kubernetes?
...start a conversation with a welcome / intro message?
1) Match for the action CONVERSATION_START
CONVERSATION_START2) Check if the triggered action has never been triggered before
3) Check how often this rule has succeeded before
Output set:
...say something based on what the agent previously said?
Check whether a certain action had been triggered in the previous conversation step.
action had been triggered in the previous conversation step.Last updated
Was this helpful?