zeerd commited on
Commit
00a7d5d
·
verified ·
1 Parent(s): 29c09a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,10 +21,10 @@ except Exception as e:
21
  st.stop()
22
 
23
  # 3. 问答函数
24
- def answer_question(gemma, temperature, max_length, question):
25
  # 4. 初始化 Gemma 模型
26
  try:
27
- llm = HuggingFaceEndpoint(repo_id=gemma, model_kwargs={"temperature": temperature, "max_length": max_length})
28
  except Exception as e:
29
  st.error(f"Gemma 模型加载失败:{e}")
30
  st.stop()
 
21
  st.stop()
22
 
23
  # 3. 问答函数
24
+ def answer_question(gemma, temp, max, question):
25
  # 4. 初始化 Gemma 模型
26
  try:
27
+ llm = HuggingFaceEndpoint(repo_id=gemma, temperature=temp, max_length=max)
28
  except Exception as e:
29
  st.error(f"Gemma 模型加载失败:{e}")
30
  st.stop()