Update pages/Level_3:_Better_LLM_Model.py
Browse files
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-
|
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-
|
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-
|
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 |
|