jonaschua commited on
Commit
e0b2449
·
verified ·
1 Parent(s): affcac2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -16,7 +16,9 @@ import streamlit as st
16
  import requests
17
 
18
  # Hugging Face API URL
19
- API_URL = "https://api-inference.huggingface.co/models/deepseek-ai/DeepSeek-R1-Distill-Llama-8B"
 
 
20
 
21
  HF_TOKEN = os.getenv('hftoken')
22
 
 
16
  import requests
17
 
18
  # Hugging Face API URL
19
+ # API_URL = "https://api-inference.huggingface.co/models/deepseek-ai/DeepSeek-R1-Distill-Llama-8B" #
20
+ # The model meta-llama/Meta-Llama-3-8B is too large to be loaded automatically (16GB > 10GB). Please use Spaces (https://huggingface.co/spaces) or Inference Endpoints (https://huggingface.co/inference-endpoints).
21
+ API_URL = "https://api-inference.huggingface.co/models/deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B"
22
 
23
  HF_TOKEN = os.getenv('hftoken')
24