code_timeout_mins is set to 3

This commit is contained in:
Qu Yi 2024-11-10 17:46:18 +08:00
parent a368451614
commit 2322f7857e
2 changed files with 6 additions and 6 deletions

View file

@ -6,23 +6,23 @@ export default
"auth": "offline", // or "microsoft" "auth": "offline", // or "microsoft"
"profiles": [ "profiles": [
"./andy.json", //"./andy.json",
// "./profiles/gpt.json", // "./profiles/gpt.json",
// "./profiles/claude.json", // "./profiles/claude.json",
// "./profiles/gemini.json", // "./profiles/gemini.json",
// "./profiles/llama.json", // "./profiles/llama.json",
// "./profiles/qwen.json", "./profiles/qwen.json",
// using more than 1 profile requires you to /msg each bot indivually // using more than 1 profile requires you to /msg each bot indivually
], ],
"load_memory": false, // load memory from previous session "load_memory": true, // load memory from previous session
"init_message": "Say hello world and your name", // sends to all on spawn "init_message": "Say hello world and your name", // sends to all on spawn
"language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages "language": "en", // translate to/from this language. Supports these language names: https://cloud.google.com/translate/docs/languages
"show_bot_views": false, // show bot's view in browser at localhost:3000, 3001... "show_bot_views": false, // show bot's view in browser at localhost:3000, 3001...
"allow_insecure_coding": false, // allows newAction command and model can write/run code on your computer. enable at own risk "allow_insecure_coding": true, // allows newAction command and model can write/run code on your computer. enable at own risk
"code_timeout_mins": 1, // minutes code is allowed to run. -1 for no timeout,set 1.Set 1 min to timely code adjustments "code_timeout_mins": 3, // minutes code is allowed to run. -1 for no timeout,set 1.Set 1 min to timely code adjustments
"max_messages": 15, // max number of messages to keep in context "max_messages": 15, // max number of messages to keep in context
"max_commands": -1, // max number of commands to use in a response. -1 for no limit "max_commands": -1, // max number of commands to use in a response. -1 for no limit

View file

@ -182,7 +182,7 @@ export class Prompter {
let selected_docs = skill_doc_similarities.slice(0, select_num); let selected_docs = skill_doc_similarities.slice(0, select_num);
let relevant_skill_docs = '#### RELEVENT DOCS INFO ###\nThe following functions are listed in descending order of relevance.\n'; let relevant_skill_docs = '#### RELEVENT DOCS INFO ###\nThe following functions are listed in descending order of relevance.\n';
relevant_skill_docs += 'SkillDocs:\n' relevant_skill_docs += 'SkillDocs:\n'
relevant_skill_docs += '###'+ selected_docs.map(doc => `${doc.doc_key}`).join('\n'); relevant_skill_docs += selected_docs.map(doc => `${doc.doc_key}`).join('\n### ');
return relevant_skill_docs; return relevant_skill_docs;
} }