├── .github └── workflows │ ├── jekyll-gh-pages.yml │ └── jekyll.yml ├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── README.zh.md ├── pdl-compiler ├── .gitignore ├── Cargo.toml ├── README.md ├── README.zh.md ├── src │ └── main.rs └── template │ ├── mr.trans.pdl │ └── mr.trans.withcrate.pdl ├── prompts ├── speak.pdl └── webpilot.pdl └── templates ├── mr.trans.pdl ├── readme.md └── readme.zh.md /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/README.zh.md -------------------------------------------------------------------------------- /pdl-compiler/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /output -------------------------------------------------------------------------------- /pdl-compiler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/Cargo.toml -------------------------------------------------------------------------------- /pdl-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/README.md -------------------------------------------------------------------------------- /pdl-compiler/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/README.zh.md -------------------------------------------------------------------------------- /pdl-compiler/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/src/main.rs -------------------------------------------------------------------------------- /pdl-compiler/template/mr.trans.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/template/mr.trans.pdl -------------------------------------------------------------------------------- /pdl-compiler/template/mr.trans.withcrate.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/pdl-compiler/template/mr.trans.withcrate.pdl -------------------------------------------------------------------------------- /prompts/speak.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/prompts/speak.pdl -------------------------------------------------------------------------------- /prompts/webpilot.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/prompts/webpilot.pdl -------------------------------------------------------------------------------- /templates/mr.trans.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/templates/mr.trans.pdl -------------------------------------------------------------------------------- /templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/templates/readme.md -------------------------------------------------------------------------------- /templates/readme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangHanDong/prompt-description-language/HEAD/templates/readme.zh.md --------------------------------------------------------------------------------