Skip to content

Commit 06998ac

Browse files
committed
.
1 parent 8d318f9 commit 06998ac

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

packages/core/src/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,7 @@ export type {
170170
AnthropicAiOptions,
171171
AnthropicAiResponse,
172172
} from './tracing/anthropic-ai/types';
173-
export type {
174-
GoogleGenAIClient,
175-
GoogleGenAIChat,
176-
GoogleGenAIOptions,
177-
GoogleGenAIIstrumentedMethod,
178-
} from './tracing/google-genai/types';
173+
export type { GoogleGenAIClient, GoogleGenAIChat, GoogleGenAIOptions } from './tracing/google-genai/types';
179174
export type { FeatureFlag } from './utils/featureFlags';
180175

181176
export {

packages/core/src/tracing/google-genai/types.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import type { GOOGLE_GENAI_METHOD_REGISTRY } from './constants';
2-
31
export interface GoogleGenAIOptions {
42
/**
53
* Enable or disable input recording.
@@ -179,7 +177,5 @@ export interface GoogleGenAIChat {
179177
sendMessageStream: (...args: unknown[]) => Promise<AsyncGenerator<GenerateContentResponse, any, unknown>>;
180178
}
181179

182-
export type GoogleGenAIIstrumentedMethod = keyof typeof GOOGLE_GENAI_METHOD_REGISTRY;
183-
184180
// Export the response type for use in instrumentation
185181
export type GoogleGenAIResponse = GenerateContentResponse;

0 commit comments

Comments
 (0)