MCPcopy Create free account
hub / github.com/dabit3/x402-starter-kit / ExampleServiceOptions

Interface ExampleServiceOptions

src/ExampleService.ts:6–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4type AiProvider = 'openai' | 'eigenai';
5
6interface ExampleServiceOptions {
7 apiKey?: string;
8 baseUrl?: string;
9 defaultHeaders?: Record<string, string>;
10 provider: AiProvider;
11 payToAddress: string;
12 network: string;
13 model?: string;
14 temperature?: number;
15 maxTokens?: number;
16 seed?: number;
17}
18
19/**
20 * ExampleService - A sample service implementation using an OpenAI-compatible API

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected