Skip to content

Quick Start

Secure your AI agent with Cylestio in just a few easy steps.

  1. Install:

    Terminal window
    pip install cylestio-perimeter
  2. Set your Cylestio Access Key

    You can obtain the access key from here.

    Terminal window
    export CYLESTIO_ACCESS_KEY="<your-access-key>"
  3. Create a config.yaml

    For other LLM providers or more examples see here

    server:
    port: 3000
    host: "0.0.0.0"
    llm:
    base_url: "https://api.anthropic.com"
    type: "anthropic"
    interceptors:
    - type: "cylestio_trace"
    enabled: true
    config:
    access_key: "${CYLESTIO_ACCESS_KEY}"
  4. Run Cylestio Perimeter gateway

    Terminal window
    cylestio-perimeter run --config config.yaml
  5. Point your Agent to the Cylestio Perimeter Gateway (change base_url)

    from anthropic import Anthropic
    client = Anthropic(base_url="http://localhost:3000")

    Coming soon