avfranco commited on
Commit
6b774e4
1 Parent(s): e3243ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -17,12 +17,11 @@ pipe = pipeline(
17
  device=device,
18
  )
19
 
20
- @spaces.GPU(duration=120)
21
  def respond_to_question_llama(transcript, question):
22
  from huggingface_hub import InferenceClient
23
 
24
  client = InferenceClient(
25
- "meta-llama/Meta-Llama-3.1-70B-Instruct",
26
  token=os.environ["HUGGINGFACEHUB_API_TOKEN"],
27
  )
28
 
 
17
  device=device,
18
  )
19
 
 
20
  def respond_to_question_llama(transcript, question):
21
  from huggingface_hub import InferenceClient
22
 
23
  client = InferenceClient(
24
+ "meta-llama/Meta-Llama-3.1-8B-Instruct",
25
  token=os.environ["HUGGINGFACEHUB_API_TOKEN"],
26
  )
27