mirror of
https://github.com/langchain-ai/deepagents.git
synced 2026-08-27 20:50:04 -04:00
2ac7d41533
Release-As: 0.1.0
15 lines
484 B
Python
15 lines
484 B
Python
"""Lightweight shared constants for the app.
|
|
|
|
This module is intentionally dependency-free (no third-party imports, no
|
|
sibling-module imports) so any other module — including the startup-critical
|
|
`main.py` and the heavy `agent.py` — can import from it without triggering a
|
|
chain of expensive imports.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
DEFAULT_AGENT_NAME: Final[str] = "agent"
|
|
"""Default agent / assistant identifier when no `-a` flag is given."""
|