| 32 | * Keys to use for OpenAI embeddings and models. |
| 33 | */ |
| 34 | export interface OpenAIKeys { |
| 35 | /** |
| 36 | * API key to use when calling the OpenAI API. |
| 37 | * @remarks |
| 38 | * A new API key can be created at https://platform.openai.com/account/api-keys. |
| 39 | */ |
| 40 | apiKey: string; |
| 41 | /** |
| 42 | * Optional. Organization to use when calling the OpenAI API. |
| 43 | */ |
| 44 | organization?: string; |
| 45 | /** |
| 46 | * Optional. Endpoint to use when calling the OpenAI API. |
| 47 | * @remarks |
| 48 | * For Azure OpenAI this is the deployment endpoint. |
| 49 | */ |
| 50 | endpoint?: string; |
| 51 | } |
| 52 | /** |
| 53 | * The current projects source code index. |
| 54 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected