mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-12 13:52:15 +00:00
20 lines
461 B
Python
20 lines
461 B
Python
"""StepFun provider profile."""
|
|
|
|
from providers import register_provider
|
|
from providers.base import ProviderProfile
|
|
|
|
stepfun = ProviderProfile(
|
|
name="stepfun",
|
|
aliases=("step", "stepfun-coding-plan"),
|
|
default_aux_model="step-3.5-flash",
|
|
env_vars=("STEPFUN_API_KEY",),
|
|
base_url="https://api.stepfun.ai/step_plan/v1",
|
|
)
|
|
|
|
register_provider(stepfun)
|
|
|
|
|
|
def register(ctx):
|
|
"""No-op — this provider has no workspace package yet."""
|
|
pass
|
|
|