Skip to content

Instantly share code, notes, and snippets.

@dipankardas011
Last active June 10, 2023 11:44
Show Gist options
  • Save dipankardas011/2c6b5e4870e335098e1d901f61716841 to your computer and use it in GitHub Desktop.
Save dipankardas011/2c6b5e4870e335098e1d901f61716841 to your computer and use it in GitHub Desktop.
kubesimplify-hugging-face
from fastapi import FastAPI
from fastapi.responses import RedirectResponse
import requests
#### Add the model specific variables
app = FastAPI()
@app.get("/")
async def docs_redirect():
return RedirectResponse(url='/docs')
@app.get("/generate")
def generate(url: str):
# to be filled
output = ..... # to be filled
return {"output": output,}
# Use the official Python 3.9 image
FROM python:3.9
# Set the working directory to /code
WORKDIR /code
# Copy the current directory contents into the container at /code
COPY ./requirements.txt /code/requirements.txt
# Install requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user
ENV PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=user . $HOME/app
# Start the FastAPI app on port 7860, the default port expected by Spaces
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
fastapi==0.74.*
requests==2.27.*
uvicorn[standard]==0.17.*
sentencepiece==0.1.*
torch==1.11.*
transformers==4.*
<Add additional packages>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment