From 22b9008259fa9bbbfb9dc5accc9d62555c980bdd Mon Sep 17 00:00:00 2001 From: Hermes Date: Sun, 3 May 2026 08:08:30 +0000 Subject: [PATCH] Initial workspace: config + example scenario --- .gitignore | 1 + config.yaml | 37 +++++++++++++++++++++++++++++++++++++ scenarios/example.md | 21 +++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 config.yaml create mode 100644 scenarios/example.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e41f779 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sessions/ diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..84a03d9 --- /dev/null +++ b/config.yaml @@ -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 diff --git a/scenarios/example.md b/scenarios/example.md new file mode 100644 index 0000000..c4a6bfd --- /dev/null +++ b/scenarios/example.md @@ -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?