You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom agent features and user feedback docs (#153)
* custom agent features and user feedback
* improve custom agent features
* Update links
---------
Co-authored-by: Theodore Aptekarev <aptekarev@gmail.com>
description: Configure and manage custom agent features based on workspace options
5
5
keywords:
6
-
- features
7
-
- configuration
8
-
- workspace options
9
-
- custom agents
10
-
- SSE
6
+
- features
7
+
- configuration
8
+
- workspace options
9
+
- custom agents
10
+
- SSE
11
11
---
12
12
13
13
import HeadTitle from '@site/src/components/General/HeadTitle.tsx';
@@ -18,9 +18,9 @@ Create agents that can dynamically enable or disable features based on workspace
18
18
19
19
Reference implementation in [this GitHub repository](https://github.com/OpenBB-finance/agents-for-openbb/tree/main/37-vanilla-agent-custom-features).
20
20
21
-
<imgclassName="pro-border-gradient"width="500"alt="Custom agent features - on and off"src="https://openbb-cms.directus.app/assets/f304643a-654b-4156-a4c4-dea934d18012.png" />
21
+
<imgclassName="pro-border-gradient"width="500"alt="Custom agent features - on and off"src="https://openbb-cms.directus.app/assets/f6d38500-4a9a-41e9-93b3-5579f2cb24c0.png" />
22
22
23
-
<imgclassName="pro-border-gradient"width="500"alt="Custom agent features - on and on"src="https://openbb-cms.directus.app/assets/aa51354c-b611-4c99-829c-cf6e35eb884b.png" />
23
+
<imgclassName="pro-border-gradient"width="500"alt="Custom agent features - on and off"src="https://openbb-cms.directus.app/assets/b7b268df-e576-4cc7-837d-d7358fef23bb.png" />
24
24
25
25
## Architecture
26
26
@@ -44,21 +44,42 @@ return JSONResponse(content={
44
44
"description": "Allows the copilot to do deep research",
45
45
},
46
46
"web-search": {
47
-
"label": "Web Search",
47
+
"label": "Web Search",
48
48
"default": True,
49
49
"description": "Allows the copilot to search the web.",
50
50
},
51
+
"model": {
52
+
"label": "Model",
53
+
"type": "select",
54
+
"default": "claude-sonnet-4-20250514",
55
+
"description": "Select the LLM model to use.",
56
+
"options": [
57
+
{"label": "Claude Opus 4", "value": "claude-opus-4-0-20250514"},
0 commit comments