skillfree 0.1.8 → 0.1.9
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/package.json +1 -1
- package/scripts/commands/auth.js +3 -2
package/package.json
CHANGED
package/scripts/commands/auth.js
CHANGED
|
@@ -88,8 +88,9 @@ async function authLogin() {
|
|
|
88
88
|
console.log(` ✅\n`)
|
|
89
89
|
console.log(`🎉 登录成功!当前积分:${data.credits}`)
|
|
90
90
|
console.log(`\n快速开始:`)
|
|
91
|
-
console.log(` skillfree pilot --type chat --prompt "你好"`)
|
|
92
|
-
console.log(
|
|
91
|
+
console.log(` skillfree pilot --type chat --model DeepSeek-V3.2-Fast --prompt "你好"`)
|
|
92
|
+
console.log(` skillfree pilot --type chat --model claude-sonnet-4-6 --prompt "你好"`)
|
|
93
|
+
console.log(` skillfree models # 查看所有可用模型`)
|
|
93
94
|
} catch (e) {
|
|
94
95
|
console.log(` ❌\nAPI Key 无效,请重新检查`)
|
|
95
96
|
process.exit(1)
|