Spaces:
Sleeping
Sleeping
File size: 761 Bytes
5b4ee3c e4ed3d8 5b4ee3c e4ed3d8 e64f8a2 5b4ee3c 5a94381 e4ed3d8 5a94381 5b4ee3c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import gradio as gr
from huggingface_hub import InferenceClient
"""
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
This chatbot is based on the contents of https://www.gradio.app/guides/creating-a-chatbot-fast
"""
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
def simple_respond(message,history):
return f"I only say Hi, regardless of what the message that is passed in, like {message}."
"""
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
"""
demo = gr.ChatInterface(
simple_respond,
type="messages")
if __name__ == "__main__":
demo.launch()
|