Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

import locale
import logging
import os
import sys
import uuid
from collections.abc import Mapping
Expand Down Expand Up @@ -709,6 +710,8 @@ def _to_powerfx_symbols(self) -> dict[str, Any]:
"Agent": agent_data,
"Conversation": conversation_data,
"System": system_data,
# Match .NET declarative workflows that use =Env.VAR_NAME.
"Env": dict(os.environ),
Comment thread
peibekwe marked this conversation as resolved.
Outdated
# Also expose inputs at top level for backward compatibility with =inputs.X syntax
"inputs": inputs_data,
# Custom namespaces
Expand Down
Loading
Loading