From ce4bd81f42dbae3e1ccd27d5b5ce5d7cb2a78829 Mon Sep 17 00:00:00 2001 From: "Steve White (aider)" Date: Tue, 28 Jan 2025 11:23:38 -0600 Subject: [PATCH] docs: Update README to clarify support for OpenAI-compatible endpoints --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 273f53a..5580059 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,15 @@ go get gopkg.in/yaml.v3 Create a configuration file at `~/.config/gonamer.yaml` with the following structure: ```yaml -apikey: "your-openai-api-key" +apikey: "your-api-key" model: "gpt-4-vision-preview" endpoint: "https://api.openai.com/v1/chat/completions" temperature: 0.7 ``` -Make sure to replace `your-openai-api-key` with your actual OpenAI API key. +Make sure to replace: +- `your-api-key` with your API key +- `endpoint` with your preferred OpenAI-compatible API endpoint (supports OpenAI, Azure OpenAI, or any compatible API provider) ## Usage