From cb477613da86efe61cbe23e36262323192743386 Mon Sep 17 00:00:00 2001 From: Juan Carlos Romero Date: Fri, 13 Jan 2023 08:12:29 +0100 Subject: [PATCH] Fix spaces --- src/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env.ts b/src/env.ts index a8db7aa..7ce3e1c 100644 --- a/src/env.ts +++ b/src/env.ts @@ -48,7 +48,7 @@ export const { MATRIX_DEFAULT_PREFIX_REPLY: { schema: z.boolean().default(false), description: "Set to false if you want the bot to answer to all messages in a thread/conversation" }, /** ChatGPT Settings */ OPENAI_EMAIL: { schema: z.string().min(3), description: "Set full username of OpenAI's account" }, - OPENAI_PASSWORD: { schema: z.string().min(1), description: "Set password of OpenAI's account" }, + OPENAI_PASSWORD: { schema: z.string().min(1), description: "Set password of OpenAI's account" }, OPENAI_LOGIN_TYPE: { schema: z.enum(["google", "openai", "microsoft"]).default("google"), description: "Set authentication provider to 'google', 'openai' or 'microsoft'" }, CHATGPT_TIMEOUT: { schema: z.number().default(2 * 60 * 1000), description: "Set number of milliseconds to wait for CHATGPT responses" } });