import Anthropic from "@anthropic-ai/sdk";import { AdmissibleClient } from "@admissible-ai/sdk";import { createAdmissibleAnthropic } from "@admissible-ai/anthropic";const anthropic = new Anthropic({ apiKey: process.env.ANTHROPIC_API_KEY,});const admissible = new AdmissibleClient({ baseUrl: process.env.ADMISSIBLE_API_URL, apiKey: process.env.ADMISSIBLE_API_KEY,});const client = createAdmissibleAnthropic({ anthropic, admissible, agentId: "claude-tool-agent", sessionId: "session-123", environmentName: "staging", tools: [readReleaseStatus, sendCustomerEmail],});const response = await client.messages.create({ model: "claude-sonnet-4-5", max_tokens: 1024, messages: [ { role: "user", content: "Check payments and send the customer email if it is ready.", }, ],});