Обзор системы
System Live
key
Ваш Proxy-ключ
Active
---
swap_horiz
Запросов
0
verified_user
ПДн защищено
0
token
LLM-токенов
0
vpn_key
Ключи LLM-провайдеров
Не настроен
Не настроен
Не настроен
auto_fix_high
Live Demo — Анонимизация
Результат
integration_instructions
Быстрый старт
main.py
from openai import OpenAI
client = OpenAI(
api_key="your-proxy-key",
base_url="https://anonymize-api.example.com/v1"
)
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Проанализируй клиента..."}]
)
print(response.choices[0].message.content)