MCPcopy Create free account
hub / github.com/Stevenic/codepilot / OpenAIKeys

Interface OpenAIKeys

src/CodeIndex.ts:54–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 * Keys to use for OpenAI embeddings and models.
53 */
54export interface OpenAIKeys {
55 /**
56 * API key to use when calling the OpenAI API.
57 * @remarks
58 * A new API key can be created at https://platform.openai.com/account/api-keys.
59 */
60 apiKey: string;
61
62 /**
63 * Optional. Organization to use when calling the OpenAI API.
64 */
65 organization?: string;
66
67 /**
68 * Optional. Endpoint to use when calling the OpenAI API.
69 * @remarks
70 * For Azure OpenAI this is the deployment endpoint.
71 */
72 endpoint?: string;
73}
74
75// LLM-REGION
76

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected