Pokrycie endpointów
Udostępnia 1 publiczny(-e) endpoint(-y): live.
curl -X POST https://runapi.ai/v1/live \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-live-1",
"prompt": "Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations."
}'
import { GptClient } from "@runapi.ai/gpt";
const client = new GptClient();
const result = await client.live.run({
model: "gpt-live-1",
prompt: "Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations.",
});
import os
import requests
response = requests.post(
"https://runapi.ai/v1/live",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"gpt-live-1","prompt":"Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations."}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/v1/live");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'gpt-live-1',
'prompt' => 'Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations.',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.live().run({"model":"gpt-live-1","prompt":"Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations."});
task.waitForResult();
require "runapi/gpt"
client = RunApi::Gpt::Client.new
result = client.live.run(
model: "gpt-live-1",
prompt: "Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations."
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.live.Run({"model":"gpt-live-1","prompt":"Analyze this quarterly revenue data and produce a summary with key trends, anomalies, and three recommendations."})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model gpt-live-1 \
--endpoint live \
--wait
17 dostępnych wariantów
Wybierz dowolny model i generuj w kilka sekund.
Brak dostępnych modeli w tej chwili.
| Dostawca | OpenAI |
| ID modelu | gpt-live-1 |
| Modalność | Audio & Music |
| Typy zadań | Asynchronous |
| Endpoint API | /v1/live |
| Jednostka rozliczeniowa | minute |
| Status katalogu | Operacyjny |
Zarejestruj się bezpłatnie i utwórz klucz API dla gpt-live-1 w panelu.
Wyślij żądanie POST do /v1/live z identyfikatorem modelu gpt-live-1 i parametrami.
Odpytywać zadanie lub skorzystaj z callbacku, aby pobrać ukończony wynik gpt-live-1.
Udostępnia 1 publiczny(-e) endpoint(-y): live.
Rozliczane według minute bez wymogu subskrypcji.
Dla tego endpointu nie opublikowano parametrów żądania.
Generuj muzykę w tle bez tantiem, dopasowaną do nastroju odcinka i bez opłat licencyjnych.
Generuj adaptacyjne ambientowe pejzaże dźwiękowe i efekty do proceduralnie generowanych poziomów.
Generuj niestandardowe lektorskie nagrania i efekty dźwiękowe do spotów klienta bez studia nagrań.
Przekaż identyfikator modelu wyświetlony w quickstarcie.
Limity na klucz skalują się wraz z poziomem wykorzystania. Aktualne limity znajdziesz na stronie cennika.
Tak — wariant to flaga. Zmieniasz go, aktualizując parametr model.
Tam, gdzie streaming jest dostępny, RunAPI streamuje end-to-end.
Otwórz issue w publicznym repo na GitHubie albo napisz do supportu.
Pomożemy w konfiguracji dla firm, integracjach i kwestiach technicznych.
Skontaktuj się