eaglelandsonce commited on
Commit
d7a2a02
1 Parent(s): 000da61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -377,13 +377,18 @@ with tab3:
377
 
378
  # User inputs
379
  query = st.text_area("Enter your text for query tuning", "", height=100)
380
- lambda_val = st.slider("Lambda Value", min_value=0.0, max_value=1.0, value=0.5)
381
- top_k = st.number_input("Top K Results", min_value=1, max_value=50, value=10)
382
 
383
  """
384
  Example: Ms. Sarah Lee, a 22-year-old female college student with a history of mild intermittent asthma, presented with worsening shortness of breath and chest tightness during exercise, necessitating increased use of her albuterol inhaler for temporary relief. The details for "Assessment and Plan" were not provided in the extracted data, so a comprehensive summary integrating both Chief Complaint and specific management or treatment plans cannot be completed based on the available information.
385
 
386
  """
 
 
 
 
 
 
 
387
 
388
  if st.button("Query Vectara"):
389
  config = {
 
377
 
378
  # User inputs
379
  query = st.text_area("Enter your text for query tuning", "", height=100)
 
 
380
 
381
  """
382
  Example: Ms. Sarah Lee, a 22-year-old female college student with a history of mild intermittent asthma, presented with worsening shortness of breath and chest tightness during exercise, necessitating increased use of her albuterol inhaler for temporary relief. The details for "Assessment and Plan" were not provided in the extracted data, so a comprehensive summary integrating both Chief Complaint and specific management or treatment plans cannot be completed based on the available information.
383
 
384
  """
385
+
386
+
387
+
388
+ lambda_val = st.slider("Lambda Value", min_value=0.0, max_value=1.0, value=0.5)
389
+ top_k = st.number_input("Top K Results", min_value=1, max_value=50, value=10)
390
+
391
+
392
 
393
  if st.button("Query Vectara"):
394
  config = {