Spaces:
Running
Running
Hugging Face Version
Browse files- hf/Dockerfile β Dockerfile +3 -2
- README.md +8 -0
- hf/requirements.txt β requirements.txt +0 -0
hf/Dockerfile β Dockerfile
RENAMED
@@ -5,7 +5,8 @@ FROM python:3.10-slim
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
-
COPY . /app
|
|
|
9 |
|
10 |
# Install any needed packages specified in requirements.txt
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
@@ -17,4 +18,4 @@ EXPOSE 8501
|
|
17 |
RUN chmod +x run.py
|
18 |
|
19 |
# Run the application
|
20 |
-
ENTRYPOINT ["streamlit", "run", "
|
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
+
COPY app.py /app/app.py
|
9 |
+
COPY requirements.txt /app/requirements.txt
|
10 |
|
11 |
# Install any needed packages specified in requirements.txt
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
18 |
RUN chmod +x run.py
|
19 |
|
20 |
# Run the application
|
21 |
+
ENTRYPOINT ["streamlit", "run", "app.py"]
|
README.md
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
## How to Chat with a Website Using WatsonX
|
2 |
|
3 |
Hello everyone! Today, we're going to create an exciting web app that allows us to chat with any website using Watsonx.ai.
|
|
|
1 |
+
---
|
2 |
+
title: WatsonX WebChat
|
3 |
+
emoji: π
|
4 |
+
colorFrom: pink
|
5 |
+
colorTo: gray
|
6 |
+
sdk: docker
|
7 |
+
pinned: false
|
8 |
+
---
|
9 |
## How to Chat with a Website Using WatsonX
|
10 |
|
11 |
Hello everyone! Today, we're going to create an exciting web app that allows us to chat with any website using Watsonx.ai.
|
hf/requirements.txt β requirements.txt
RENAMED
File without changes
|