Spaces:
Sleeping
Sleeping
Commit
·
8834329
1
Parent(s):
0b54314
modify app_port: 8860->8080
Browse files
README.md
CHANGED
@@ -8,7 +8,6 @@ sdk_version: 4.36.1
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: other
|
11 |
-
app_port: 8860
|
12 |
---
|
13 |
|
14 |
An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: other
|
|
|
11 |
---
|
12 |
|
13 |
An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
|
app.py
CHANGED
@@ -86,4 +86,4 @@ if __name__ == "__main__":
|
|
86 |
),
|
87 |
)
|
88 |
process.start()
|
89 |
-
demo.launch()
|
|
|
86 |
),
|
87 |
)
|
88 |
process.start()
|
89 |
+
demo.launch(server_name="127.0.0.1", server_port=8080)
|