Skip to content

Commit cf02297

Browse files
authored
Merge branch 'develop' into fix/postgres-adapter-schema-check
2 parents 3e89598 + 2b6c6a9 commit cf02297

File tree

64 files changed

+4338
-2047
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+4338
-2047
lines changed

.env.example

+8-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ LIVEPEER_IMAGE_MODEL= # Default: ByteDance/SDXL-Lightning
4343
# Speech Synthesis
4444
ELEVENLABS_XI_API_KEY= # API key from elevenlabs
4545

46+
# Transcription Provider
47+
TRANSCRIPTION_PROVIDER= # Default: local (possible values: openai, deepgram, local)
48+
4649
# Direct Client Setting
4750
EXPRESS_MAX_PAYLOAD= # Default: 100kb
4851

@@ -67,6 +70,7 @@ TWITTER_POLL_INTERVAL=120 # How often (in seconds) the bot should check fo
6770
TWITTER_SEARCH_ENABLE=FALSE # Enable timeline search, WARNING this greatly increases your chance of getting banned
6871
TWITTER_TARGET_USERS= # Comma separated list of Twitter user names to interact with
6972
TWITTER_RETRY_LIMIT= # Maximum retry attempts for Twitter login
73+
TWITTER_SPACES_ENABLE=false # Enable or disable Twitter Spaces logic
7074

7175
X_SERVER_URL=
7276
XAI_API_KEY=
@@ -208,6 +212,9 @@ TOGETHER_API_KEY=
208212
# Server Configuration
209213
SERVER_PORT=3000
210214

215+
# Web Search Config
216+
ENABLE_WEBSEARCH=false # boolean value, defaults to false
217+
211218
# Abstract Configuration
212219
ABSTRACT_ADDRESS=
213220
ABSTRACT_PRIVATE_KEY=
@@ -349,7 +356,7 @@ AWS_S3_UPLOAD_PATH=
349356
DEEPGRAM_API_KEY=
350357

351358
# Sui
352-
SUI_PRIVATE_KEY= # Sui Mnemonic Seed Phrase (`sui keytool generate ed25519`)
359+
SUI_PRIVATE_KEY= # Sui Mnemonic Seed Phrase (`sui keytool generate ed25519`) , Also support `suiprivatekeyxxxx` (sui keytool export --key-identity 0x63)
353360
SUI_NETWORK= # must be one of mainnet, testnet, devnet, localnet
354361

355362
# Story

.github/workflows/integrationTests.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
2424
node-version: "23"
2525
cache: "pnpm"
2626

27+
- name: Clean up
28+
run: pnpm clean
29+
2730
- name: Install dependencies
28-
run: pnpm install -r
31+
run: pnpm install -r --no-frozen-lockfile
2932

3033
- name: Build packages
3134
run: pnpm build

.gitignore

+57-57
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
1-
node_modules
2-
/out
3-
4-
.env
5-
.env.production
6-
.env.local
7-
.env_main
8-
concatenated-output.ts
9-
embedding-cache.json
10-
packages/plugin-buttplug/intiface-engine
11-
12-
.idea
13-
.DS_Store
14-
15-
dist/
16-
# Allow models directory but ignore model files
17-
models/*.gguf
18-
19-
cookies.json
20-
21-
db.sqlite
22-
searches/
23-
tweets/
24-
25-
*.gguf
26-
*.onnx
27-
*.wav
28-
*.mp3
29-
30-
logs/
31-
32-
test-report.json
33-
content_cache/
34-
test_data/
35-
tokencache/
36-
tweetcache/
37-
twitter_cookies.json
38-
timeline_cache.json
39-
40-
*.sqlite
41-
42-
characters/
43-
44-
packages/core/src/providers/cache
45-
packages/core/src/providers/cache/*
46-
cache/*
47-
packages/plugin-coinbase/src/plugins/transactions.csv
48-
49-
tsup.config.bundled_*.mjs
50-
51-
.turbo
52-
.cursorrules
53-
54-
coverage
55-
.eslintcache
56-
57-
agent/content
1+
node_modules
2+
/out
3+
4+
.env
5+
.env.production
6+
.env.local
7+
.env_main
8+
concatenated-output.ts
9+
embedding-cache.json
10+
packages/plugin-buttplug/intiface-engine
11+
12+
.idea
13+
.DS_Store
14+
15+
dist/
16+
# Allow models directory but ignore model files
17+
models/*.gguf
18+
19+
cookies.json
20+
21+
db.sqlite
22+
searches/
23+
tweets/
24+
25+
*.gguf
26+
*.onnx
27+
*.wav
28+
*.mp3
29+
30+
logs/
31+
32+
test-report.json
33+
content_cache/
34+
test_data/
35+
tokencache/
36+
tweetcache/
37+
twitter_cookies.json
38+
timeline_cache.json
39+
40+
*.sqlite
41+
42+
characters/
43+
44+
packages/core/src/providers/cache
45+
packages/core/src/providers/cache/*
46+
cache/*
47+
packages/plugin-coinbase/src/plugins/transactions.csv
48+
49+
tsup.config.bundled_*.mjs
50+
51+
.turbo
52+
.cursorrules
53+
54+
coverage
55+
.eslintcache
56+
57+
agent/content

CHANGELOG.md

+142-3
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)