summaryrefslogtreecommitdiff
path: root/packages/cli/src/core
diff options
context:
space:
mode:
authorJaana Dogan <[email protected]>2025-04-21 11:49:46 -0700
committerGitHub <[email protected]>2025-04-21 11:49:46 -0700
commit651a5434036f1906f19523f1265686c168305060 (patch)
tree4c1fe7d7b8a6b72811dcb2cdd2239ec47e4eed66 /packages/cli/src/core
parent738c2692fb9bdeda7c801e7b4e773f81ebc1ded0 (diff)
Remove gemini-stream.ts (#84)
This module is no longer needed and the types can be provided from types.
Diffstat (limited to 'packages/cli/src/core')
-rw-r--r--packages/cli/src/core/gemini-stream.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/cli/src/core/gemini-stream.ts b/packages/cli/src/core/gemini-stream.ts
deleted file mode 100644
index d41c50d7..00000000
--- a/packages/cli/src/core/gemini-stream.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * @license
- * Copyright 2025 Google LLC
- * SPDX-License-Identifier: Apache-2.0
- */
-
-// Only defining the state enum needed by the UI
-export enum StreamingState {
- Idle = 'idle',
- Responding = 'responding',
- WaitingForConfirmation = 'waiting_for_confirmation',
-}
-
-// Copied from server/src/core/turn.ts for CLI usage
-export enum GeminiEventType {
- Content = 'content',
- ToolCallRequest = 'tool_call_request',
- // Add other event types if the UI hook needs to handle them
-}