Xavier Antonio Ochoa Chehab commited on
Commit ·
2b3c3e9
1
Parent(s): 903d0d8
New
Browse files- Dockerfile +16 -0
- app.py +18 -0
- requirements.txt +2 -0
Dockerfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
| 2 |
+
# you will also find guides on how best to write your Dockerfile
|
| 3 |
+
|
| 4 |
+
FROM python:3.9
|
| 5 |
+
|
| 6 |
+
RUN useradd -m -u 1000 user
|
| 7 |
+
USER user
|
| 8 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
+
|
| 10 |
+
WORKDIR /app
|
| 11 |
+
|
| 12 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
| 13 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
+
|
| 15 |
+
COPY --chown=user . /app
|
| 16 |
+
CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import chainlit as cl
|
| 2 |
+
from langflow.load import run_flow_from_json
|
| 3 |
+
|
| 4 |
+
TWEAKS = {
|
| 5 |
+
"ChatInput-w2pkG": {},
|
| 6 |
+
"Prompt-6H4qF": {},
|
| 7 |
+
"ChatOutput-Xju6V": {},
|
| 8 |
+
"GoogleGenerativeAIModel-xh97T": {"user id": "user_id"}
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
@cl.on_message
|
| 12 |
+
async def main(message: cl.Message):
|
| 13 |
+
response = run_flow_from_json(flow="Basic Prompting.json",
|
| 14 |
+
tweaks=TWEAKS,
|
| 15 |
+
input_value=message.content,
|
| 16 |
+
session_id="1234",
|
| 17 |
+
cache="InMemoryCache")
|
| 18 |
+
await cl.Message(response[0].outputs[0].results["message"].text).send()
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
chainlit
|
| 2 |
+
langflow
|