@mastra/playground-ui 6.9.2 → 6.9.3
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 +18 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +6 -6
package/dist/index.es.js
CHANGED
|
@@ -14826,6 +14826,7 @@ const AgentMetadata = ({
|
|
|
14826
14826
|
const agentWorkflows = agent.workflows ?? {};
|
|
14827
14827
|
const workflows = Object.keys(agentWorkflows).map((key) => ({ id: key, ...agentWorkflows[key] }));
|
|
14828
14828
|
return /* @__PURE__ */ jsxs(AgentMetadataWrapper, { children: [
|
|
14829
|
+
agent?.description && /* @__PURE__ */ jsx(AgentMetadataSection, { title: "Description", children: /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: agent.description }) }),
|
|
14829
14830
|
agent.modelList ? /* @__PURE__ */ jsx(AgentMetadataSection, { title: "Models", children: /* @__PURE__ */ jsx(
|
|
14830
14831
|
AgentMetadataModelList,
|
|
14831
14832
|
{
|