Fix env file
This commit is contained in:
parent
c678f7e584
commit
9d6c6403a0
45
.env.example
45
.env.example
|
@ -1,20 +1,41 @@
|
||||||
HOST= # The address where your tailchat server is running, including http:// or https://
|
HOST=
|
||||||
ID= # Your bot ID
|
# The address where your tailchat server is running, including http:// or https://
|
||||||
SECRET= # Your bot secret
|
|
||||||
|
|
||||||
API_ENDPOINT= # The OpenAI-compatible endpoint for the bot to send messsages to. Defaults to "http://localhost:8080/v1"
|
ID=
|
||||||
|
# Your bot ID
|
||||||
|
|
||||||
|
SECRET=
|
||||||
|
# Your bot secret
|
||||||
|
|
||||||
|
API_ENDPOINT=
|
||||||
|
# The OpenAI-compatible endpoint for the bot to send messsages to. Defaults to "http://localhost:8080/v1"
|
||||||
# e.x. "http://localhost:8080/v1", "https://api.openai.com/v1"
|
# e.x. "http://localhost:8080/v1", "https://api.openai.com/v1"
|
||||||
API_KEY= # Your API key here for OpenAI/LocalAI. Defaults to the string "none".
|
|
||||||
TEXT_MODEL= # The model to query when sending text messages. Defaults to "gpt-4"
|
API_KEY=
|
||||||
|
# Your API key here for OpenAI/LocalAI. Defaults to the string "none".
|
||||||
|
|
||||||
|
TEXT_MODEL=
|
||||||
|
# The model to query when sending text messages. Defaults to "gpt-4"
|
||||||
# e.x. "gpt-3", "gpt-4"
|
# e.x. "gpt-3", "gpt-4"
|
||||||
CREATE_IMAGE_MODEL= # The model to use when creating images. Defaults to "stablediffusion-cpp",
|
|
||||||
|
CREATE_IMAGE_MODEL=
|
||||||
|
# The model to use when creating images. Defaults to "stablediffusion-cpp",
|
||||||
# e.x. "dall-e-3", "stablediffusion-cpp"
|
# e.x. "dall-e-3", "stablediffusion-cpp"
|
||||||
ANALYZE_IMAGE_MODEL= # The model to use when analyzing images. Defaults to "gpt4-vision-preview".
|
|
||||||
|
ANALYZE_IMAGE_MODEL=
|
||||||
|
# The model to use when analyzing images. Defaults to "gpt4-vision-preview".
|
||||||
# e.x. "gpt-4-vision-preview", "llava"
|
# e.x. "gpt-4-vision-preview", "llava"
|
||||||
TEMPERATURE= # The temperature of the TEXT_MODEL. Defaults to 1.0. Minimum is 0.1, max is 2.0.
|
|
||||||
|
|
||||||
ALLOWED_CHAT= # The ID of the chat that the bot is allowed to respond in. Keep in mind that the bot is always able to respond in Direct Messages.
|
TEMPERATURE=
|
||||||
SAFE_WORD= # When this character/string is detected anywhere in a message, the bot won't respond to it. Defaults to "\".
|
# The temperature of the TEXT_MODEL. Defaults to 1.0. Minimum is 0.1, max is 2.0.
|
||||||
|
|
||||||
SELF= # The user ID of your bot which you can get from the admin panel or database.
|
ALLOWED_CHAT=
|
||||||
|
# The ID of the chat that the bot is allowed to respond in. Keep in mind that the bot is always able to respond in Direct Messages.
|
||||||
|
|
||||||
|
SAFE_WORD=
|
||||||
|
# When this character/string is detected anywhere in a message, the bot won't respond to it. Defaults to "\".
|
||||||
|
|
||||||
|
|
||||||
|
SELF=
|
||||||
|
# The user ID of your bot which you can get from the admin panel or database.
|
||||||
# THIS IS NEEDED SO THAT THE BOT DOES NOT RESPOND TO IT'S OWN MESSAGES.
|
# THIS IS NEEDED SO THAT THE BOT DOES NOT RESPOND TO IT'S OWN MESSAGES.
|
||||||
|
|
Loading…
Reference in a new issue