Skip to content

Commit b32cff9

Browse files
committedJan 2, 2025
Merge branch 'main' of github.com:Rahat-ch/eliza
2 parents 74b7176 + 33833cf commit b32cff9

File tree

122 files changed

+10682
-1675
lines changed

Some content is hidden

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

122 files changed

+10682
-1675
lines changed
 

‎.env.example

+15
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=
@@ -162,6 +166,14 @@ LARGE_GAIANET_SERVER_URL= # Default: https://qwen72b.gaia.domains/v1
162166
GAIANET_EMBEDDING_MODEL=
163167
USE_GAIANET_EMBEDDING= # Set to TRUE for GAIANET/768, leave blank for local
164168

169+
# Volcengine Configuration
170+
VOLENGINE_API_URL= # Volcengine API Endpoint, Default: https://open.volcengineapi.com/api/v3/
171+
VOLENGINE_MODEL=
172+
SMALL_VOLENGINE_MODEL= # Default: doubao-lite-128k
173+
MEDIUM_VOLENGINE_MODEL= # Default: doubao-pro-128k
174+
LARGE_VOLENGINE_MODEL= # Default: doubao-pro-256k
175+
VOLENGINE_EMBEDDING_MODEL= # Default: doubao-embedding
176+
165177
# EVM
166178
EVM_PRIVATE_KEY=
167179
EVM_PROVIDER_URL=
@@ -200,6 +212,9 @@ TOGETHER_API_KEY=
200212
# Server Configuration
201213
SERVER_PORT=3000
202214

215+
# Web Search Config
216+
ENABLE_WEBSEARCH=false # boolean value, defaults to false
217+
203218
# Abstract Configuration
204219
ABSTRACT_ADDRESS=
205220
ABSTRACT_PRIVATE_KEY=

‎.github/pull_request_template.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
<!-- Use this template by filling in information and copy and pasting relevant items out of the html comments. -->
1+
<!-- Use this template by filling in information and copying and pasting relevant items out of the HTML comments. -->
22

3-
# Relates to:
3+
# Relates to
44

55
<!-- LINK TO ISSUE OR TICKET -->
66

7-
<!-- This risks section is to be filled out before final review and merge. -->
7+
<!-- This risks section must be filled out before the final review and merge. -->
88

99
# Risks
1010

1111
<!--
12-
Low, medium, large. List what kind of risks, and what could be effected.
12+
Low, medium, large. List what kind of risks and what could be affected.
1313
-->
1414

1515
# Background
@@ -25,7 +25,7 @@ Features (non-breaking change which adds functionality)
2525
Updates (new versions of included code)
2626
-->
2727

28-
<!-- This "Why" section is most relevant if there is no linked issue explaining why. If there is a related issue it might make sense to skip this why section. -->
28+
<!-- This "Why" section is most relevant if there are no linked issues explaining why. If there is a related issue, it might make sense to skip this why section. -->
2929
<!--
3030
## Why are we doing this? Any context or related work?
3131
-->
@@ -35,10 +35,10 @@ Updates (new versions of included code)
3535
<!--
3636
My changes do not require a change to the project documentation.
3737
My changes require a change to the project documentation.
38-
If a docs change is needed: I have updated the documentation accordingly.
38+
If documentation change is needed: I have updated the documentation accordingly.
3939
-->
4040

41-
<!-- Please show how you tested the PR. This will really help if the PR needs to be retested, and probably help the PR get merged quicker. -->
41+
<!-- Please show how you tested the PR. This will really help if the PR needs to be retested and probably help the PR get merged quicker. -->
4242

4343
# Testing
4444

@@ -47,7 +47,7 @@ If a docs change is needed: I have updated the documentation accordingly.
4747
## Detailed testing steps
4848

4949
<!--
50-
None, automated tests are fine.
50+
None: Automated tests are acceptable.
5151
-->
5252

5353
<!--
@@ -63,22 +63,22 @@ None, automated tests are fine.
6363
### After
6464
-->
6565

66-
<!-- If there is anything about the deploy, please make a note. -->
66+
<!-- If there is anything about the deployment, please make a note. -->
6767
<!--
6868
# Deploy Notes
6969
-->
7070

71-
<!--  Copy and paste commandline output. -->
71+
<!--  Copy and paste command line output. -->
7272
<!--
7373
## Database changes
7474
-->
7575

76-
<!--  If there is something more than the automated steps, please specifiy deploy instructions. -->
76+
<!--  Please specify deploy instructions if there is something more than the automated steps. -->
7777
<!--
7878
## Deployment instructions
7979
-->
8080

81-
<!-- If you are on Discord, please join https://discord.gg/ai16z and state your Discord username here for contribute role and join us in #development-feed -->
81+
<!-- If you are on Discord, please join https://discord.gg/ai16z and state your Discord username here for the contributor role and join us in #development-feed -->
8282
<!--
8383
## Discord username
8484

0 commit comments

Comments
 (0)
Please sign in to comment.