@mastra/playground-ui 6.3.1-alpha.3 → 6.4.0-alpha.4
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
+
## 6.4.0-alpha.4
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Update peer dependencies to match core package version bump (0.20.1) ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Fixed an issue where model router was adding /chat/completions to API urls when it shouldn't. ([#8589](https://github.com/mastra-ai/mastra/pull/8589))
|
|
12
|
+
fixed an issue with provider ID rendering in playground UI
|
|
13
|
+
- Updated dependencies [[`b728a45`](https://github.com/mastra-ai/mastra/commit/b728a45ab3dba59da0f5ee36b81fe246659f305d)]:
|
|
14
|
+
- @mastra/core@0.20.1-alpha.4
|
|
15
|
+
- @mastra/client-js@0.15.1-alpha.4
|
|
16
|
+
- @mastra/react@0.0.4-alpha.4
|
|
17
|
+
|
|
3
18
|
## 6.3.1-alpha.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
|
@@ -8391,7 +8391,7 @@ const providerMapToIcon = {
|
|
|
8391
8391
|
};
|
|
8392
8392
|
|
|
8393
8393
|
const cleanProviderId = (providerId) => {
|
|
8394
|
-
return providerId.
|
|
8394
|
+
return providerId.includes(`.`) ? providerId.split(`.`)[0] : providerId;
|
|
8395
8395
|
};
|
|
8396
8396
|
|
|
8397
8397
|
const ProviderLogo = ({ providerId, className = "", size = 20 }) => {
|