ManuelMagana commited on
Commit
daea277
·
1 Parent(s): e9461ba

Adapting the app to our finetuned model.

Browse files
Files changed (1) hide show
  1. app.py +5 -9
app.py CHANGED
@@ -1,20 +1,16 @@
 
 
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
 
4
  """
5
  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
6
  """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
9
 
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
  messages = [{"role": "system", "content": system_message}]
19
 
20
  for val in history:
 
1
+ import os
2
+ from dotenv import load_dotenv
3
+ load_dotenv()
4
  import gradio as gr
5
  from huggingface_hub import InferenceClient
6
 
7
  """
8
  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
  """
10
+ client = InferenceClient(model="Layer7/autotrain-llama32-1b-finetuned", token=os.getenv("HF_TOKEN"))
11
 
12
 
13
+ def respond(message, history: list[tuple[str, str]], system_message, max_tokens, temperature, top_p):
 
 
 
 
 
 
 
14
  messages = [{"role": "system", "content": system_message}]
15
 
16
  for val in history: