الانتقال إلى المحتوى الرئيسي

Documentation Index

Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt

Use this file to discover all available pages before exploring further.

OpenClaw يتضمن Plugin موفر StepFun مضمنا مع معرفي موفر:
  • stepfun لنقطة النهاية القياسية
  • stepfun-plan لنقطة نهاية Step Plan
الموفر القياسي وStep Plan هما موفران منفصلان بنقاط نهاية مختلفة وبادئات مختلفة لمراجع النماذج (stepfun/... مقابل stepfun-plan/...). استخدم مفتاح الصين مع نقاط نهاية .com ومفتاحا عالميا مع نقاط نهاية .ai.

نظرة عامة على المنطقة ونقطة النهاية

نقطة النهايةالصين (.com)عالمي (.ai)
قياسيhttps://api.stepfun.com/v1https://api.stepfun.ai/v1
Step Planhttps://api.stepfun.com/step_plan/v1https://api.stepfun.ai/step_plan/v1
متغير بيئة المصادقة: STEPFUN_API_KEY

الكتالوج المضمن

قياسي (stepfun):
مرجع النموذجالسياقالحد الأقصى للإخراجملاحظات
stepfun/step-3.5-flash262,14465,536النموذج القياسي الافتراضي
Step Plan (stepfun-plan):
مرجع النموذجالسياقالحد الأقصى للإخراجملاحظات
stepfun-plan/step-3.5-flash262,14465,536نموذج Step Plan الافتراضي
stepfun-plan/step-3.5-flash-2603262,14465,536نموذج Step Plan إضافي

البدء

اختر سطح الموفر واتبع خطوات الإعداد.
الأفضل لـ: الاستخدام العام عبر نقطة نهاية StepFun القياسية.
1

Choose your endpoint region

خيار المصادقةنقطة النهايةالمنطقة
stepfun-standard-api-key-intlhttps://api.stepfun.ai/v1دولية
stepfun-standard-api-key-cnhttps://api.stepfun.com/v1الصين
2

Run onboarding

openclaw onboard --auth-choice stepfun-standard-api-key-intl
أو لنقطة نهاية الصين:
openclaw onboard --auth-choice stepfun-standard-api-key-cn
3

Non-interactive alternative

openclaw onboard --auth-choice stepfun-standard-api-key-intl \
  --stepfun-api-key "$STEPFUN_API_KEY"
4

Verify models are available

openclaw models list --provider stepfun

مراجع النماذج

  • النموذج الافتراضي: stepfun/step-3.5-flash

الإعدادات المتقدمة

{
  env: { STEPFUN_API_KEY: "your-key" },
  agents: { defaults: { model: { primary: "stepfun/step-3.5-flash" } } },
  models: {
    mode: "merge",
    providers: {
      stepfun: {
        baseUrl: "https://api.stepfun.ai/v1",
        api: "openai-completions",
        apiKey: "${STEPFUN_API_KEY}",
        models: [
          {
            id: "step-3.5-flash",
            name: "Step 3.5 Flash",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
        ],
      },
    },
  },
}
{
  env: { STEPFUN_API_KEY: "your-key" },
  agents: { defaults: { model: { primary: "stepfun-plan/step-3.5-flash" } } },
  models: {
    mode: "merge",
    providers: {
      "stepfun-plan": {
        baseUrl: "https://api.stepfun.ai/step_plan/v1",
        api: "openai-completions",
        apiKey: "${STEPFUN_API_KEY}",
        models: [
          {
            id: "step-3.5-flash",
            name: "Step 3.5 Flash",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
          {
            id: "step-3.5-flash-2603",
            name: "Step 3.5 Flash 2603",
            reasoning: true,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 262144,
            maxTokens: 65536,
          },
        ],
      },
    },
  },
}
  • الموفر مضمن مع OpenClaw، لذلك لا توجد خطوة تثبيت Plugin منفصلة.
  • step-3.5-flash-2603 متاح حاليا فقط على stepfun-plan.
  • يكتب مسار مصادقة واحد ملفات تعريف مطابقة للمنطقة لكل من stepfun وstepfun-plan، لذلك يمكن اكتشاف السطحين معا.
  • استخدم openclaw models list وopenclaw models set <provider/model> لفحص النماذج أو تبديلها.
للاطلاع على النظرة العامة الأوسع للموفرين، راجع موفري النماذج.

ذات صلة

Model selection

نظرة عامة على جميع الموفرين ومراجع النماذج وسلوك تجاوز الفشل.

Configuration reference

مخطط الإعدادات الكامل للموفرين والنماذج والـ plugins.

Model selection

كيفية اختيار النماذج وإعدادها.

StepFun Platform

إدارة مفتاح API الخاص بـ StepFun والوثائق.