Minimal agent strategy
This commit is contained in:
4
Dockerfile
Normal file
4
Dockerfile
Normal file
@@ -0,0 +1,4 @@
|
||||
FROM python:3.10-slim
|
||||
WORKDIR /workspace
|
||||
COPY main.py .
|
||||
ENTRYPOINT ["python", "main.py"]
|
||||
2
main.py
Normal file
2
main.py
Normal file
@@ -0,0 +1,2 @@
|
||||
"""Minimal agent entrypoint for ModelHub XC."""
|
||||
print("Agent ready", flush=True)
|
||||
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
torch>=2.0.0
|
||||
transformers>=4.30.0
|
||||
huggingface_hub>=0.20.0
|
||||
modelscope>=1.10.0
|
||||
Reference in New Issue
Block a user