تغطية الـ Endpoint
يعرض 1 endpoint(s) عامة: 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 إصدارات متاحة
اختر أي نموذج وابدأ التوليد في ثوانٍ.
لا توجد نماذج متاحة الآن.
| المزوّد | OpenAI |
| معرّف النموذج | gpt-live-1 |
| النمط | Audio & Music |
| أنواع المهام | Asynchronous |
| نقطة نهاية API | /v1/live |
| وحدة الفوترة | minute |
| حالة الكتالوج | جاهز للتشغيل |
سجّل مجانًا وأنشئ مفتاح API لـ gpt-live-1 من لوحة التحكم.
أرسل طلب POST إلى /v1/live باستخدام معرّف نموذج gpt-live-1 ومعلماتك.
استطلع المهمة أو اتبع الاستدعاء الراجع لاسترداد نتيجة gpt-live-1 المكتملة.
يعرض 1 endpoint(s) عامة: live.
محسوبة بـ minute دون اشتراط اشتراك.
لم يتم نشر معلمات طلب لنقطة النهاية هذه.
أنشئ موسيقى خلفية خالية من حقوق الملكية ومطابقة لجو الحلقة من دون رسوم ترخيص.
أنشئ منظومات صوتية محيطية ومؤثرات متكيفة للمراحل المُولدة إجرائيًا.
أنشئ تعليقات صوتية مخصصة ومؤثرات صوتية للإعلانات الخاصة بالعملاء من دون استوديو تسجيل.
مرّر معرّف النموذج الظاهر في دليل البدء السريع.
تتدرج حدود المعدل لكل مفتاح بحسب مستوى الاستخدام. راجع صفحة التسعير للاطلاع على الحدود الحالية.
نعم — المتغير مجرد خيار. بدّل عبر تغيير معامل model.
حيثما يتوفر البث، يقدّم RunAPI البث من البداية إلى النهاية.
افتح issue في مستودع GitHub العام أو راسل الدعم عبر البريد الإلكتروني.