Spaces:
Sleeping
Sleeping
File size: 1,321 Bytes
d20eb01 dc2726e d20eb01 dc2726e d20eb01 dc2726e d20eb01 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
from langchain import PromptTemplate
TALKING_HEAD_WIDTH = 192
# Console to variable
# Pertains to question answering functionality
TOOLS_LIST = ['serpapi', 'wolfram-alpha', 'pal-math',
'pal-colored-objects','google-search','news-api','tmdb-api','open-meteo-api']
TOOLS_DEFAULT_LIST = ['serpapi']
BUG_FOUND_MSG = "Congratulations, you've found a bug in this application!"
# AUTH_ERR_MSG = "Please paste your OpenAI key from openai.com to use this application. It is not necessary to hit a button or key after pasting it."
AUTHORIZATION_ERROR_MESSAGE = "Please paste your OpenAI key from openai.com to use this application. "
MAX_TOKENS = 512
LOOPING_TALKING_HEAD_VIDEO_PATH = "assets/videos/Masahiro.mp4"
MAX_TALKING_HEAD_TEXT_LENGTH = 1550
# Pertains to Express-inator functionality
NUM_WORDS_DEFAULT = 0
MAX_WORDS = 4000
FORMALITY_DEFAULT = "N/A"
TEMPERATURE_DEFAULT = 0
EMOTION_DEFAULT = "N/A"
LANG_LEVEL_DEFAULT = "N/A"
TRANSLATE_TO_DEFAULT = "N/A"
LITERARY_STYLE_DEFAULT = "N/A"
PROMPT_TEMPLATE = PromptTemplate(
input_variables=["original_words", "num_words", "formality", "emotions", "lang_level", "translate_to",
"literary_style"],
template="Restate {num_words}{formality}{emotions}{lang_level}{translate_to}{literary_style}the following: \n{original_words}\n",
)
|