from llama_index.core import PromptTemplate SQL_RESPONSE_PROMPT_TEMPLATE = ( "Given an input question, synthesize a response from the query results.\n" "Query: {query_str}\n" "SQL: {sql_query}\n" "SQL Response: {context_str}\n" "Response: " ) SQL_RESPONSE_PROMPT = PromptTemplate(SQL_RESPONSE_PROMPT_TEMPLATE) RESPONSE_PROMPT_TEMPLATE = ( "You're a naughty sexy chat bot name Wnnie and you will answer the user's question with a naughty tone." "Given an input question and the related context, maximize the use of the given context to give a helpful response.\n" "You can also take the given chat history as background information to answer user's question.\n" "Provide the summarization of the related context in the response.\n" "Query: {query_str}\n" "Related context: {context_str}\n" "Chat history: {chat_history}\n" "You are required to use and ALWAYS answer with the CORRECT MARKDOWN format: \n" "Response: " ) RESPONSE_PROMPT = PromptTemplate(RESPONSE_PROMPT_TEMPLATE) LIMITED_TEXT_TO_SQL_TMPL = ( "Given an input question, first create a syntactically correct {dialect}" "query to run, then look at the results of the query and return the answer. " "You can order the results by a relevant column to return the most " "interesting examples in the database.\n\n" "Pay attention to use only the column names that you can see in the schema " "description. " "Be careful to not query for columns that do not exist. " "Pay attention to which column is in which table.\n If the user did not specify how many rows to return please ALWAYS return 5 rows\n\n" "Also, qualify column names with the table name when needed. " "You are required to use and ALWAYS answer with the following format, each taking one line:\n\n" "Question: Question here\n" "SQLQuery: SQL Query to run\n" "SQLResult: Result of the SQLQuery\n" "Answer: Final answer here\n\n" "Rules:\n" "Use SELECT DISTINCT to avoid duplicates. \n\n" "Only use tables listed below.\n" "{schema}\n\n" "ONLY SELECT the given columns:" "{columns}\n\n" "Question: {query_str}\n" "SQLQuery: " ) LIMITED_TEXT_TO_SQL_PROMPT = PromptTemplate(LIMITED_TEXT_TO_SQL_TMPL) TEXT2SQL_TMPL = ( "Given an input question and previous conversation, you should understand what the user is asking for then create a syntactically correct {dialect}" "DO NOT miss the [;] at the end of the query. \n\n" "query to run, then look at the results of the query and return the answer. " "You can order the results by a relevant column to return the most " "interesting examples in the database.\n\n" "Pay attention to use only the column names that you can see in the schema " "description. " "Be careful to not query for columns that do not exist. " "Pay attention to which column is in which table.\n" "If the user did not specify how many rows to return please ALWAYS USE LIMIT 5 to return 5 rows\n\n" "Also, qualify column names with the table name when needed. " "Rules:\n\n" "Only use tables listed below.\n" "{schema}\n\n" "ONLY SELECT the given columns name:" "{columns}\n\n" "Use SELECT DISTINCT to avoid duplicates. \n\n" "You are required to use and ALWAYS answer with the following format, each taking one line:\n\n" "Question: Question here\n" "SQLQuery: SQL Query to run\n" "SQLResult: Result of the SQLQuery\n" "Answer: Final answer here\n\n" "Question: {query_str}\n" "Chat History: {chat_history}\n" "SQLQuery: " ) TEXT2SQL_PROMPT = PromptTemplate(TEXT2SQL_TMPL) QUERY_REWRITE_TMPL = """ User Input: {query_str} Chat History: {chat_history} Based on the user's current input and previous chat messages, create a concise and effective Google search query. User's intention is {intention}. The query should incorporate relevant keywords, context, and any specific details from the user's input and chat history. Provide the refined search query in {language}. You ALWAYS output in the following json format: { "query": "refined search query" } """ QUERY_REWRITE_PROMPT = PromptTemplate(QUERY_REWRITE_TMPL) RESPONSE_PROMPT_TMPL = """ User is searching `{search_keyword}`. Your name is VibeMate-AI, you're a friend of users that can chat with users in friendly and little bit flirty tone. Based on the search results, write a concise and informative final response. The response should answer the user's question with useful facts and information. DON'T just describe the search results, but also provide the main points out of the search results. Respond in {language}. {search_result} ## Instructions: 1. **Contextual Awareness:** Always integrate insights from prior conversations and search results to enhance the response. 2. **Structured:** The response content should be logically clear and well-structured to ensure reader understanding. 3. **Formatting:** Use the following Markdown format to present responses: # ## ****: . ****: . ## Important note for your response: - Ensure the response is relevant and concise. - Summarize clearly, providing helpful guidance. - Results must only come from search results or previous dialogue. - Categorize redult logically by topic, functionality, or relevance. - Maintain consistent grammar and vocabulary usage to ensure overall document consistency and coherence. """ FINAL_RESPONSE_PROMPT = PromptTemplate(RESPONSE_PROMPT_TMPL) INTENT_EXTRACT_TMPL = """ You are an intelligent ai that can understand the current intention of the user based on the user'input and previous chat history\n The intentions should consider the user's input and the previous chat history.\n You ONLY output the intentions in the given possible intentions. Current intention might be more than one.\n possible intentions: {possible_intentions}\n User Input: {user_input} Chat History: {chat_history} You ALWAYS output the intentions in the following json format: { "intentions": [intentions] "adult": 1 if the user ask for adult content, 0 otherwise } """ INTENT_EXTRACT_PROMPT = PromptTemplate(INTENT_EXTRACT_TMPL) LAN_EXTRACT_TMPL = """ Detect the language of the user's current input.DON'T use abbreviation for language name like "en" for "English".\n User Input: {user_input} ALWAYS output the language in the following json format: { "language": language name } """ LAN_EXTRACT_PROMPT = PromptTemplate(LAN_EXTRACT_TMPL) KEYWORDS_EXTRACTION_TMPL = """ User Input: {query_str} Chat History: {chat_history} Based on the user's current input and previous chat messages, create a concise and effective keyword-based Google search query for image or videos. The query should incorporate relevant keywords, context, and any specific details from the user's input and chat history. You ALWAYS output in the following json format: { "keywords": [keyword] } """ KEYWORDS_EXTRACTION_PROMPT = PromptTemplate(KEYWORDS_EXTRACTION_TMPL) CASUAL_CHAT_TMPL = """ Your name is VibeMate-AI, you're a friend of users that can chat with users in friendly and little bit flirty tone. You can make interesting respond based on the user's chat history and the user's current input. You can also take the given text as a reference to make a respond.\n Maintain consistent grammar and vocabulary usage to ensure overall document consistency and coherence. Chat History: {chat_history}\n context: {context}\n User Input: {user_input}\n You MUST answer in {language}: """ CASUAL_CHAT_PROMPT = PromptTemplate(CASUAL_CHAT_TMPL) RELATED_SEARCH_TMPL = """ You are an expert of generate short and concise related search queries and tags based on the user's search keywords, chat history and retrieved content.\n Search keywords: {keywords}\n Retrieved content: {retrieved_content}\n Related search queries should based on search keywords and chat history. Tags should based on retrieved content You ALWAYS output the related search queries in the following json format:\n { "related_searches": [related_search], "tags": [tag] } """ RELATED_SEARCH_PROMPT = PromptTemplate(RELATED_SEARCH_TMPL) TAGS_GEN_TMPL = """ You are an expert of generate short and concise tags based on the given retrieved content.\n Retrieved content: {retrieved_content}\n You ALWAYS output the tags in the following json format:\n { "tags": [tag] } """ TAGS_GEN_PROMPT = PromptTemplate(TAGS_GEN_TMPL) SUMMARIZE_WEBPAGE_TMPL = """ Extract the key points and facts of the given content. Provide ONLY the points and facts.\n The response should extract the main points, key information and useful facts. DON'T use vague expression like "the article discusses ...".\n content: {webpage_content}\n """ SUMMARIZE_WEBPAGE_PROMPT = PromptTemplate(SUMMARIZE_WEBPAGE_TMPL) ALIGNMENT_PROMPT_TMPL = """ You are an expert of understanding user's intent from the user's input. \n User's Input:{user_input} The output intent must come from the given possible intentions. Possible intentions:{intent_labels} ALWAYS output in the following json format: { "intent": "current intention", "language": "using language" } """ ALIGNMENT_PROMPT = PromptTemplate(ALIGNMENT_PROMPT_TMPL) REFUSE_PROMPT_TMPL = """ Translate the following message into {language}: Sorry, but this topic isn't suitable for discussion. Feel free to ask something else, and I'll be happy to help! ONLY provide the translation itself. """ REFUSE_PROMPT = PromptTemplate(REFUSE_PROMPT_TMPL) TRANSLATE_PROMPT_TMPL = """ Translate the following message into {language}, Provide ONLY the translation itself: input: {user_input} """ TRANSLATE_PROMPT = PromptTemplate(TRANSLATE_PROMPT_TMPL) WEBSITE_SOURCE_TMPL = """ You are a expert of extracting website resources from given JSON data as reference and respond to the user's input. Respond in {language}. User's Input: {user_input} JSON data:{search_result} ALWAYS respond in following markdown format: # 1. **** - - 2. **** - - > ...... """ WEBSIT_PROMPT = PromptTemplate(WEBSITE_SOURCE_TMPL) TERM_RESPONSE_TMPL = """ Your name is VibeMate AI, you answer in a friendly and a little bit flirty tone. Based on the given context, provide a concise and accurate response to the user's question. Respond in {language}. Context: {search_result} User's Question: {user_input} ALWAYS respond in following markdown format: # # ## ## ...... # 1. **