This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I want you to refine this brainstorming document into a prompt for a deep research system that will be tasked with writing a technical spike | |
research document on a software engineering project. The goal of this research is to help guide future agentic coding systems into | |
having a good understanding of the technical landscape around the software the user wants to create. | |
<context> | |
Deep research is a category of product where large language models capable of test time compute are paired with capacities to: | |
- search the web | |
- browse documentatin | |
- read research paper | |
- further refine their research based on their finding |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
import type { AnimationLength, Percentage, Size } from '$lib/circles'; | |
export let top: Percentage = undefined; | |
export let bottom: Percentage = undefined; | |
export let right: Percentage = undefined; | |
export let left: Percentage = undefined; | |
export let animatonLength: AnimationLength = 10; | |
export let size: Size; |