commit 596b34f600593a2d782b6d915c57d350dddf0fd6 Author: 7355608 <7355608@dev.modelhub.org.cn> Date: Fri Jul 3 22:02:12 2026 +0800 Minimal agent strategy diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8a90e6b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM python:3.10-slim +WORKDIR /workspace +COPY main.py . +ENTRYPOINT ["python", "main.py"] diff --git a/main.py b/main.py new file mode 100644 index 0000000..5734a7c --- /dev/null +++ b/main.py @@ -0,0 +1,2 @@ +"""Minimal agent entrypoint for ModelHub XC.""" +print("Agent ready", flush=True) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..eaf3d26 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +torch>=2.0.0 +transformers>=4.30.0 +huggingface_hub>=0.20.0 +modelscope>=1.10.0