test_constants.py 319 B

12345678
  1. from agency_swarm.agent.constants import AGENT_PARAMS, MESSAGE_PARAM
  2. def test_agent_constants_export_expected_values() -> None:
  3. assert MESSAGE_PARAM == "message"
  4. assert "conversation_starters" in AGENT_PARAMS
  5. assert "quick_replies" in AGENT_PARAMS
  6. assert "cache_conversation_starters" in AGENT_PARAMS