Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.julep.ai/llms.txt

Use this file to discover all available pages before exploring further.

1. Input Schema

First, we define what inputs our task expects:
input_schema:
  type: object
  properties:
    locations:
      type: array
      items:
        type: string
This schema specifies that our task expects an array of location strings (e.g., ["New York", "London", "Paris"]).

Next Step