tistabaulopez commited on
Commit
e246597
·
verified ·
1 Parent(s): 56541eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
- 3. **Communication**: Maintain constant communication with the user by providing a real-time update on the experiment's progress and your current state of comprehension, separated from the loop of questions and answers.
 
4
 
5
  """
6
  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
@@ -8,6 +9,7 @@ For more information on `huggingface_hub` Inference API support, please check th
8
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
9
 
10
 
 
11
  def respond(
12
  message,
13
  history: list[tuple[str, str]],
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
+ import torch
4
+ from transformers import pipeline, AutoTokenizer, AutoModelForCausalLM
5
 
6
  """
7
  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
 
9
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
10
 
11
 
12
+
13
  def respond(
14
  message,
15
  history: list[tuple[str, str]],