You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

t_agent.py 257B

123456789
  1. from ragflow_sdk import RAGFlow
  2. from common import HOST_ADDRESS
  3. import pytest
  4. @pytest.mark.skip(reason="")
  5. def test_list_agents_with_success(get_api_key_fixture):
  6. API_KEY=get_api_key_fixture
  7. rag = RAGFlow(API_KEY,HOST_ADDRESS)
  8. rag.list_agents()