fix(k3s): correctly move memory path exceptions to agent defaults
This commit is contained in:
parent
81132b0a74
commit
1ec70054d8
2 changed files with 17 additions and 22 deletions
|
|
@ -7,7 +7,12 @@
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"workspace": "/home/picoclaw/.picoclaw",
|
"workspace": "/home/picoclaw/.picoclaw",
|
||||||
"restrict_to_workspace": true,
|
"restrict_to_workspace": true,
|
||||||
"allow_read_outside_workspace": false,
|
"allow_read_paths": [
|
||||||
|
"/home/picoclaw/.picoclaw/memory"
|
||||||
|
],
|
||||||
|
"allow_write_paths": [
|
||||||
|
"/home/picoclaw/.picoclaw/memory"
|
||||||
|
],
|
||||||
"provider": "",
|
"provider": "",
|
||||||
"model_name": "nemotron-3-super-120b-a12b",
|
"model_name": "nemotron-3-super-120b-a12b",
|
||||||
"max_tokens": 32768,
|
"max_tokens": 32768,
|
||||||
|
|
@ -640,22 +645,13 @@
|
||||||
"read_file": {
|
"read_file": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"mode": "plaintext",
|
"mode": "plaintext",
|
||||||
"max_read_file_size": 1048576,
|
"max_read_file_size": 1048576
|
||||||
"allow_read_paths": [
|
|
||||||
"/home/picoclaw/.picoclaw/memory"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"write_file": {
|
"write_file": {
|
||||||
"enabled": true,
|
"enabled": true
|
||||||
"allow_write_paths": [
|
|
||||||
"/home/picoclaw/.picoclaw/memory"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"append_file": {
|
"append_file": {
|
||||||
"enabled": true,
|
"enabled": true
|
||||||
"allow_append_paths": [
|
|
||||||
"/home/picoclaw/.picoclaw/memory"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"send_file": {
|
"send_file": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,12 @@ data:
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"workspace": "/home/picoclaw/.picoclaw",
|
"workspace": "/home/picoclaw/.picoclaw",
|
||||||
"restrict_to_workspace": true,
|
"restrict_to_workspace": true,
|
||||||
"allow_read_outside_workspace": false,
|
"allow_read_paths": [
|
||||||
|
"/home/picoclaw/.picoclaw/memory"
|
||||||
|
],
|
||||||
|
"allow_write_paths": [
|
||||||
|
"/home/picoclaw/.picoclaw/memory"
|
||||||
|
],
|
||||||
"provider": "",
|
"provider": "",
|
||||||
"model_name": "nemotron-3-super-120b-a12b",
|
"model_name": "nemotron-3-super-120b-a12b",
|
||||||
"max_tokens": 32768,
|
"max_tokens": 32768,
|
||||||
|
|
@ -624,10 +629,7 @@ data:
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"append_file": {
|
"append_file": {
|
||||||
"enabled": true,
|
"enabled": true
|
||||||
"allow_append_paths": [
|
|
||||||
"/home/picoclaw/.picoclaw/memory"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"edit_file": {
|
"edit_file": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|
@ -650,10 +652,7 @@ data:
|
||||||
"read_file": {
|
"read_file": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"mode": "plaintext",
|
"mode": "plaintext",
|
||||||
"max_read_file_size": 1048576,
|
"max_read_file_size": 1048576
|
||||||
"allow_read_paths": [
|
|
||||||
"/home/picoclaw/.picoclaw/memory"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"write_file": {
|
"write_file": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue