diff --git a/clipea/__init__.py b/clipea/__init__.py index e4d96a5..c164570 100644 --- a/clipea/__init__.py +++ b/clipea/__init__.py @@ -2,6 +2,7 @@ 📎🟢 Like Clippy but for the CLI. A blazing fast AI helper for your command line """ import os +import sys from clipea import utils, cli @@ -13,7 +14,7 @@ ) ENV: dict[str, str] = { "shell": cli.get_shell(), - "os": os.name, + "platform": sys.platform, "editor": os.getenv("EDITOR", "nano"), } SYSTEM_PROMPT: str = utils.read_file(SYSTEM_PROMPT_FILE) + str(ENV)