Initial workspace: config + example scenario

This commit is contained in:
Hermes
2026-05-03 08:08:30 +00:00
commit 22b9008259
3 changed files with 59 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
sessions/

37
config.yaml Normal file
View File

@@ -0,0 +1,37 @@
defaults:
framework: custom
max_rounds: 8
workdir: ..
providers:
routerai:
api_key: ${MEETING_ROOM_ROUTERAI_API_KEY}
base_url: ${MEETING_ROOM_ROUTERAI_BASE_URL}
roles:
analyst:
model: gpt-4o-mini
name: Analyst
provider: routerai
system_prompt: You are an analyst.
temperature: 0.5
tools: all
idea_generator:
model: gpt-4o-mini
name: Idea Generator
provider: routerai
system_prompt: You are a creative idea generator.
temperature: 1.0
tools: web
moderator:
model: gpt-4o-mini
name: Moderator
provider: routerai
system_prompt: You are the moderator of a discussion.
temperature: 0.7
tools: none
skeptic:
model: gpt-4o-mini
name: Skeptic
provider: routerai
system_prompt: You are a skeptic and critic.
temperature: 0.9
tools: readonly

21
scenarios/example.md Normal file
View File

@@ -0,0 +1,21 @@
---
name: "Example Discussion"
participants:
- moderator
- skeptic
- idea_generator
- analyst
max_rounds: 6
---
# Problem Title
Describe the problem here in Markdown...
## Context
- Factor 1
- Factor 2
## Questions
1. Question 1?
2. Question 2?