Benjamin Consolvo commited on
Commit
ee982c9
·
1 Parent(s): 9b804ec

formatting

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -25,7 +25,7 @@ with st.sidebar:
25
 
26
  # Create the selectbox without the `index` parameter
27
  modelname = st.selectbox(
28
- "Select an LLM model (Running on Intel® Gaudi®). Hosted on Denvr Dataworks",
29
  model_names,
30
  key="selected_model", # This ties the widget to st.session_state["selected_model"]
31
  )
@@ -35,9 +35,9 @@ with st.sidebar:
35
  st.markdown("---") # Add a horizontal line for separation
36
  st.markdown(
37
  """
38
- **Check the latest models hosted on [Denvr Dataworks](https://www.denvrdata.com/intel), and get your own OpenAI-compatible API key.**
39
 
40
- **Come and chat with other AI developers on [Intel’s DevHub Discord server](https://discord.gg/kfJ3NKEw5t).**
41
  """
42
  )
43
 
 
25
 
26
  # Create the selectbox without the `index` parameter
27
  modelname = st.selectbox(
28
+ "Select an LLM model (Running on Intel® Gaudi®). Hosted on Denvr Dataworks.",
29
  model_names,
30
  key="selected_model", # This ties the widget to st.session_state["selected_model"]
31
  )
 
35
  st.markdown("---") # Add a horizontal line for separation
36
  st.markdown(
37
  """
38
+ Check the latest models hosted on [Denvr Dataworks](https://www.denvrdata.com/intel), and get your own OpenAI-compatible API key.
39
 
40
+ Come and chat with other AI developers on [Intel’s DevHub Discord server](https://discord.gg/kfJ3NKEw5t).
41
  """
42
  )
43