mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 10:52:15 -04:00
15 lines
229 B
Plaintext
15 lines
229 B
Plaintext
```ts
|
|
const agent = createDeepAgent({
|
|
model,
|
|
backend,
|
|
permissions: [
|
|
{
|
|
operations: ["write"],
|
|
paths: ["/**"],
|
|
mode: "deny",
|
|
},
|
|
],
|
|
});
|
|
if (!agent) throw new Error("basic: agent not created");
|
|
```
|