mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 20:43:55 +08:00
11 lines
241 B
Python
11 lines
241 B
Python
"""Stable values passed from API admission into application services."""
|
|
|
|
from typing import NamedTuple
|
|
|
|
|
|
class RequestContext(NamedTuple):
|
|
request_id: str
|
|
trace_id: str | None
|
|
account_id: str
|
|
active_workspace_id: str | None
|