The LLAMA AI provides access to a powerful conversational AI developed by Meta AI. It leverages large language models (LLMs) to generate responses based on input queries.
"https://openapi-idk8.onrender.com"
GET `/llama?query=input_query`
Description: Sends an input query to the LLAMA AI to generate a conversational response.
GET `https://openapi-idk8.onrender.com/llama?query=How%20are%20you%3F`
{
"api_name": "LLAMA API",
"description": "A conversational AI developed by Meta AI.",
"author": "OpenAPI",
"conversation_response": "I'm doing well, thank you for asking!"
}
The response contains the API name, description, author, and the generated conversational response from the LLAMA AI.
400 Bad Request: Returned when the required query parameter is missing.
{
"error": "Query is required."
}
500 Internal Server Error: Returned when there is an issue processing the request.
{
"error": "Internal server error."
}