Skip to content

Commit

Permalink
update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Xm0onh committed Jan 9, 2025
1 parent 60e4324 commit 461c33a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion auto-agents-framework/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
characters/
!characters/character.example.ts
*.yaml
!src/config/config.example.yaml
!config/config.example.yaml
.cookies/
dsn-kol-schemas.json
34 changes: 34 additions & 0 deletions auto-agents-framework/config/config.example.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 461c33a

Please sign in to comment.