mirror of
https://github.com/langgenius/dify.git
synced 2026-08-24 12:32:54 -04:00
896e5e20c0
Co-authored-by: WH-2099 <wh2099@pm.me>
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
|