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.
Methods of Interaction
1. GET Method
You can send a message to an agent using a simple GET request.
Example:
Replace
{agentName}
with the name of your agent.Replace
Hello!
with the message you want to send.
Example Request:
Example Response:
2. POST Method
For more structured interactions, you can use the POST method with a JSON body.
Example:
Replace
{agentName}
with the name of your agent.Modify the
message
field in the JSON body with your query.
Example Request:
Example Response:
Last updated