llm-kb 0.4.1 → 0.4.2
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/README.md +1 -1
- package/bin/cli.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -5482,7 +5482,8 @@ import chalk5 from "chalk";
|
|
|
5482
5482
|
function checkAuth() {
|
|
5483
5483
|
const piAuthPath = join11(homedir4(), ".pi", "agent", "auth.json");
|
|
5484
5484
|
if (existsSync7(piAuthPath)) {
|
|
5485
|
-
|
|
5485
|
+
const authStorage = AuthStorage4.create();
|
|
5486
|
+
return { ok: true, method: "pi-sdk", authStorage };
|
|
5486
5487
|
}
|
|
5487
5488
|
if (process.env.ANTHROPIC_API_KEY) {
|
|
5488
5489
|
const authStorage = AuthStorage4.inMemory({
|