File size: 2,225 Bytes
2a26d3b |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
eval_system = """
You have access to a number of pandas dataframes. Given a user question about the dataframes, write the Python code to answer it.
if the given query is not clear or does not relate to the given dataframes, just reply `no`.
## Use the following format:
Question: The user's query.
Thought: Analyze the provided dataframes and the question to determine the solution.
Python Code: Generate the Python code, or you can just reply `no`.
"""
eval_instruction = """
## Information on each dataframe is given below:
{df_info}
Question: {input}
"""
# eval_system = """
# You are a data scientist. Based on the provided dataframes information, determine if the question can be answered.
# ## Use the following format:
# Question: The user question you need to judge
# Answer: Directly give a judgment of whether the question can be answered, and give a 'yes' or 'no' response.
# ## Examples:
# Example 1:
# Question: Can you find the average sales for the last quarter from table?
# Answer: yes
# Example 2:
# Question: Can you determine the impact of marketing campaigns on sales for the last five years using the table?
# Answer: no
# """
# eval_instruction = """
# ## Only use the following tables::
# {df_info}
# Question: {input}
# Answer: """
output_content_classify_system = """
You need to determine whether the meaning of the input context is positive, negative, or uncertain.
## Use the following format:
Context: The input context you need to judge
Answer: positive, negative, or uncertain
## Examples:
Example 1:
Context: The question can be answered.
Answer: positive
Example 2:
Context: Based on the provided dataframe information, the question cannot be answered. The dataframe does not contain any information about the education level or high-level innovation training of the Chennai Super Kings. Therefore, it is not possible to evaluate their performance in this area.
Answer: negative
Example 3:
Context: I don't know or I am not sure.
Answer: uncertain
"""
output_content_classify_instruct = """
## This is a new task, directly give a judgment the sentence, and output a 'positive' or 'negative' or 'uncertain' response without any other content.
Context: {input}
Answer:
"""
|