"vscode:/vscode.git/clone" did not exist on "841d4d40921355352b236921fa06f92de71d6320"
  1. 11 Sep, 2023 1 commit
  2. 09 Sep, 2023 1 commit
  3. 08 Sep, 2023 2 commits
  4. 07 Sep, 2023 7 commits
  5. 06 Sep, 2023 13 commits
  6. 05 Sep, 2023 10 commits
  7. 03 Sep, 2023 3 commits
  8. 02 Sep, 2023 1 commit
  9. 01 Sep, 2023 2 commits
    • Quinn Slack's avatar
      do not HTML-escape prompt · 62d29b21
      Quinn Slack authored
      The `html/template` package automatically HTML-escapes interpolated strings in templates. This behavior is undesirable because it causes prompts like `<h1>hello` to be escaped to `&lt;h1&gt;hello` before being passed to the LLM.
      
      The included test case passes, but before the code change, it failed:
      
      ```
      --- FAIL: TestModelPrompt
          images_test.go:21: got "a&lt;h1&gt;b", want "a<h1>b"
      ```
      62d29b21
    • Michael Yang's avatar
      update readme (#451) · ed19d10a
      Michael Yang authored
      * update readme
      
      * readme: more run examples
      ed19d10a