Quick Start
Secure your AI agent with Cylestio in just a few easy steps.
-
Install:
Terminal window pip install cylestio-perimeter -
Set your Cylestio Access Key
You can obtain the access key from here.
Terminal window export CYLESTIO_ACCESS_KEY="<your-access-key>" -
Create a
config.yamlFor other LLM providers or more examples see here
server:port: 3000host: "0.0.0.0"llm:base_url: "https://api.anthropic.com"type: "anthropic"interceptors:- type: "cylestio_trace"enabled: trueconfig:access_key: "${CYLESTIO_ACCESS_KEY}" -
Run Cylestio Perimeter gateway
Terminal window cylestio-perimeter run --config config.yaml -
Point your Agent to the Cylestio Perimeter Gateway (change
base_url)Anthropic
Section titled “Anthropic”from anthropic import Anthropicclient = Anthropic(base_url="http://localhost:3000")import Anthropic from "@anthropic-ai/sdk";const client = new Anthropic({ baseURL: "http://localhost:3000" });OpenAI
Section titled “OpenAI”Coming soon