aadya1762 commited on
Commit
309f62f
·
1 Parent(s): 8200fa2
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -57,11 +57,7 @@ def main():
57
  # Main content area
58
  # Initialize model with the selected configuration
59
  model_name = st.session_state.selected_model
60
- model = LlamaCppGemmaModel(
61
- name=model_name,
62
- max_tokens=st.session_state.max_tokens,
63
- temperature=st.session_state.temperature,
64
- )
65
 
66
  # Load model (will use cached version if available)
67
  with st.spinner(f"Loading {model_name}..."):
 
57
  # Main content area
58
  # Initialize model with the selected configuration
59
  model_name = st.session_state.selected_model
60
+ model = LlamaCppGemmaModel(name=model_name)
 
 
 
 
61
 
62
  # Load model (will use cached version if available)
63
  with st.spinner(f"Loading {model_name}..."):