Wenn Sie Ihre kostenlosen KI-Credits aufgebraucht haben, können Sie jederzeit mehr bekommen. Hier können Sie zusätzliche Credits erhalten und alle Informationen über KI-Credits erfahren.
KI-Credits sind digitale Token, die für KI-Chat-Anfragen eingetauscht werden können. Jede Anfrage kostet eine bestimmte Menge an Credits. Die Kosten werden auf der Grundlage der Länge der Anfragen und ihrer Antworten berechnet, wie in der Preisliste angegeben.
Jede Code-Editor-Lizenz enthält 300 kostenlose KI-Credits, die für etwa 100 bis 300 KI-Chat-Anfragen durchschnittlicher Länge ausreichen. Benutzer der Testversion erhalten 50 kostenlose Credits. Sie können zusätzliche Credits auf dieser Seite erwerben.
KI-Abfragen sind ein kostenpflichtiger Dienst, der von Drittanbietern von KI-Infrastruktur bereitgestellt wird. Außerdem fallen bei der KI-Integration laufende Kosten für Cloud-Hosting und Wartung an. Im Gegensatz zu unseren Mitbewerbern berechnen wir keine wiederkehrenden Gebühren, sodass Sie immer noch das beste Preis-Leistungsverhältnis erhalten.
Die Kosten für KI-Dienste richten sich nach der Länge der Anfrage und der Antwort sowie nach dem eingesetzten KI-Modell. Längere Abfragen und Antworten sind teurer. Da die KI-Dienste von Drittanbietern bereitgestellt werden, basiert unsere Preisgestaltung auf den von unseren KI-Infrastrukturanbietern festgelegten Kosten. Unser Anbieter, OpenAI, misst zum Beispiel die Nutzung in „Token“, wobei 1000 Token ungefähr 750 Wörtern entsprechen.
Mindestgebühr für Anfragen
1 KI-Credit
3K GPT-4.1 mini Tokens (ca. 2200 Wörter)
1 KI-Credit
600 GPT-4.1 Tokens (ca. 450 Wörter)
1 KI-Credit
8K GPT-4 mini Tokens (ca. 6000 Wörter)
1 KI-Credit
500 GPT-4 Tokens (ca. 375 Wörter)
1 KI-Credit
1K o3-mini-high Tokens (ca. 750 Wörter)
1 KI-Credit
400 Sonnet Tokens (ca. 300 Wörter)
1 KI-Credit
1K DeepSeek-R1 Tokens (ca. 750 Wörter)
1 KI-Credit
* Die Preise sind ungefähr und hängen stark von der Eingabe- und Ausgabelänge ab. Neue Modelle können hinzugefügt und alte Modelle entfernt werden, noch bevor diese Seite aktualisiert wird.
.button {
transition: transform 0.3s ease;
}
.button:hover {
transform: scale(1.1);
}
1 KI-Credit
function canDownloadAndFindKeyword($url, $keyword) {
// Set a reasonable timeout for the request
$timeout = 10; // Timeout in seconds
// Initialize a cURL session
$ch = curl_init($url);
// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the transfer as a string
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Follow redirects
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); // Set the timeout
// Execute the cURL session
$content = curl_exec($ch);
// Check for errors and if the keyword exists in the content
$noErrors = curl_errno($ch) === 0;
$keywordFound = strpos($content, $keyword) !== false;
// Close cURL session
curl_close($ch);
// Return true if no errors and keyword found, false otherwise
return $noErrors && $keywordFound;
}
This function uses cURL to fetch the content from the provided URL and checks if the keyword is present. It handles errors silently by returning false
if any cURL error occurs or if the keyword is not found. The function also follows any redirects and has a timeout set to avoid long waits.
1 KI-Credit
.button {
transition: all 0.3s ease;
}
.button:hover {
transform: scale(1.2);
}
1 KI-Credit
Sure! Here's an example of a function that takes a URL and a keyword as parameters and checks if the URL can be downloaded and if the keyword can be found:
function checkUrlForKeyword($url, $keyword) {
// Set the timeout duration in seconds
$timeout = 10;
// Create a cURL handle
$curl = curl_init();
// Set the cURL options
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
// Execute the cURL request
$response = curl_exec($curl);
// Check if any error occurred during the request
if (curl_errno($curl)) {
curl_close($curl);
return false;
}
// Close the cURL handle
curl_close($curl);
// Check if the response contains the keyword
if (strpos($response, $keyword) !== false) {
return true;
}
return false;
}
You can use this function by passing the URL and keyword as arguments. It will return true
if the URL can be downloaded and the keyword is found in the response, otherwise it will return false
. The function also handles silent errors and timeouts using cURL.
1 KI-Credit