mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-14 14:12:44 +00:00
19 lines
400 B
Python
19 lines
400 B
Python
"""Arcee AI provider profile."""
|
|
|
|
from providers import register_provider
|
|
from providers.base import ProviderProfile
|
|
|
|
arcee = ProviderProfile(
|
|
name="arcee",
|
|
aliases=("arcee-ai", "arceeai"),
|
|
env_vars=("ARCEEAI_API_KEY",),
|
|
base_url="https://api.arcee.ai/api/v1",
|
|
)
|
|
|
|
register_provider(arcee)
|
|
|
|
|
|
def register(ctx):
|
|
"""No-op — this provider has no workspace package yet."""
|
|
pass
|
|
|