Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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 |
-
|
28 |
-
|
|
|
|
|
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,
|