Skip to content

Commit 2b1ddb3

Browse files
committed
Update package version and improve log message
The package version in package-lock.json is updated from 0.1.1 to 0.1.3. The console log message in src/autonomais.ts has been slightly improved for better indication of prompt usage whether provided or not.
1 parent 4744ba4 commit 2b1ddb3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/autonomais.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async function run(path: string | number, prompt?: string): Promise<void> {
3333
const nodes = parseWorkflow(contents);
3434

3535
console.log(`Running workflow ${path}.`);
36-
console.log(prompt ? `Using prompt: ${prompt}.` : "No prompt provided.");
36+
if (prompt) console.log(`Sending prompt: ${prompt}.`);
3737
console.log();
3838

3939
let messages: BaseMessage[] = [];

0 commit comments

Comments
 (0)