L
Configuration

Workspace Settings

Manage your enterprise integration keys, security access controls, and workspace configurations.

Enterprise API Keys

Use these secret keys to authenticate your autonomous AI agents with Aegisora proxy.

Designation
Secret Token
Created Date
Production Key
aeg_live_9f8...cdef
Oct 24, 2026

Quick SDK Integration

Wrap your existing LLM calls with the Aegisora SDK to enforce runtime guardrails.

Node.js (TypeScript)
v2.4.1-secure
import { Aegisora } from '@aegisora/sdk';

// Initialize proxy client with enterprise perimeter credentials
const aegisora = new Aegisora({
apiKey: process.env.AEGISORA_SECRET_KEY,
agentId: 'AGT-1042'
});

// Aegisora intercepts tool calls and inspects prompts at runtime
const response = await aegisora.chat.completions.create({
model: "gpt-4o",
messages: [{ role: "user", content: userInput }]
});