From d61da20c03f7f7cd82d0cb99fcb5442f2737b079 Mon Sep 17 00:00:00 2001 From: Achiya Elyasaf <10044875+eggsterino@users.noreply.github.com> Date: Thu, 7 Dec 2023 08:48:55 +0200 Subject: [PATCH] Fixed README.md markdown errors. --- README.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index f54942b..70ff579 100644 --- a/README.md +++ b/README.md @@ -21,30 +21,30 @@ If you feel advanced, you can also change the request JSON sent to OpenAI and al To do that, go to the 'Advance Configuration' component in the configuration page. By default, the value is ```json { - openai: { - url: 'https://api.openai.com/v1/chat/completions', - base: { - n: 1, - temperature: 0.5, - model: 'gpt-3.5-turbo' + "openai": { + "url": "https://api.openai.com/v1/chat/completions", + "base": { + "n": 1, + "temperature": 0.5, + "model": "gpt-3.5-turbo" }, - Complete: { - max_tokens: 512, - messages: [{ - role: 'system', - content: 'You are an assistant in a Latex editor that continues the given text. No need to rewrite the given text' + "Complete": { + "max_tokens": 512, + "messages": [{ + "role": "system", + "content": "You are an assistant in a Latex editor that continues the given text. No need to rewrite the given text" }] }, - Improve: { - messages: [{ - role: 'system', - content: 'You are an assistant in a Latex editor that improves the given text' + "Improve": { + "messages": [{ + "role": "system", + "content": "You are an assistant in a Latex editor that improves the given text" }] }, - Ask: { - messages: [{ - role: 'system', - content: 'You are an assistant in a Latex editor. Answer questions without introduction/explanations' + "Ask": { + "messages": [{ + "role": "system", + "content": "You are an assistant in a Latex editor. Answer questions without introduction/explanations" }] } }