mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-07-04 15:41:09 +00:00

### What problem does this PR solve? Fix errors detected by Ruff ### Type of change - [x] Refactoring
9 lines
257 B
Python
9 lines
257 B
Python
from ragflow_sdk import RAGFlow
|
|
from common import HOST_ADDRESS
|
|
import pytest
|
|
|
|
@pytest.mark.skip(reason="")
|
|
def test_list_agents_with_success(get_api_key_fixture):
|
|
API_KEY=get_api_key_fixture
|
|
rag = RAGFlow(API_KEY,HOST_ADDRESS)
|
|
rag.list_agents() |