mirror of
https://github.com/corca-ai/EVAL
synced 2024-10-30 09:20:44 +00:00
e5165d6f90
* feat: change port variable name * feat: chdir to playground * refactor: etc * feat: add verify decorator
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
IMAGE_PROMPT = """
|
|
provide a figure named {filename}. The description is: {description}.
|
|
|
|
Please understand and answer the image based on this information. The image understanding is complete, so don't try to understand the image again.
|
|
|
|
USER INPUT
|
|
============
|
|
"""
|
|
|
|
|
|
AUDIO_PROMPT = """
|
|
provide a audio named {filename}. The description is: {description}.
|
|
|
|
Please understand and answer the audio based on this information. The audio understanding is complete, so don't try to understand the audio again.
|
|
|
|
USER INPUT
|
|
============
|
|
"""
|
|
|
|
VIDEO_PROMPT = """
|
|
provide a video named {filename}. The description is: {description}.
|
|
|
|
Please understand and answer the video based on this information. The video understanding is complete, so don't try to understand the video again.
|
|
|
|
USER INPUT
|
|
============
|
|
"""
|
|
|
|
DATAFRAME_PROMPT = """
|
|
provide a dataframe named {filename}. The description is: {description}.
|
|
|
|
You are able to use the dataframe to answer the question.
|
|
You have to act like an data analyst who can do an effective analysis through dataframe.
|
|
|
|
USER INPUT
|
|
============
|
|
"""
|