Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@valyu/cli",
"version": "1.0.2",
"version": "1.0.3",
"description": "The search CLI for knowledge workers",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion skills/valyu-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: >
license: MIT
metadata:
author: valyu
version: "1.0.2"
version: "1.0.3"
homepage: https://valyu.ai
source: https://github.com/valyu-network/valyu-cli
inputs:
Expand Down
2 changes: 1 addition & 1 deletion src/commands/research/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ const shareCmd = new Command('share')
}

if (newPublic) {
const publicUrl = `${PLATFORM_URL}/research/${id}`;
const publicUrl = `${PLATFORM_URL}/playground/deepresearch/${id}`;
spinner.stop(`Task ${pc.cyan(id.slice(0, 8))} is now ${pc.green('public')}`);
console.log('');
console.log(` ${pc.bold('Public URL:')} ${pc.cyan(publicUrl)}`);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const VERSION = '1.0.2';
export const VERSION = '1.0.3';
export const PACKAGE_NAME = '@valyu/cli';