Defaults to env example
This commit is contained in:
parent
995ca229d1
commit
53762f3947
1 changed files with 14 additions and 11 deletions
25
.env.example
25
.env.example
|
|
@ -1,30 +1,33 @@
|
|||
#API link, leave blank to use OpenAI API
|
||||
api="<API_LINK>"
|
||||
api=""
|
||||
|
||||
#API key
|
||||
key="<OPEN_AI_KEY_OR_OTHER_KEY>"
|
||||
key="<OPEN_API_KEY>"
|
||||
|
||||
#Oranization key, make something up for self hosted or other API
|
||||
organization="<ORG_KEY_OR_RANDOM>"
|
||||
organization="OPEN_API_ORG>"
|
||||
|
||||
#LLM model name, use gpt-3.5-turbo-1106 or gpt-3.5-turbo or gpt-4 for OpenAI API
|
||||
#LLM model name, use gpt-3.5-turbo-1106 or gpt-3.5-turbo or gpt-4-1106-preview for OpenAI API
|
||||
#For text generation webui use gpt-3.5-turbo, for other API's consult their documentation
|
||||
model="<LLM_MODEL_NAME>"
|
||||
model="gpt-4-1106-preview"
|
||||
|
||||
#The language to translate TO, Don't forget to change the prompt
|
||||
language="<LANGUAGE_NAME>"
|
||||
language="English"
|
||||
|
||||
#The timeout before disconnect error, 30 to 120 recommended
|
||||
timeout="<TIMEOUT_SECONDS>"
|
||||
timeout="120"
|
||||
|
||||
#The number of files to translate at the same time, 1 recommended for free or self hosted API or gpt-4
|
||||
fileThreads="<NUMBER_OF_FILES_PER_TIME>"
|
||||
fileThreads="1"
|
||||
|
||||
#The number of threads per file, 1 recommended for free or self hosted API or gpt-4
|
||||
threads="<NUMBER_OF_THREADS_PER_FILE>"
|
||||
threads="1"
|
||||
|
||||
#The wordwrap of dialogue text
|
||||
width="<DIALOGUE_TEXT_WORDWRAP>"
|
||||
width="60"
|
||||
|
||||
#The wordwap of items and help text
|
||||
listWidth="<ITEM_TEXT_WORDWRAP>"
|
||||
listWidth="80"
|
||||
|
||||
#The wordwap of items and help text
|
||||
noteWidth="60"
|
||||
Loading…
Reference in a new issue