diff options
| author | Keith Ballinger <[email protected]> | 2025-06-07 22:20:59 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-07 22:20:59 -0700 |
| commit | 569c9774080a517fd32dc14545a4f5e71020b4e4 (patch) | |
| tree | 2b26bff0f9efa94b39e56b8c79b6cf68a9debf4f | |
| parent | b46f22093145760eaf8cefafd0050597bfb44249 (diff) | |
refactor(core): remove comments from geminiChat.ts (#834)
| -rw-r--r-- | packages/core/src/core/geminiChat.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/core/src/core/geminiChat.ts b/packages/core/src/core/geminiChat.ts index 686c3f0a..54f74102 100644 --- a/packages/core/src/core/geminiChat.ts +++ b/packages/core/src/core/geminiChat.ts @@ -54,7 +54,6 @@ function isValidContent(content: Content): boolean { * @throws Error if the history does not start with a user turn. * @throws Error if the history contains an invalid role. */ -// hello keith function validateHistory(history: Content[]) { // Empty history is valid. if (history.length === 0) { @@ -148,7 +147,6 @@ export class GeminiChat { * console.log(response.text); * ``` */ - // hello keith async sendMessage( params: SendMessageParameters, ): Promise<GenerateContentResponse> { @@ -218,7 +216,6 @@ export class GeminiChat { * } * ``` */ - // hello keith async sendMessageStream( params: SendMessageParameters, ): Promise<AsyncGenerator<GenerateContentResponse>> { @@ -281,7 +278,6 @@ export class GeminiChat { * @return History contents alternating between user and model for the entire * chat session. */ - // hello keith getHistory(curated: boolean = false): Content[] { const history = curated ? extractCuratedHistory(this.history) |
