mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-03 02:11:48 +00:00
successful loop with Hermes-36b, adding docker lib to hermes-agent to manage env sandbox builds
This commit is contained in:
parent
16fb41f9cc
commit
b5b1fef20a
12 changed files with 174 additions and 31 deletions
|
|
@ -65,7 +65,7 @@ class SimpleTestEnvConfig(AgentEnvConfig):
|
|||
description="Base URL for an OpenAI-compatible server (without /v1)",
|
||||
)
|
||||
server_model: str = Field(
|
||||
default="glm-4.7-flash",
|
||||
default="hermes-4-36b",
|
||||
description="Model name",
|
||||
)
|
||||
|
||||
|
|
@ -104,7 +104,7 @@ class SimpleTestEnv(AgentEnv[SimpleTestEnvConfig]):
|
|||
or os.getenv("LLM_BASE_URL")
|
||||
or "http://127.0.0.1:8080"
|
||||
)
|
||||
model = os.getenv("ATROPOS_SERVER_MODEL") or os.getenv("LLM_MODEL") or "glm-4.7-flash"
|
||||
model = os.getenv("ATROPOS_SERVER_MODEL") or os.getenv("LLM_MODEL") or "hermes-4-36b"
|
||||
api_key = os.getenv("ATROPOS_SERVER_API_KEY") or os.getenv("OPENAI_API_KEY") or "local"
|
||||
|
||||
env_config = SimpleTestEnvConfig(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue