@drewswiredin/backstage-plugin-assistants 0.1.0 → 0.3.0
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 +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -101,6 +101,16 @@ Set the key in your environment (never commit it):
|
|
|
101
101
|
export OPENROUTER_API_KEY=sk-or-...
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
+
Also add `assistants` to the backend actions service so the tools are exposed
|
|
105
|
+
(otherwise a profile's tools resolve to empty):
|
|
106
|
+
|
|
107
|
+
```yaml
|
|
108
|
+
backend:
|
|
109
|
+
actions:
|
|
110
|
+
pluginSources:
|
|
111
|
+
- assistants # plus catalog / scaffolder etc. for their actions
|
|
112
|
+
```
|
|
113
|
+
|
|
104
114
|
See the
|
|
105
115
|
[backend README](https://www.npmjs.com/package/@drewswiredin/backstage-plugin-assistants-backend)
|
|
106
116
|
for the full configuration reference (providers, per-assistant access policies,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drewswiredin/backstage-plugin-assistants",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Frontend plugin — AI Assistants for Backstage.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@backstage/core-plugin-api": "^1.12.0",
|
|
67
67
|
"@backstage/frontend-plugin-api": "^0.17.0",
|
|
68
68
|
"@backstage/ui": "^0.15.0",
|
|
69
|
-
"@drewswiredin/backstage-plugin-assistants-common": "0.
|
|
69
|
+
"@drewswiredin/backstage-plugin-assistants-common": "0.3.0",
|
|
70
70
|
"@material-ui/core": "^4.12.4",
|
|
71
71
|
"@material-ui/icons": "^4.11.3",
|
|
72
72
|
"@remixicon/react": "^4.5.0",
|