Simple reference for the available endpoints.
Returns dictionary meanings for a word.
Method: GET
Example:
GET /lookup/test
Response:
{
"word": "test",
"meanings": ["..."]
}
Errors:
{
"error": "not found"
}
Asks the AI model a question.
Method: GET
Example:
GET /ai/question/what%20is%20linux
Response:
{
"answer": "..."
}