From 461c33a584b1a221d6f9f36fc117b73caf1cce62 Mon Sep 17 00:00:00 2001 From: xm0onh Date: Wed, 8 Jan 2025 19:27:31 -0800 Subject: [PATCH] update .gitignore --- auto-agents-framework/.gitignore | 2 +- .../config/config.example.yaml | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 auto-agents-framework/config/config.example.yaml diff --git a/auto-agents-framework/.gitignore b/auto-agents-framework/.gitignore index cd91a1a..5effeac 100644 --- a/auto-agents-framework/.gitignore +++ b/auto-agents-framework/.gitignore @@ -1,6 +1,6 @@ characters/ !characters/character.example.ts *.yaml -!src/config/config.example.yaml +!config/config.example.yaml .cookies/ dsn-kol-schemas.json diff --git a/auto-agents-framework/config/config.example.yaml b/auto-agents-framework/config/config.example.yaml new file mode 100644 index 0000000..a4e49d2 --- /dev/null +++ b/auto-agents-framework/config/config.example.yaml @@ -0,0 +1,34 @@ +twitter: + NUM_TIMELINE_TWEETS: 10 + NUM_FOLLOWING_RECENT_TWEETS: 10 + NUM_RANDOM_FOLLOWERS: 5 + MAX_MENTIONS: 20 + MAX_THREAD_LENGTH: 20 + MAX_MY_RECENT_TWEETS: 10 + MAX_MY_RECENT_REPLIES: 10 + RESPONSE_INTERVAL_MS: 3600000 + POST_INTERVAL_MS: 5400000 + POST_TWEETS: false + +llm: + configuration: + large: + provider: "anthropic" + model: "claude-3-5-sonnet-latest" + small: + provider: "openai" + model: "gpt-4o-mini" + + nodes: + decision: + size: "small" + temperature: 0.2 + analyze: + size: "large" + temperature: 0.5 + generation: + size: "large" + temperature: 0.8 + response: + size: "small" + temperature: 0.8 \ No newline at end of file