muhammadsalmanalfaridzi commited on
Commit
5a59447
·
verified ·
1 Parent(s): 559ce28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -41,16 +41,13 @@ session_id = st.session_state.id
41
  @st.cache_resource
42
  def load_llm():
43
  """
44
- Load and cache the SambaNova QwQ-32B LLM predictor
45
  """
46
  return SambaNovaCloud(
47
  api_key=SAMBANOVA_API_KEY,
48
- model="QwQ-32B",
49
- context_window=100_000,
50
- max_tokens=1024,
51
  temperature=0.1,
52
  top_p=0.1,
53
- streaming=True,
54
  )
55
 
56
 
 
41
  @st.cache_resource
42
  def load_llm():
43
  """
44
+ Load and cache the SambaNova LLM predictor
45
  """
46
  return SambaNovaCloud(
47
  api_key=SAMBANOVA_API_KEY,
48
+ model="DeepSeek-V3-0324",
 
 
49
  temperature=0.1,
50
  top_p=0.1,
 
51
  )
52
 
53