Update app.py
Browse files
app.py
CHANGED
|
@@ -1,63 +1,57 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
from
|
| 3 |
-
|
| 4 |
-
""
|
| 5 |
-
|
| 6 |
-
""
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
"""
|
| 43 |
-
|
| 44 |
-
""
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
],
|
| 59 |
-
)
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
if __name__ == "__main__":
|
| 63 |
-
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from datasets import load_dataset
|
| 3 |
+
|
| 4 |
+
dataset = load_dataset("ruslanmv/ai-medical-chatbot")
|
| 5 |
+
dataset = dataset.remove_columns("Description")
|
| 6 |
+
train_data = dataset["train"]
|
| 7 |
+
|
| 8 |
+
print(train_data)
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
# def respond(message, history: list[tuple[str, str]], system_message, max_tokens, temperature, top_p,):
|
| 12 |
+
# messages = [{"role": "system", "content": system_message}]
|
| 13 |
+
|
| 14 |
+
# for val in history:
|
| 15 |
+
# if val[0]:
|
| 16 |
+
# messages.append({"role": "user", "content": val[0]})
|
| 17 |
+
# if val[1]:
|
| 18 |
+
# messages.append({"role": "assistant", "content": val[1]})
|
| 19 |
+
|
| 20 |
+
# messages.append({"role": "user", "content": message})
|
| 21 |
+
|
| 22 |
+
# response = ""
|
| 23 |
+
|
| 24 |
+
# for message in client.chat_completion(
|
| 25 |
+
# messages,
|
| 26 |
+
# max_tokens=max_tokens,
|
| 27 |
+
# stream=True,
|
| 28 |
+
# temperature=temperature,
|
| 29 |
+
# top_p=top_p,
|
| 30 |
+
# ):
|
| 31 |
+
# token = message.choices[0].delta.content
|
| 32 |
+
|
| 33 |
+
# response += token
|
| 34 |
+
# yield response
|
| 35 |
+
|
| 36 |
+
# """
|
| 37 |
+
# For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 38 |
+
# """
|
| 39 |
+
# demo = gr.ChatInterface(
|
| 40 |
+
# respond,
|
| 41 |
+
# additional_inputs=[
|
| 42 |
+
# gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 43 |
+
# gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 44 |
+
# gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 45 |
+
# gr.Slider(
|
| 46 |
+
# minimum=0.1,
|
| 47 |
+
# maximum=1.0,
|
| 48 |
+
# value=0.95,
|
| 49 |
+
# step=0.05,
|
| 50 |
+
# label="Top-p (nucleus sampling)",
|
| 51 |
+
# ),
|
| 52 |
+
# ],
|
| 53 |
+
# )
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
# if __name__ == "__main__":
|
| 57 |
+
# demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|