├── .gitignore ├── README.md ├── configs ├── .gitignore └── config.yaml ├── go.mod ├── go.sum ├── main.go ├── model.go ├── resources ├── add-external-program.png └── preview.png ├── static ├── sentence-prompt.md ├── sentence.html.tmpl ├── user-input.md ├── word-prompt.md └── word.html.tmpl ├── template.go └── template_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/README.md -------------------------------------------------------------------------------- /configs/.gitignore: -------------------------------------------------------------------------------- 1 | config.*.yaml 2 | -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/main.go -------------------------------------------------------------------------------- /model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/model.go -------------------------------------------------------------------------------- /resources/add-external-program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/resources/add-external-program.png -------------------------------------------------------------------------------- /resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/resources/preview.png -------------------------------------------------------------------------------- /static/sentence-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/static/sentence-prompt.md -------------------------------------------------------------------------------- /static/sentence.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/static/sentence.html.tmpl -------------------------------------------------------------------------------- /static/user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/static/user-input.md -------------------------------------------------------------------------------- /static/word-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/static/word-prompt.md -------------------------------------------------------------------------------- /static/word.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/static/word.html.tmpl -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/template.go -------------------------------------------------------------------------------- /template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitsang/goldendict-llm/HEAD/template_test.go --------------------------------------------------------------------------------