Skip to content

Commit

Permalink
feat: allow choosing between dark and light mode demo
Browse files Browse the repository at this point in the history
  • Loading branch information
UniverseFly committed Aug 23, 2023
1 parent 6c3c5d1 commit 722e914
Show file tree
Hide file tree
Showing 3 changed files with 2,309 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

Welcome to the source code repo of **Rectify**, a patch generation tool introduced in our ESEC/FSE'23 paper "Copiloting the Copilot: Fusing Large Language Models with Completion Engines for Automated Program Repair"!

![A Demo of Rectify](/assets/Rectify-Demo.svg)
<picture>
<source media="(prefers-color-scheme: dark)" srcset="/assets/Rectify-Demo-Light.svg">
<source media="(prefers-color-scheme: light)" srcset="/assets/Rectify-Demo-Dark.svg">
<img alt="Rectify Demo" src="/assets/Rectify-Demo-Light.svg">
</picture>

Rectify leverages the synergy between a semantics-based code completion engine and an auto-regressive large language model for more efficient valid patch generation.

Expand Down
Loading

0 comments on commit 722e914

Please sign in to comment.