CoolFace
Apppublic

rehan597/function-calling

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
Dockerfile7 linesDownload Raw Back to root
1FROM python:3.11-slim2WORKDIR /app3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY main.py .6EXPOSE 78607CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]