northern-64bit commited on
Commit
100205b
·
verified ·
1 Parent(s): 8e62317

Update pages/Level_3:_Better_LLM_Model.py

Browse files
Files changed (1) hide show
  1. pages/Level_3:_Better_LLM_Model.py +3 -3
pages/Level_3:_Better_LLM_Model.py CHANGED
@@ -22,7 +22,7 @@ OPENAI_INSTANCE = ChatOpenAI(
22
  temperature=0,
23
  )
24
  OPENAI_INSTANCE_SAFEGUARD = ChatOpenAI(
25
- model="gpt-4",
26
  temperature=0,
27
  )
28
  PAGE_TITLE = "Level 3: Better LLM Model"
@@ -37,11 +37,11 @@ def main():
37
  set_sidebar()
38
 
39
  st.title(PAGE_TITLE)
40
- st.markdown("### *Can you trick GPT-4?*")
41
  st.markdown(
42
  """
43
  #### What is the difference between this level and Level 2?
44
- The only difference is that we are using a better LLM model, GPT-4, for the safeguard. Otherwise they are the same.
45
  """
46
  )
47
 
 
22
  temperature=0,
23
  )
24
  OPENAI_INSTANCE_SAFEGUARD = ChatOpenAI(
25
+ model="gpt-4o",
26
  temperature=0,
27
  )
28
  PAGE_TITLE = "Level 3: Better LLM Model"
 
37
  set_sidebar()
38
 
39
  st.title(PAGE_TITLE)
40
+ st.markdown("### *Can you trick GPT-4o?*")
41
  st.markdown(
42
  """
43
  #### What is the difference between this level and Level 2?
44
+ The only difference is that we are using a better LLM model, GPT-4o, for the safeguard. Otherwise they are the same.
45
  """
46
  )
47