Skip to content

Commit

Permalink
remove commented out stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsayo committed Feb 7, 2025
1 parent 1c7e050 commit f08a1fe
Showing 1 changed file with 0 additions and 63 deletions.
63 changes: 0 additions & 63 deletions packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string>;
// /** Provider-specific options */
// providerOptions?: Record<string, unknown>;
// }

// /**
// * 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<VerifiableInferenceResult>;

// /**
// * 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<boolean>;
// }

export enum TokenizerType {
Auto = "auto",
TikToken = "tiktoken",
Expand Down

0 comments on commit f08a1fe

Please sign in to comment.