Also:
• http://rankanything.online - rank things
• http://youtube.be/@EggPlusRadish - travel channel
• http://stefaniak.cc - more links
Imagine YouTube, Canva, Revolut, or Amazon but designed with both the human's and the AI's ease of use in mind.
What will the web look like?
Imagine YouTube, Canva, Revolut, or Amazon but designed with both the human's and the AI's ease of use in mind.
What will the web look like?
Screenshot 1: what I see
Screenshot 2 & 3: what RevenueCat and Apple docs claim I should be seeing
🙏
Screenshot 1: what I see
Screenshot 2 & 3: what RevenueCat and Apple docs claim I should be seeing
🙏
Keep reading some Github links to our codebase where you can dig into this in more detail 🧑💻
Keep reading some Github links to our codebase where you can dig into this in more detail 🧑💻
Based on our data, if the user doesn’t receive a completion within the first 300ms they’re unlikely to accept it.
That’s why, if the stream is taking too long, we display whatever we have generated so far and fetch the rest in the background.
Based on our data, if the user doesn’t receive a completion within the first 300ms they’re unlikely to accept it.
That’s why, if the stream is taking too long, we display whatever we have generated so far and fetch the rest in the background.
Some of them fix the issues, some of them have the authority to end the stream and return an empty response instead.
Some of them fix the issues, some of them have the authority to end the stream and return an empty response instead.
We have some custom, model-specific templates for the most popular models, and a generic fallback template for the remaining models.
We have some custom, model-specific templates for the most popular models, and a generic fallback template for the remaining models.
For example, if a user just created a ‘UserSettingsForm’ React component and now they’re on ‘UserSettingsPage.tsx’, the model can guess the user most likely wants to place the form there.
For example, if a user just created a ‘UserSettingsForm’ React component and now they’re on ‘UserSettingsPage.tsx’, the model can guess the user most likely wants to place the form there.
🔶 Send the template to the LLM
🔶 Process LLM’s response (pass it through filters, clean it up, etc)
🔶 Display the result (most often) or kill the completion (sometimes, when the completion is subpar)
🔶 Send the template to the LLM
🔶 Process LLM’s response (pass it through filters, clean it up, etc)
🔶 Display the result (most often) or kill the completion (sometimes, when the completion is subpar)
🔷 Suffix - everything that comes after the FIM marker
🔷 Template - prefix, suffix, and other tokens put together, to be consumed by the LLM
🔷 Suffix - everything that comes after the FIM marker
🔷 Template - prefix, suffix, and other tokens put together, to be consumed by the LLM
- Make it fast - getting a completion should be almost instant
- Fail gracefully - sometimes the LLM fails to provide a good completion and we should detect that situation and hide the completion from the user
- Make it fast - getting a completion should be almost instant
- Fail gracefully - sometimes the LLM fails to provide a good completion and we should detect that situation and hide the completion from the user
Continue is open source so I’ll post links to relevant code on Github at the end of this thread.
Continue is open source so I’ll post links to relevant code on Github at the end of this thread.