Files
dify/api/services/agent/agent_soul_state.py
2026-06-12 08:20:29 +00:00

7 lines
253 B
Python

from models.agent_config_entities import AgentSoulConfig
def agent_soul_has_model(agent_soul: AgentSoulConfig) -> bool:
"""Return whether the Agent Soul has the minimum model config required for runtime."""
return agent_soul.model is not None