Fahad Mattoo commited on
Commit
a3cd1b3
·
unverified ·
1 Parent(s): 7147bcd

App file (#12)

Browse files

* adding app file

* linting:

Files changed (2) hide show
  1. app.py +3 -1
  2. src/app.py +3 -2
app.py CHANGED
@@ -1,4 +1,6 @@
 
 
1
  from src.app import main
2
 
3
  if __name__ == "__main__":
4
- main()
 
1
+ """this is the base app"""
2
+
3
  from src.app import main
4
 
5
  if __name__ == "__main__":
6
+ main()
src/app.py CHANGED
@@ -4,11 +4,12 @@ import openai
4
  import streamlit as st
5
  from openai import OpenAI
6
 
 
7
  def return_true():
8
- """_summary_
9
- """
10
  return True
11
 
 
12
  def reset_history():
13
  """_summary_"""
14
  st.session_state.messages = []
 
4
  import streamlit as st
5
  from openai import OpenAI
6
 
7
+
8
  def return_true():
9
+ """_summary_"""
 
10
  return True
11
 
12
+
13
  def reset_history():
14
  """_summary_"""
15
  st.session_state.messages = []