You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Users may want to generate a devcontainer.json for new projects that do not yet have any code. Relying solely on repository content is not possible in such cases, necessitating an alternative approach for generating meaningful configurations.
Describe the solution you'd like
Implement a new feature that uses embeddings stored in the database and performs a similarity search to generate a devcontainer.json based on natural language descriptions and examples.
Allow users to input a description of their new project, which will be used to find similar projects in the database.
Generate a devcontainer.json template by adapting the configurations of those similar projects.
Describe alternatives you've considered
Using static templates, but this wouldn't be as flexible or tailored to specific project needs.
Additional context
Frontend Changes:
Update the user interface to include an input field for natural language descriptions of new projects.
Add an option for users to generate devcontainer.json for projects without existing code.
Backend Changes:
Implement functionality to fetch and utilize embeddings from the database.
Perform similarity searches against stored embeddings to find related project configurations.
Use these configurations to generate a new devcontainer.json template customized to the user's project description.
Database Changes:
Ensure embeddings generated during previous processes are stored and retrievable.
Optimize database schema and indexing for efficient similarity searches.
Testing:
Thoroughly test the feature to ensure that natural language inputs produce relevant and useful devcontainer.json configurations.
Validate the generated configurations to ensure they meet the requirements of the projects they are intended to support.
The text was updated successfully, but these errors were encountered:
If no one is assigned to the issue, feel free to tackle it, without confirmation from us, after registering your attempt. In the event that multiple PRs are made from different people, we will generally accept those with the cleanest code.
Please respect others by working on PRs that you are allowed to submit attempts to.
e.g. If you reached the limit of active attempts, please wait for the ability to do so before submitting a new PR.
If you can not submit an attempt, you will not receive your payout.
Thank you for contributing to daytonaio/devcontainer-generator!
Is your feature request related to a problem? Please describe.
Users may want to generate a
devcontainer.json
for new projects that do not yet have any code. Relying solely on repository content is not possible in such cases, necessitating an alternative approach for generating meaningful configurations.Describe the solution you'd like
devcontainer.json
based on natural language descriptions and examples.devcontainer.json
template by adapting the configurations of those similar projects.Describe alternatives you've considered
Additional context
Frontend Changes:
devcontainer.json
for projects without existing code.Backend Changes:
devcontainer.json
template customized to the user's project description.Database Changes:
Testing:
devcontainer.json
configurations.The text was updated successfully, but these errors were encountered: