mirror of
https://github.com/langgenius/dify.git
synced 2026-06-13 20:24:18 +08:00
7 lines
253 B
Python
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
|