diff --git a/Dockerfile b/Dockerfile index ca536c4..359f324 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,6 @@ EXPOSE 7860 ENV GRADIO_SERVER_NAME="127.0.0.1" # Define the command to run the application -CMD ["python", "webui.py"] +CMD ["python", "app/webui.py"] diff --git a/README.md b/README.md index 114442e..49c6e8b 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Replace `http://example.com/document` with the actual URL of the document you wa To use the webpage summarizer in you web browser, you can also try gradio app. ```bash -python webui.py +python app/webui.py ``` ![gradio](assets/gradio.png) diff --git a/summarizer.py b/app/summarizer.py similarity index 100% rename from summarizer.py rename to app/summarizer.py diff --git a/translator.py b/app/translator.py similarity index 100% rename from translator.py rename to app/translator.py diff --git a/webui.py b/app/webui.py similarity index 100% rename from webui.py rename to app/webui.py diff --git a/yt_summarizer.py b/app/yt_summarizer.py similarity index 100% rename from yt_summarizer.py rename to app/yt_summarizer.py