Quick Interaction
ArcheAI Framework provides an easy way to interact with agents hosted on its backend API at https://api.arche.com. Users can interact with agents using GET, POST.
curl "https://api.qude.ai/api/agent/{agentName}/interact?message=Hello!"curl "https://api.qude.ai/api/agent/Ayra/interact?message=Hello!"{
"agentName": "Ayra",
"response": "Hello! How can I assist you today?"
}curl -X POST "https://api.qude.ai/api/agent/{agentName}/interact" \
-H "Content-Type: application/json" \
-d '{"message": "Hello, Ayra?"}'Last updated