Upload folder using huggingface_hub
Browse files- requirements.txt +2 -2
- run.ipynb +1 -1
- run.py +1 -3
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
gradio-client @ git+https://github.com/gradio-app/gradio@
|
2 |
-
https://gradio-builds.s3.amazonaws.com/
|
|
|
1 |
+
gradio-client @ git+https://github.com/gradio-app/gradio@9b42ba8f1006c05d60a62450d3036ce0d6784f86#subdirectory=client/python
|
2 |
+
https://gradio-builds.s3.amazonaws.com/9b42ba8f1006c05d60a62450d3036ce0d6784f86/gradio-4.39.0-py3-none-any.whl
|
run.ipynb
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatinterface_system_prompt"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import time\n", "\n", "
|
|
|
1 |
+
{"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: chatinterface_system_prompt"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import time\n", "\n", "def echo(message, history, system_prompt, tokens):\n", " response = f\"System prompt: {system_prompt}\\n Message: {message}.\"\n", " for i in range(min(len(response), int(tokens))):\n", " time.sleep(0.05)\n", " yield response[: i + 1]\n", "\n", "demo = gr.ChatInterface(\n", " echo,\n", " additional_inputs=[\n", " gr.Textbox(\"You are helpful AI.\", label=\"System Prompt\"),\n", " gr.Slider(10, 100),\n", " ],\n", ")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
|
run.py
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
import time
|
3 |
|
4 |
-
|
5 |
def echo(message, history, system_prompt, tokens):
|
6 |
response = f"System prompt: {system_prompt}\n Message: {message}."
|
7 |
for i in range(min(len(response), int(tokens))):
|
8 |
time.sleep(0.05)
|
9 |
yield response[: i + 1]
|
10 |
|
11 |
-
|
12 |
demo = gr.ChatInterface(
|
13 |
echo,
|
14 |
additional_inputs=[
|
@@ -18,4 +16,4 @@ demo = gr.ChatInterface(
|
|
18 |
)
|
19 |
|
20 |
if __name__ == "__main__":
|
21 |
-
demo.
|
|
|
1 |
import gradio as gr
|
2 |
import time
|
3 |
|
|
|
4 |
def echo(message, history, system_prompt, tokens):
|
5 |
response = f"System prompt: {system_prompt}\n Message: {message}."
|
6 |
for i in range(min(len(response), int(tokens))):
|
7 |
time.sleep(0.05)
|
8 |
yield response[: i + 1]
|
9 |
|
|
|
10 |
demo = gr.ChatInterface(
|
11 |
echo,
|
12 |
additional_inputs=[
|
|
|
16 |
)
|
17 |
|
18 |
if __name__ == "__main__":
|
19 |
+
demo.launch()
|