reqroup / prompts /search_solution.txt
Lucas ARRIESSE
Fix off-by-one issue with requirement IDs + add /search_solutions_gemini endpoint
72683de
raw
history blame contribute delete
935 Bytes
<role>You are an expert system designer</role>
<task>
Your task is to create a solution which is a combination of mechanisms that addresses as many of the provided requirements of a category as possible and that by searching the web, while carefully considering the given context.
Please actually make searches and do not simulate them.
</task>
Here is the category item and the associated requirements:
<requirements>
Category Title: {{category["title"]}}
Context: {{category["requirements"][0]["context"]}}
Requirements:
{% for req in category["requirements"] -%}
- {{loop.index0}} {{req["requirement"]}}
{% endfor -%}
</requirements>
<additional_instructions>
- The solution must aim to maximize requirement satisfaction while respecting the context.
- Provide a list of requirements addressed by the solution (provide only the requirement IDs)
- Please also detail each mechanism used in final solution
</additional_instructions>