Skip to content

Commit c8ab1bc

Browse files
committed
refactor: ♻️ clean up logs and improve response parsing
1 parent 60ea681 commit c8ab1bc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/cli/src/info.ts

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ export async function envInfo(
6060
models?: LanguageModelInfo[]
6161
} = await parseTokenFromEnv(env, `${modelProvider.id}:*`)
6262
if (conn) {
63-
console.log(modelProvider.id + " " + conn)
6463
// Mask the token if the option is set
6564
if (!token && conn.token) conn.token = "***"
6665
if (models) {

packages/core/src/openai.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -475,9 +475,9 @@ const pullModel: PullModelFunction = async (modelId, options) => {
475475
},
476476
})
477477
if (resTags.ok) {
478-
const { models }: { models: { model: string }[] } =
478+
const { data: models }: { data: { id: string }[] } =
479479
await resTags.json()
480-
if (models.find((m) => m.model === model)) return { ok: true }
480+
if (models.find((m) => m.id === model)) return { ok: true }
481481
}
482482

483483
// pull

0 commit comments

Comments
 (0)