codev / src /utils /telemetry /betaSessionTracing.ts
chenbhao's picture
init: verspercode v0.1.0
064bfd6
Raw
History Blame Contribute Delete
1.49 kB
/**
* Beta tracing is disabled in the OSS build.
*/
export interface Span {
setAttribute(name: string, value: string | number | boolean): void
setAttributes(attributes: Record<string, string | number | boolean>): void
addEvent(
name: string,
attributes?: Record<string, string | number | boolean>,
): void
end(): void
recordException(error: unknown): void
}
export interface LLMRequestNewContext {
systemPrompt?: string
querySource?: string
tools?: string
}
export function clearBetaTracingState(): void {}
export function isBetaTracingEnabled(): boolean {
return false
}
export function truncateContent(
content: string,
_maxSize?: number,
): { content: string; truncated: boolean } {
return { content, truncated: false }
}
export function addBetaInteractionAttributes(
_span: Span,
_userPrompt: string,
): void {}
export function addBetaLLMRequestAttributes(
_span: Span,
_newContext?: LLMRequestNewContext,
_messagesForAPI?: unknown[],
): void {}
export function addBetaLLMResponseAttributes(
_endAttributes: Record<string, string | number | boolean>,
_metadata?: {
modelOutput?: string
thinkingOutput?: string
},
): void {}
export function addBetaToolInputAttributes(
_span: Span,
_toolName: string,
_toolInput: string,
) {}
export function addBetaToolResultAttributes(
_endAttributes: Record<string, string | number | boolean>,
_toolName: string | number | boolean,
_toolResult: string,
): void {}