Add Streamlit app files
Browse files- .dockerignore +0 -9
- README.md +5 -10
- dockerfile +0 -14
.dockerignore
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
__pycache__/
|
| 2 |
-
*.pyc
|
| 3 |
-
*.pyo
|
| 4 |
-
*.pyd
|
| 5 |
-
*.db
|
| 6 |
-
.env
|
| 7 |
-
.vscode/
|
| 8 |
-
.idea/
|
| 9 |
-
.env
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
|
@@ -1,13 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
title: Reasonify
|
| 3 |
emoji: 🧠
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
-
sdk:
|
| 7 |
-
|
| 8 |
-
pinned: false
|
| 9 |
---
|
| 10 |
-
|
| 11 |
-
# Reasonify 🧠
|
| 12 |
-
|
| 13 |
-
A reasoning playground to see LLM's thinking and self consistency.
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Reasonify 🧠
|
| 3 |
emoji: 🧠
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
app_file: app/streamlitApp.py
|
|
|
|
| 8 |
---
|
|
|
|
|
|
|
|
|
|
|
|
dockerfile
DELETED
|
@@ -1,14 +0,0 @@
|
|
| 1 |
-
FROM python:3.10-slim
|
| 2 |
-
|
| 3 |
-
RUN useradd -m -u 1000 user
|
| 4 |
-
USER user
|
| 5 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
| 6 |
-
|
| 7 |
-
WORKDIR /app
|
| 8 |
-
|
| 9 |
-
COPY --chown=user requirements.txt .
|
| 10 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
-
|
| 12 |
-
COPY --chown=user . /app
|
| 13 |
-
|
| 14 |
-
CMD ["streamlit", "run", "app/streamlitApp.py", "--server.port=7860", "--server.address=0.0.0.0"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|