We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec0b159 commit 090faf7Copy full SHA for 090faf7
src/agentex/lib/environment_variables.py
@@ -24,9 +24,10 @@ class EnvVarKeys(str, Enum):
24
ACP_URL = "ACP_URL"
25
ACP_PORT = "ACP_PORT"
26
ACP_TYPE = "ACP_TYPE"
27
- # Workflow Configuraiton
+ # Workflow Configuration
28
WORKFLOW_NAME = "WORKFLOW_NAME"
29
WORKFLOW_TASK_QUEUE = "WORKFLOW_TASK_QUEUE"
30
+ # Auth Configuration
31
AUTH_PRINCIPAL_B64 = "AUTH_PRINCIPAL_B64"
32
33
@@ -55,7 +56,7 @@ class EnvironmentVariables(BaseModel):
55
56
# Workflow Configuration
57
WORKFLOW_TASK_QUEUE: str | None = None
58
WORKFLOW_NAME: str | None = None
- BASE64_AUTH_PRINCIPAL: str | None = None
59
+ AUTH_PRINCIPAL_B64: str | None = None
60
61
@classmethod
62
def refresh(cls) -> EnvironmentVariables | None:
0 commit comments