Skip to content

Commit ab60a13

Browse files
committedNov 15, 2024
Added working logic for TwitterAgent more clean up to come
1 parent 7118239 commit ab60a13

8 files changed

+1997
-311319
lines changed
 

‎all_files_content.txt

-308,134
This file was deleted.

‎elizaConfig.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Load custom actions from the actions directory
2+
3+
# Clone this into a elizaConfig.yaml file that is ignored by git
4+
5+
# Paths are relative to the core/src directory
6+
7+
plugins:
8+
- name: solana
9+
enabled: true
10+
settings:
11+
network: mainnet-beta
12+
endpoint: https://api.mainnet-beta.solana.com
13+
14+
- name: image-generation
15+
enabled: true
16+
settings:
17+
provider: dalle
18+
size: 1024x1024

‎package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "eliza",
3+
"type": "module",
34
"scripts": {
45
"preinstall": "npx only-allow pnpm",
56
"build": "bash ./scripts/build.sh",
@@ -20,6 +21,8 @@
2021
"lerna": "^8.1.5",
2122
"only-allow": "^1.2.1",
2223
"prettier": "^3.3.3",
24+
"ts-node": "^10.9.2",
25+
"tsx": "^4.19.2",
2326
"typedoc": "^0.26.11",
2427
"typescript": "5.6.3"
2528
},
@@ -34,7 +37,9 @@
3437
"dependencies": {
3538
"ollama-ai-provider": "^0.16.1",
3639
"optional": "^0.1.4",
37-
"sharp": "^0.33.5"
40+
"psql": "^0.0.1",
41+
"sharp": "^0.33.5",
42+
"sqlite3": "^5.1.7"
3843
},
3944
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
4045
}

0 commit comments

Comments
 (0)
Please sign in to comment.