Skip to content

Commit ac5b8dc

Browse files
committed
remove console log
1 parent 19b632f commit ac5b8dc

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

core/llm/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,8 +1201,6 @@ export abstract class BaseLLM implements ILLM {
12011201
}
12021202
}
12031203

1204-
console.log("debug1 llm options", this._llmOptions);
1205-
12061204
const canUseResponses = this.canUseOpenAIResponses(completionOptions);
12071205
const useStream = completionOptions.stream !== false;
12081206

packages/config-types/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const completionOptionsSchema = z.object({
1515
keepAlive: z.number().optional(),
1616
numGpu: z.number().optional(),
1717
raw: z.boolean().optional(),
18+
stream: z.boolean().optional(),
1819
});
1920
export type CompletionOptions = z.infer<typeof completionOptionsSchema>;
2021

@@ -95,7 +96,6 @@ export const modelDescriptionSchema = z.object({
9596
proxy: z.string().optional(),
9697
headers: z.record(z.string()).optional(),
9798
extraBodyProperties: z.record(z.any()).optional(),
98-
noProxy: z.array(z.string()).optional(),
9999
stream: z.boolean().optional(),
100100
})
101101
.optional(),

0 commit comments

Comments
 (0)