Baptiste Gaultier commited on
Commit
08f3b03
·
1 Parent(s): f45bfc2

Force gradio version to 4.44.0

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -4,6 +4,9 @@ import os
4
 
5
  HF_TOKEN = os.getenv('HF_TOKEN')
6
 
 
 
 
7
  client = InferenceClient("meta-llama/Meta-Llama-3-8B-Instruct", token=HF_TOKEN)
8
 
9
  def respond(
@@ -764,9 +767,9 @@ demo = gr.ChatInterface(
764
  clear_btn="🗑️ Effacer la conversation",
765
  examples=[
766
  ["Peux-tu m'en dire plus sur le module micropython machine ?"],
767
- ["Comment faire clignote une LED simple branchée sur la broche P0 en utilisant pin.on() et pin.off() et sans utiliser le module thingz ?"],
768
  ["Connais-tu le sous module thingz.led ?"],
769
- ["Comment faire une requête GET en utilisant le module micropython urequests ?"],
770
  ],
771
  cache_examples=False,
772
  js=js_code,
 
4
 
5
  HF_TOKEN = os.getenv('HF_TOKEN')
6
 
7
+ os.system("pip uninstall -y gradio")
8
+ os.system("pip install gradio==4.44.0")
9
+
10
  client = InferenceClient("meta-llama/Meta-Llama-3-8B-Instruct", token=HF_TOKEN)
11
 
12
  def respond(
 
767
  clear_btn="🗑️ Effacer la conversation",
768
  examples=[
769
  ["Peux-tu m'en dire plus sur le module micropython machine ?"],
770
+ ["Comment faire clignoter une LED simple branchée sur la broche P0 en utilisant pin.on() et pin.off() et sans utiliser le module thingz ?"],
771
  ["Connais-tu le sous module thingz.led ?"],
772
+ ["Comment se connecter au wifi puis faire une requête HTTP GET en utilisant le module micropython requests ?"],
773
  ],
774
  cache_examples=False,
775
  js=js_code,