mirror of
https://github.com/langgenius/dify.git
synced 2026-05-26 11:57:40 +08:00
Co-authored-by: Copilot <copilot@github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
11 lines
331 B
Python
11 lines
331 B
Python
"""Client-safe top-level exports for the Dify Agent package.
|
|
|
|
Default installs must be able to import ``dify_agent`` without pulling in server
|
|
runtime adapters or their optional dependencies. Server-only adapter entry points
|
|
remain under ``dify_agent.adapters.llm``.
|
|
"""
|
|
|
|
from dify_agent.client import Client
|
|
|
|
__all__ = ["Client"]
|