Update app.py
Browse files
app.py
CHANGED
@@ -142,8 +142,9 @@ I am a helpful assistant.
|
|
142 |
)
|
143 |
|
144 |
with st.sidebar:
|
145 |
-
st.title("
|
146 |
-
st.sidebar.
|
|
|
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))
|