import sys
from pathlib import Path

ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(ROOT))

from explorer.gateway.client import GatewayClient

from explorer.api.project import ProjectAPI

from explorer.context import ExplorerContext

ctx = ExplorerContext(
    explorer_root=r"D:\xampp\htdocs\manyfest\explorerAssistGPT"
)

client = GatewayClient(
    "http://localhost/manyfest/explorerAssistGPT/gateway/api"
)


print(ctx.project.info())