Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,7 @@ from huggingface_hub import InferenceClient
|
|
| 3 |
"""
|
| 4 |
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
|
| 5 |
"""
|
|
|
|
| 6 |
client = InferenceClient("meta-llama/Llama-3.2-1B")
|
| 7 |
|
| 8 |
|
|
|
|
| 3 |
"""
|
| 4 |
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
|
| 5 |
"""
|
| 6 |
+
login(token=os.getenv('TOKEN'))
|
| 7 |
client = InferenceClient("meta-llama/Llama-3.2-1B")
|
| 8 |
|
| 9 |
|