zayed-upal
commited on
Commit
·
13e8d82
1
Parent(s):
bd721b1
Typo fix in app.py
Browse files- .gitignore +1 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -157,4 +157,4 @@ cython_debug/
|
|
157 |
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
158 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
-
|
|
|
157 |
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
158 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
+
.idea/
|
app.py
CHANGED
@@ -88,7 +88,7 @@ with input_col:
|
|
88 |
st.button("Generate Cover Letter", key='open_source_gen_key', on_click=generate_open_source,
|
89 |
disabled=st.session_state.running)
|
90 |
|
91 |
-
elif llm_tab == "Open AI
|
92 |
cover_letter_generator = None
|
93 |
st.session_state.cover_letter_stream = ""
|
94 |
selected_model = st.selectbox("Select Open AI Model", options=LLMHelper.AVAILABLE_MODELS_OPENAI,
|
|
|
88 |
st.button("Generate Cover Letter", key='open_source_gen_key', on_click=generate_open_source,
|
89 |
disabled=st.session_state.running)
|
90 |
|
91 |
+
elif llm_tab == "Open AI LLMs":
|
92 |
cover_letter_generator = None
|
93 |
st.session_state.cover_letter_stream = ""
|
94 |
selected_model = st.selectbox("Select Open AI Model", options=LLMHelper.AVAILABLE_MODELS_OPENAI,
|