continue
★ continuedev/continue
● open-source coding agent

The coding agent
that works where
you already do.

An open-source coding agent — bring your own models, run it in your editor or the terminal, keep the loop in your control.

any model editor + CLI Apache-2.0
continue · agent
you › add retry with backoff to the fetch client
readsrc/net/client.ts
editsrc/net/client.ts
- const res = await fetch(url)
+ const res = await withBackoff(() => fetch(url), 3)
runnpm test · 41 passed
done — added withBackoff (3 retries, jittered) and a test.
Transcript is illustrative.