Use javascript functions for prompt completions instead of templated json

This commit is contained in:
Kyle Corbitt
2023-07-13 18:01:07 -07:00
parent 1776da937a
commit 4770ea34a8
33 changed files with 1654 additions and 215 deletions

6
src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
// Any import that ends in .txt should be treated as a string
declare module "*.txt" {
const content: string;
export default content;
}