| 52 | * Keys to use for OpenAI embeddings and models. |
| 53 | */ |
| 54 | export 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 |
nothing calls this directly
no outgoing calls
no test coverage detected