Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: x services #43

Merged
merged 20 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ coverage/
*.mp3

**/temp/

twitter-session.json
1 change: 1 addition & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ words:
- baiducloud
- bigserial
- Bitstream
- browserbasehq
- bumpp
- catppuccin
- changelogithub
Expand Down
766 changes: 692 additions & 74 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions services/twitter-services/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Browser Config
BROWSER_HEADLESS=false
BROWSER_USER_AGENT=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
BROWSER_VIEWPORT_WIDTH=1280
BROWSER_VIEWPORT_HEIGHT=800
BROWSER_TIMEOUT=30000
BROWSER_REQUEST_TIMEOUT=20000
BROWSER_REQUEST_RETRIES=2

# Adapter Config
ENABLE_AIRI=false
AIRI_URL=http://localhost:3000
AIRI_TOKEN=your_airi_token

ENABLE_MCP=true
MCP_PORT=8080

# System Config
LOG_LEVEL=info # Optional: error, warn, info, verbose, debug
LOG_FORMAT=pretty # Optional: json, pretty
CONCURRENCY=1
Loading