efederici commited on
Commit
da2f3e8
·
verified ·
1 Parent(s): b5476bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -24,8 +24,10 @@ DESCRIPTION = """<div>
24
  <p>🔎 For more details about the Maestrale model and how to use it with <code>transformers</code>, visit the <a href="https://huggingface.co/mii-llm/maestrale-chat-v0.3-beta">model card</a>.</p>
25
  </div>"""
26
 
27
- tokenizer = AutoTokenizer.from_pretrained("mii-llm/maestrale-chat-v0.4-alpha")
28
- model = AutoModelForCausalLM.from_pretrained("mii-llm/maestrale-chat-v0.4-alpha", device_map="auto")
 
 
29
 
30
  terminators = [
31
  tokenizer.eos_token_id,
 
24
  <p>🔎 For more details about the Maestrale model and how to use it with <code>transformers</code>, visit the <a href="https://huggingface.co/mii-llm/maestrale-chat-v0.3-beta">model card</a>.</p>
25
  </div>"""
26
 
27
+ _token = os.environ["HUGGINGFACE_API_KEY"]
28
+
29
+ tokenizer = AutoTokenizer.from_pretrained("mii-llm/maestrale-chat-v0.4-alpha", token=_token)
30
+ model = AutoModelForCausalLM.from_pretrained("mii-llm/maestrale-chat-v0.4-alpha", device_map="auto", token=_token)
31
 
32
  terminators = [
33
  tokenizer.eos_token_id,