Skip to content

Commit

Permalink
Fix type declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
afirstenberg committed Jan 9, 2025
1 parent f87f22a commit 02f1d6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/langchain-google-common/src/chat_models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ export abstract class ChatGoogleBase<AuthOptions>

topK = 40;

presencePenalty = undefined;
presencePenalty: number;

frequencyPenalty = undefined;
frequencyPenalty: number;

stopSequences: string[] = [];

logprobs: false;
logprobs: boolean = false;

topLogprobs: 0;
topLogprobs: number = 0;

safetySettings: GoogleAISafetySetting[] = [];

Expand Down

0 comments on commit 02f1d6e

Please sign in to comment.