mastra 0.15.0-alpha.3 → 0.15.1-alpha.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/CHANGELOG.md +56 -0
- package/dist/{chunk-CUK3PA52.js → chunk-WS6A2AVV.js} +59 -33
- package/dist/chunk-WS6A2AVV.js.map +1 -0
- package/dist/commands/create/create.d.ts.map +1 -1
- package/dist/commands/create/create.js +1 -1
- package/dist/commands/create/utils.d.ts +11 -1
- package/dist/commands/create/utils.d.ts.map +1 -1
- package/dist/commands/init/utils.d.ts +12 -2
- package/dist/commands/init/utils.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/dist/chunk-CUK3PA52.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#! /usr/bin/env node
|
|
2
|
-
import { create, checkForPkgJson, checkAndInstallCoreDeps, interactivePrompt, init, logger, FileService, DepsService } from './chunk-
|
|
3
|
-
export { create } from './chunk-
|
|
2
|
+
import { create, checkForPkgJson, checkAndInstallCoreDeps, interactivePrompt, init, logger, FileService, DepsService } from './chunk-WS6A2AVV.js';
|
|
3
|
+
export { create } from './chunk-WS6A2AVV.js';
|
|
4
4
|
import { PosthogAnalytics, setAnalytics } from './chunk-OQQFOUQW.js';
|
|
5
5
|
export { PosthogAnalytics } from './chunk-OQQFOUQW.js';
|
|
6
6
|
import { Command } from 'commander';
|
|
@@ -25,7 +25,7 @@ import { spawn } from 'child_process';
|
|
|
25
25
|
|
|
26
26
|
// package.json
|
|
27
27
|
var package_default = {
|
|
28
|
-
version: "0.15.
|
|
28
|
+
version: "0.15.1-alpha.0"};
|
|
29
29
|
|
|
30
30
|
// src/commands/scorers/available-scorers.ts
|
|
31
31
|
var AVAILABLE_SCORERS = [
|
|
@@ -654,7 +654,7 @@ var createProject = async (projectNameArg, args) => {
|
|
|
654
654
|
components: args.components ? args.components.split(",") : [],
|
|
655
655
|
llmProvider: args.llm,
|
|
656
656
|
addExample: args.example,
|
|
657
|
-
llmApiKey: args
|
|
657
|
+
llmApiKey: args.llmApiKey,
|
|
658
658
|
timeout,
|
|
659
659
|
projectName,
|
|
660
660
|
directory: args.dir,
|