Spaces:
Runtime error
Runtime error
Gerry commited on
initial commit
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Gradio
|
| 3 |
emoji: 💬
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: purple
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Gradio 5 Chat
|
| 3 |
emoji: 💬
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: purple
|
app.py
CHANGED
|
@@ -1,63 +1,33 @@
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
def
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
):
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
for message in client.chat_completion(
|
| 31 |
-
messages,
|
| 32 |
-
max_tokens=max_tokens,
|
| 33 |
-
stream=True,
|
| 34 |
-
temperature=temperature,
|
| 35 |
-
top_p=top_p,
|
| 36 |
-
):
|
| 37 |
-
token = message.choices[0].delta.content
|
| 38 |
-
|
| 39 |
-
response += token
|
| 40 |
-
yield response
|
| 41 |
-
|
| 42 |
-
"""
|
| 43 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 44 |
-
"""
|
| 45 |
-
demo = gr.ChatInterface(
|
| 46 |
-
respond,
|
| 47 |
-
additional_inputs=[
|
| 48 |
-
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 49 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 50 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 51 |
-
gr.Slider(
|
| 52 |
-
minimum=0.1,
|
| 53 |
-
maximum=1.0,
|
| 54 |
-
value=0.95,
|
| 55 |
-
step=0.05,
|
| 56 |
-
label="Top-p (nucleus sampling)",
|
| 57 |
-
),
|
| 58 |
-
],
|
| 59 |
)
|
| 60 |
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
demo.launch()
|
|
|
|
| 1 |
+
# Import necessary libraries
|
| 2 |
import gradio as gr
|
| 3 |
+
import numpy as np
|
| 4 |
+
from transformers_js_py import TransformersJS
|
| 5 |
+
|
| 6 |
+
# Design the chatbot architecture
|
| 7 |
+
class Gradio5Chatbot:
|
| 8 |
+
def __init__(self):
|
| 9 |
+
self.model = TransformersJS("t5-small")
|
| 10 |
+
|
| 11 |
+
def generate_response(self, input_text):
|
| 12 |
+
# Implement a retrieval-augmented generation (RAG) system for up-to-date Gradio 5 information
|
| 13 |
+
# Design a modular structure for easy expansion and maintenance
|
| 14 |
+
response = self.model.generate(input_text, async_=False) # Set async_ to False
|
| 15 |
+
return response
|
| 16 |
+
|
| 17 |
+
# Implement the core chatbot functionality
|
| 18 |
+
def chatbot(input_text):
|
| 19 |
+
chatbot = Gradio5Chatbot()
|
| 20 |
+
response = chatbot.generate_response(input_text)
|
| 21 |
+
return response
|
| 22 |
+
|
| 23 |
+
# Create the Gradio 5 interface
|
| 24 |
+
demo = gr.Interface(
|
| 25 |
+
fn=chatbot,
|
| 26 |
+
inputs="text",
|
| 27 |
+
outputs="text",
|
| 28 |
+
title="Gradio 5 Chatbot",
|
| 29 |
+
description="A chatbot designed to assist with Gradio 5 development."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
)
|
| 31 |
|
| 32 |
+
# Launch the interface
|
| 33 |
+
demo.launch(show_error=True)
|
|
|