2 Commits
v1.1 ... v3.0

Author SHA1 Message Date
7355608
21c8d7b5a2 Alpine minimal Dockerfile 2026-07-03 22:07:53 +08:00
7355608
96a4cfe6bc Minimal config-only repo 2026-07-03 22:05:29 +08:00
4 changed files with 3 additions and 9 deletions

View File

@@ -1,4 +1,3 @@
FROM python:3.10-slim FROM alpine:latest
WORKDIR /workspace WORKDIR /workspace
COPY main.py . ENTRYPOINT ["echo", "ready"]
ENTRYPOINT ["python", "main.py"]

1
README.md Normal file
View File

@@ -0,0 +1 @@
# P800 vLLM Agent

View File

@@ -1,2 +0,0 @@
"""Minimal agent entrypoint for ModelHub XC."""
print("Agent ready", flush=True)

View File

@@ -1,4 +0,0 @@
torch>=2.0.0
transformers>=4.30.0
huggingface_hub>=0.20.0
modelscope>=1.10.0