AshBlanc commited on
Commit
6878a82
·
verified ·
1 Parent(s): eb35d79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from transformers import pipeline
5
 
6
  # Load the gated model
7
  model_name = "RickyDeSkywalker/TheoremLlama"
8
- generator = pipeline('text-generation', model=model_name, token=os.getenv("HF_TOKEN"))
9
 
10
  # Streamlit app
11
  st.title("Lean 4 Code Generation with TheoremLlama")
 
5
 
6
  # Load the gated model
7
  model_name = "RickyDeSkywalker/TheoremLlama"
8
+ generator = pipeline('text-generation', model=model_name, token=os.environ.get("HF_TOKEN"))
9
 
10
  # Streamlit app
11
  st.title("Lean 4 Code Generation with TheoremLlama")