dify/api/services/agent/agent_soul_state.py
yyh 5e8c182970
fix(agent-v2): filter workflow invite options (#37368)
Co-authored-by: Yansong Zhang <916125788@qq.com>
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