diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 8e1c6cbdf3b..ba85009fe4c 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -1581,69 +1581,6 @@ export interface ISlackService extends Service { client: any; } -// /** -// * Available verifiable inference providers -// */ -// export enum VerifiableInferenceProvider { -// RECLAIM = "reclaim", -// OPACITY = "opacity", -// PRIMUS = "primus", -// } - -// /** -// * Options for verifiable inference -// */ -// export interface VerifiableInferenceOptions { -// /** Custom endpoint URL */ -// endpoint?: string; -// /** Custom headers */ -// headers?: Record; -// /** Provider-specific options */ -// providerOptions?: Record; -// } - -// /** -// * Result of a verifiable inference request -// */ -// export interface VerifiableInferenceResult { -// /** Generated text */ -// text: string; -// /** Proof */ -// proof: any; -// /** Proof id */ -// id?: string; -// /** Provider information */ -// provider: VerifiableInferenceProvider; -// /** Timestamp */ -// timestamp: number; -// } - -// /** -// * Interface for verifiable inference adapters -// */ -// export interface IVerifiableInferenceAdapter { -// options: any; -// /** -// * Generate text with verifiable proof -// * @param context The input text/prompt -// * @param modelClass The model class/name to use -// * @param options Additional provider-specific options -// * @returns Promise containing the generated text and proof data -// */ -// generateText( -// context: string, -// modelClass: string, -// options?: VerifiableInferenceOptions, -// ): Promise; - -// /** -// * Verify the proof of a generated response -// * @param result The result containing response and proof to verify -// * @returns Promise indicating if the proof is valid -// */ -// verifyProof(result: VerifiableInferenceResult): Promise; -// } - export enum TokenizerType { Auto = "auto", TikToken = "tiktoken",