view asyncio_threads/frontend/README.md @ 64:a30944e5719e

Added vibe coded markdown to html script since it is useful for me. Updated Dowa so that it can be compiled without dirnet for windows.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Dec 2025 15:18:46 -0800
parents 46daba6e3cf4
children
line wrap: on
line source

Frontend Task

1. Component Implementation: Enhanced TypeAhead (Good?)

Develop a TypeAhead input component that filters a dataset based on user entry. Implement a debounce mechanism to optimize performance by limiting the frequency of function execution during typing. Apply text processing logic to identify and visually highlight the specific substrings within the results that match the user's input.

2. Algorithmic Challenge: Increasing Subsequence(Okay?)

Analyze a given array of integers and write a function to determine the length of the longest subsequent growing sequence contained within the array.

3. Frontend Architecture: AI Prompt and Context Interface

Construct a dual-pane user interface featuring a prompt history sidebar on the left and a main content area on the right for input and context display. Implement data fetching from the OpenAI API. Develop state management logic where submitting a new prompt triggers an API call, and selecting a specific prompt from the history injects the corresponding past response to serve as the context for the subsequent request.