@media(max-width:768px){ .sidebar{width:220px;min-width:220px} .chars-grid{grid-template-columns:1fr 1fr;padding:20px} .page-header{padding:24px 20px 20px} .admin-main{padding:24px 20px} .char-editor-grid{grid-template-columns:1fr} } @media(max-width:600px){ .sidebar{display:none} .chars-grid{grid-template-columns:1fr} .profile-hero{flex-direction:column;text-align:center;padding:32px 20px} }
| Avatar | Name | Alter | Persönlichkeit | Status | Aktionen |
|---|
| Name | Registriert | Nachrichten | Status | Aktionen |
|---|
Wähle welcher KI-Dienst für alle Charaktere verwendet werden soll. Die Einstellung gilt sofort für alle Chats.
Gratis-User erhalten täglich eine begrenzte Anzahl Nachrichten (gesamt, über alle Charaktere). Um Mitternacht wird das Limit zurückgesetzt.
Trage deinen Anthropic API Key ein. Er wird SHA-256-gesichert im Browser gespeichert.
MiniMax bietet emotionale, lebendige KI-Antworten — ideal für Flirt-Chats. Trage deinen MiniMax API Key und die Group ID ein.
Für MiniMax in Produktion: lege diese Datei als minimax.php auf deinem cyon-Webspace ab und trage die URL oben ein.
<?php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: POST, OPTIONS');
header('Access-Control-Allow-Headers: Content-Type, Authorization');
header('Content-Type: application/json');
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(204); exit; }
$body = file_get_contents('php://input');
$data = json_decode($body, true);
$apiKey = $data['api_key'] ?? '';
$groupId = $data['group_id'] ?? '';
unset($data['api_key'], $data['group_id']);
$url = "https://api.minimaxi.chat/v1/text/chatcompletion_v2";
$ch = curl_init($url);
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => json_encode($data),
CURLOPT_HTTPHEADER => [
'Content-Type: application/json',
'Authorization: Bearer ' . $apiKey,
]
]);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
http_response_code($httpCode);
echo $response;
Das Passwort wird SHA-256 gehasht gespeichert — nie im Klartext.
Trage deine GTM Container-ID ein (Format: GTM-XXXXXXX). Der Code wird automatisch auf allen Seiten eingefügt.
Alternativ: direkte GA4 Measurement ID (Format: G-XXXXXXXXXX). Wenn du GTM verwendest, lieber dort konfigurieren.