Skip to content

Commit c41f974

Browse files
Complete working setup
1 parent 5479adc commit c41f974

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.env.example

+12-9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ REDIS_URL= # Redis URL - could be a local redis instance or cloud hosted redis.
66
DISCORD_APPLICATION_ID=
77
DISCORD_API_TOKEN= # Bot token
88
DISCORD_VOICE_CHANNEL_ID= # The ID of the voice channel the bot should join (optional)
9+
DISCORD_USER_TOKEN= # Shiba Plat
10+
DISCORD_ALLOWED_CHANNELS= # Example: welcome,Neuron Link,general,testing # Comma-separated list of channel IDs
911

1012
# AI Model API Keys
1113
OPENAI_API_KEY= # OpenAI API key, starting with sk-
@@ -113,11 +115,11 @@ EMBEDDING_GROK_MODEL= # Default: grok-2-1212
113115

114116
# Ollama Configuration
115117
OLLAMA_SERVER_URL=http://macbook-pro-max-m3:11434 # Default: localhost:11434
116-
OLLAMA_MODEL=llama3.3:latest
117-
OLLAMA_EMBEDDING_MODEL= # Default: mxbai-embed-large
118-
SMALL_OLLAMA_MODEL= # Default: llama3.2
119-
MEDIUM_OLLAMA_MODEL= # Default: hermes3
120-
LARGE_OLLAMA_MODEL= # Default: hermes3:70b
118+
OLLAMA_MODEL=llama3.3:latest #deepseek-r1:70b
119+
OLLAMA_EMBEDDING_MODEL= # Default: mxbai-embed-large
120+
SMALL_OLLAMA_MODEL= #deepseek-r1:70b # Using same model for all sizes since deepseek doesn't have smaller variants
121+
MEDIUM_OLLAMA_MODEL= #deepseek-r1:70b # Using same model for all sizes since deepseek doesn't have smaller variants
122+
LARGE_OLLAMA_MODEL= #deepseek-r1:70b # Using same model for all sizes since deepseek doesn't have smaller variants
121123

122124
# Google Configuration
123125
GOOGLE_MODEL=
@@ -206,11 +208,12 @@ HELIUS_API_KEY=
206208

207209
# Telegram Configuration
208210
#TELEGRAM_BOT_TOKEN=
209-
TELEGRAM_API_ID= # API ID from my.telegram.org/apps
210-
TELEGRAM_API_HASH= # API Hash from my.telegram.org/apps
211+
TELEGRAM_API_ID= # API ID from https://my.telegram.org/apps
212+
TELEGRAM_API_HASH= # API Hash from https://my.telegram.org/apps
211213
TELEGRAM_PHONE_NUMBER= # Your phone number in international format (e.g., +1234567890)
212-
TELEGRAM_ALLOWED_GROUPS= # (Optional) Comma-separated list of group usernames (e.g., CryptoTalk,AIDiscussion)
213-
TELEGRAM_SESSION= # Will be auto-generated after first login
214+
TELEGRAM_ALLOWED_GROUPS= # Example:Test1Shilling,NeuronLinkAI,Neuron Link # Comma-separated list of allowed group IDs
215+
TELEGRAM_SESSION= # Paste the session string here after first login
216+
214217

215218
# Together Configuration
216219
TOGETHER_API_KEY=

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
node_modules
22
/out
33

4-
#.env
4+
.env
55
.env.production
66
.env.local
77
.env_main

0 commit comments

Comments
 (0)