Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- Dockerfile +29 -0
- app.py +21 -0
- requirements.txt +6 -0
Dockerfile
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#use the official Python 3.11 image
|
2 |
+
FROM python:3.9
|
3 |
+
|
4 |
+
#set the working directory to /code
|
5 |
+
WORKDIR /code
|
6 |
+
|
7 |
+
#copy the current directory contents in the container at /code
|
8 |
+
COPY ./requirements.txt /code/requirements.txt
|
9 |
+
|
10 |
+
#install the requirements.txt
|
11 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
+
|
13 |
+
#setup a new user named "user"
|
14 |
+
RUN useradd user
|
15 |
+
#switch to the "user" user
|
16 |
+
USER user
|
17 |
+
|
18 |
+
#set home to user's home directory
|
19 |
+
ENV HOME=/home/user \
|
20 |
+
PATH=/home/user/.local/bin:$PATH
|
21 |
+
|
22 |
+
#set working directory to the users home directory
|
23 |
+
WORKDIR $HOME/app
|
24 |
+
|
25 |
+
#copy the current directory contents into the container at $HOME?app setting the owner to user
|
26 |
+
COPY --chown=user . $HOME/app
|
27 |
+
|
28 |
+
#start the Fastapi app on port 7860
|
29 |
+
CMD ['uvicorn', "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI
|
2 |
+
from transformers import pipeline
|
3 |
+
|
4 |
+
|
5 |
+
#create a new fastapi app instance
|
6 |
+
app = FastAPI()
|
7 |
+
|
8 |
+
#initialize text generation pipeline
|
9 |
+
pipe = pipeline("text2text-generation", model="google/flan-t5-small")
|
10 |
+
|
11 |
+
@app.get("/")
|
12 |
+
def home():
|
13 |
+
return {"Message": "Hello World"}
|
14 |
+
|
15 |
+
#def a function that handle a get request to the /generate endpoint
|
16 |
+
@app.get("/generate")
|
17 |
+
def generate(text: str):
|
18 |
+
#use the pipeline to generate the text from given input text
|
19 |
+
output = pipe(text)
|
20 |
+
#return the generated text in json response
|
21 |
+
return {"generated_text": output[0]["generated_text"]}
|
requirements.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi==0.74.*
|
2 |
+
requests==2.27.*
|
3 |
+
uvicorn[standard]==0.17.*
|
4 |
+
sentencepiece==0.1.*
|
5 |
+
torch==2.0.*
|
6 |
+
transformers==4.*
|