Files
manual_slop/tests/test_agent_capabilities.py
2026-02-28 09:06:45 -05:00

13 lines
275 B
Python

import pytest
import sys
import os
# Ensure project root is in path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import ai_client
def test_agent_capabilities_listing():
# Verify that the agent exposes its available tools correctly
pass