diff --git a/clipea/__init__.py b/clipea/__init__.py index c164570..9afcef8 100644 --- a/clipea/__init__.py +++ b/clipea/__init__.py @@ -14,7 +14,7 @@ ) ENV: dict[str, str] = { "shell": cli.get_shell(), - "platform": sys.platform, + "platform": os.getenv("OS", sys.platform), "editor": os.getenv("EDITOR", "nano"), } SYSTEM_PROMPT: str = utils.read_file(SYSTEM_PROMPT_FILE) + str(ENV)