API Usage Examples

Explore practical examples of using the AgilityAI API endpoints for different use cases.

1. Simple Response Example

Generate a simple response based on a query and context.

{
    "query": "What's the weather like?",
    "context": "The current temperature is 72°F with clear skies."
}

2. Book Generation with Schema Response

This example demonstrates how to generate a book using a multi-step approach:

  1. Generate Book Structure Schema
    {
        "query": "Create a schema for a book structure",
        "context": "The schema should include title, description, and an array of chapters with their titles and descriptions"
    }
  2. Generate Book Content Using Schema
    {
        "query": "Generate a fantasy book outline",
        "context": "Create a book about a magical library",
        "schema": {
            "title": "string",
            "description": "string",
            "chapters": [{
                "title": "string",
                "description": "string"
            }]
        }
    }
  3. Generate Individual Chapters Using Batch Response
    {
        "queries": [
            {
                "query": "Write chapter 1",
                "context": "Book: The Enchanted Archives\nPlot: A magical library where books come alive\nChapter: The Discovery"
            },
            {
                "query": "Write chapter 2",
                "context": "Book: The Enchanted Archives\nPlot: A magical library where books come alive\nChapter: The First Adventure"
            }
        ]
    }