deepagents 1.11.1 → 1.12.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -107,23 +107,6 @@ const agent = createDeepAgent({
107
107
  });
108
108
  ```
109
109
 
110
- A string is placed before the built-in Deep Agent prompt. For full control over
111
- prompt assembly, provide a structured configuration:
112
-
113
- ```typescript
114
- const agent = createDeepAgent({
115
- systemPrompt: {
116
- prefix: "You are the support assistant for Acme.",
117
- base: null, // Remove the built-in Deep Agent prompt.
118
- suffix: "Follow Acme's escalation policy.",
119
- },
120
- });
121
- ```
122
-
123
- Structured prompts are assembled as `prefix` → `base` → `suffix`, followed by
124
- any model-specific harness profile suffix. Omit `base` to retain the active
125
- base prompt, or set it to `null` to remove the base entirely.
126
-
127
110
  See the [JavaScript Deep Agents docs](https://docs.langchain.com/oss/javascript/deepagents/overview) for full configuration options.
128
111
 
129
112
  ## LangGraph Native