From c4e94c88d7bf2db45451b932fa160b5d92a9d845 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 13 Apr 2023 15:20:51 +0200 Subject: [PATCH] Fix comment typo Thanks to @deadprogram for noticing it! --- api/api.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/api.go b/api/api.go index e38874d7..8892fbb7 100644 --- a/api/api.go +++ b/api/api.go @@ -47,7 +47,8 @@ type OpenAIRequest struct { // Prompt is read only by completion API calls Prompt string `json:"prompt"` - // Messages is readh only by chat/completion API calls + + // Messages is read only by chat/completion API calls Messages []Message `json:"messages"` // Common options between all the API calls