Dmitry Beresnev commited on
Commit
3836b4f
·
1 Parent(s): d51edae

add bot config

Browse files
Files changed (2) hide show
  1. clawdbot_config.json +19 -0
  2. dockerfile +1 -1
clawdbot_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vault_path": "/app/vault",
3
+ "llm_api": {
4
+ "base_url": "https://researchengineering-agi.hf.space",
5
+ "model": "deepseek-chat"
6
+ },
7
+ "on_new_note": "/app/scripts/push_note.sh",
8
+ "voice": {
9
+ "enabled": true,
10
+ "model": "openai/whisper-small"
11
+ },
12
+ "telegram": {
13
+ "enabled": false
14
+ },
15
+ "memory": {
16
+ "type": "in_memory",
17
+ "max_tokens": 500
18
+ }
19
+ }
dockerfile CHANGED
@@ -17,7 +17,7 @@ COPY . .
17
  EXPOSE 7860
18
 
19
  # Environment variables
20
- ENV LLM_API_BASE="https://researchengineering-agi.hf.space/v1/chat/completions"
21
  ENV LLM_MODEL="deepseek-chat"
22
  #ENV VAULT_REPO="https://researchengineering-agi-assistant.hf.space.git"
23
  ENV VAULT_PATH="/app/vault"
 
17
  EXPOSE 7860
18
 
19
  # Environment variables
20
+ ENV LLM_API_BASE="https://researchengineering-agi.hf.space"
21
  ENV LLM_MODEL="deepseek-chat"
22
  #ENV VAULT_REPO="https://researchengineering-agi-assistant.hf.space.git"
23
  ENV VAULT_PATH="/app/vault"