RAHMAN00700 commited on
Commit
e65e1ad
·
unverified ·
1 Parent(s): d59655d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -142,8 +142,9 @@ I am a helpful assistant.
142
  )
143
 
144
  with st.sidebar:
145
- st.title("Watsonx RAG: Multi-Document Retrieval")
146
- st.sidebar.markdown("Developed by **Rahman**")
 
147
  watsonx_model = st.selectbox("Model", ["meta-llama/llama-3-405b-instruct", "codellama/codellama-34b-instruct-hf", "ibm/granite-20b-multilingual"])
148
  max_new_tokens = st.slider("Max output tokens", min_value=100, max_value=4000, value=600, step=100)
149
  decoding_method = st.radio("Decoding", (DecodingMethods.GREEDY.value, DecodingMethods.SAMPLE.value))
 
142
  )
143
 
144
  with st.sidebar:
145
+ st.title("Multi-Document Retrieval with Watsonx")
146
+ st.sidebar.write("")
147
+ st.sidebar.markdown("Developed by **Abdul Rahman H**")
148
  watsonx_model = st.selectbox("Model", ["meta-llama/llama-3-405b-instruct", "codellama/codellama-34b-instruct-hf", "ibm/granite-20b-multilingual"])
149
  max_new_tokens = st.slider("Max output tokens", min_value=100, max_value=4000, value=600, step=100)
150
  decoding_method = st.radio("Decoding", (DecodingMethods.GREEDY.value, DecodingMethods.SAMPLE.value))