We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c251c commit e18f4dfCopy full SHA for e18f4df
apps/agent-tars/src/renderer/mock/ipc.ts
@@ -111,6 +111,23 @@ export const createClient = () => ({
111
runAgent: async () => {
112
return 'Hello from mock agent';
113
},
114
+
115
+ updateFileSystemSettings: async () => {
116
+ return true;
117
+ },
118
119
+ getSettings: async () => {
120
+ return {
121
+ model: {},
122
+ fileSystem: {
123
+ availableDirectories: ['/mock/path/to/allowed/directories'],
124
125
+ search: {},
126
+ };
127
128
+ getAllowedDirectories: async () => {
129
+ return ['/mock/path/to/allowed/directories'];
130
131
});
132
133
declare global {
0 commit comments