diff --git a/docs/README.md b/docs/README.md index f7adfed..8af0245 100644 --- a/docs/README.md +++ b/docs/README.md @@ -34,10 +34,10 @@ You can customize the script by modifying the following variables at the beginni - `CATEGORIES`: The categories to be used in the YAML front matter. Default is `AI`. - `TAGS`: The tags to be used in the YAML front matter. Default is `ai`. -## License - -This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. - ## Showcases - [My Tech Blog](https://rabestro.github.io/) - My personal tech blog where I publish my GPT-4 chat sessions. + +## License + +This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. diff --git a/gpt4-session-to-md.jq b/gpt4-session-to-md.jq deleted file mode 100755 index 4206aff..0000000 --- a/gpt4-session-to-md.jq +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env jq --raw-output --from-file -# -# Copyright (c) 2023 Jegors Čemisovs -# License: MIT -# Repository: https://github.com/rabestro/gpt4-session-to-markdown -# -# Converts GPT-4 chat session JSON data into readable Markdown format -# - -.history[0] | -("# \(.name)\n\n" + -"
\n" + -"Model: \(.model.name), Temperature: \(.temperature)\n" + -"\(.prompt)\n" + -"
\n\n___\n\n") + ( - .messages | map( - ( - if .role == "user" then "👤" else "🤖" end - ) + " \(.content)\n" - ) | join("\n") -)