create-mastra 0.15.1-alpha.0 → 0.15.1-alpha.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/CHANGELOG.md +2 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2005,13 +2005,21 @@ ${addAgent ? `import { weatherAgent } from './agents/weather-agent';` : ""}
|
|
|
2005
2005
|
export const mastra = new Mastra({
|
|
2006
2006
|
${filteredExports.join("\n ")}
|
|
2007
2007
|
storage: new LibSQLStore({
|
|
2008
|
-
// stores
|
|
2008
|
+
// stores observability, scores, ... into memory storage, if it needs to persist, change to file:../mastra.db
|
|
2009
2009
|
url: ":memory:",
|
|
2010
2010
|
}),
|
|
2011
2011
|
logger: new PinoLogger({
|
|
2012
2012
|
name: 'Mastra',
|
|
2013
2013
|
level: 'info',
|
|
2014
2014
|
}),
|
|
2015
|
+
telemetry: {
|
|
2016
|
+
// Telemetry is deprecated and will be removed in the Nov 4th release
|
|
2017
|
+
enabled: false,
|
|
2018
|
+
},
|
|
2019
|
+
observability: {
|
|
2020
|
+
// Enables DefaultExporter and CloudExporter for AI tracing
|
|
2021
|
+
default: { enabled: true },
|
|
2022
|
+
},
|
|
2015
2023
|
});
|
|
2016
2024
|
`
|
|
2017
2025
|
);
|