Add split_on_marker config option
This commit is contained in:
parent
859827cbfe
commit
1519756a7e
1 changed files with 9 additions and 30 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
"max_tool_iterations": 20,
|
"max_tool_iterations": 20,
|
||||||
"summarize_message_threshold": 20,
|
"summarize_message_threshold": 20,
|
||||||
"summarize_token_percent": 75,
|
"summarize_token_percent": 75,
|
||||||
|
"split_on_marker": false,
|
||||||
"tool_feedback": {
|
"tool_feedback": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"max_args_length": 300
|
"max_args_length": 300
|
||||||
|
|
@ -223,13 +224,8 @@
|
||||||
"nickserv_password": "",
|
"nickserv_password": "",
|
||||||
"sasl_user": "",
|
"sasl_user": "",
|
||||||
"sasl_password": "",
|
"sasl_password": "",
|
||||||
"channels": [
|
"channels": ["#mychannel"],
|
||||||
"#mychannel"
|
"request_caps": ["server-time", "message-tags"],
|
||||||
],
|
|
||||||
"request_caps": [
|
|
||||||
"server-time",
|
|
||||||
"message-tags"
|
|
||||||
],
|
|
||||||
"allow_from": [],
|
"allow_from": [],
|
||||||
"group_trigger": {
|
"group_trigger": {
|
||||||
"mention_only": true
|
"mention_only": true
|
||||||
|
|
@ -251,9 +247,7 @@
|
||||||
"brave": {
|
"brave": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"api_key": "YOUR_BRAVE_API_KEY",
|
"api_key": "YOUR_BRAVE_API_KEY",
|
||||||
"api_keys": [
|
"api_keys": ["YOUR_BRAVE_API_KEY"],
|
||||||
"YOUR_BRAVE_API_KEY"
|
|
||||||
],
|
|
||||||
"max_results": 5
|
"max_results": 5
|
||||||
},
|
},
|
||||||
"tavily": {
|
"tavily": {
|
||||||
|
|
@ -269,9 +263,7 @@
|
||||||
"perplexity": {
|
"perplexity": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"api_key": "pplx-xxx",
|
"api_key": "pplx-xxx",
|
||||||
"api_keys": [
|
"api_keys": ["pplx-xxx"],
|
||||||
"pplx-xxx"
|
|
||||||
],
|
|
||||||
"max_results": 5
|
"max_results": 5
|
||||||
},
|
},
|
||||||
"searxng": {
|
"searxng": {
|
||||||
|
|
@ -320,19 +312,12 @@
|
||||||
"filesystem": {
|
"filesystem": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": [
|
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
|
||||||
"-y",
|
|
||||||
"@modelcontextprotocol/server-filesystem",
|
|
||||||
"/tmp"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"github": {
|
"github": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": [
|
"args": ["-y", "@modelcontextprotocol/server-github"],
|
||||||
"-y",
|
|
||||||
"@modelcontextprotocol/server-github"
|
|
||||||
],
|
|
||||||
"env": {
|
"env": {
|
||||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
|
||||||
}
|
}
|
||||||
|
|
@ -340,10 +325,7 @@
|
||||||
"brave-search": {
|
"brave-search": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": [
|
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
||||||
"-y",
|
|
||||||
"@modelcontextprotocol/server-brave-search"
|
|
||||||
],
|
|
||||||
"env": {
|
"env": {
|
||||||
"BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
|
"BRAVE_API_KEY": "YOUR_BRAVE_API_KEY"
|
||||||
}
|
}
|
||||||
|
|
@ -360,10 +342,7 @@
|
||||||
"slack": {
|
"slack": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"command": "npx",
|
"command": "npx",
|
||||||
"args": [
|
"args": ["-y", "@modelcontextprotocol/server-slack"],
|
||||||
"-y",
|
|
||||||
"@modelcontextprotocol/server-slack"
|
|
||||||
],
|
|
||||||
"env": {
|
"env": {
|
||||||
"SLACK_BOT_TOKEN": "YOUR_SLACK_BOT_TOKEN",
|
"SLACK_BOT_TOKEN": "YOUR_SLACK_BOT_TOKEN",
|
||||||
"SLACK_TEAM_ID": "YOUR_SLACK_TEAM_ID"
|
"SLACK_TEAM_ID": "YOUR_SLACK_TEAM_ID"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue