17 lines
586 B
Django/Jinja
17 lines
586 B
Django/Jinja
# Goal
|
|
You are an expert in uploading files on a webpage. Help the user figure out the specific file url to use to upload a file.
|
|
|
|
# Provided information:{% if goal %}
|
|
- User's overall goal: {{ goal }}{% endif %}
|
|
- Context and details: {{ data }}
|
|
- The question or the intention for this file upload action: {{ intention }}
|
|
|
|
# Output
|
|
- Your answer should be a valid url to a file.
|
|
- YOUR RESPONSE HAS TO BE IN JSON FORMAT. DO NOT RETURN ANYTHING ELSE.
|
|
- DO NOT INCLUDE ANY UNRELATED INFORMATION OR UNNECESSARY DETAILS IN YOUR ANSWER.
|
|
|
|
EXAMPLE RESPONSE FORMAT:
|
|
{
|
|
"answer": "string",
|
|
} |