Boakye I. Ababio commited on
Commit
1cd36f9
1 Parent(s): b7bb010

pydantic version

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -95,9 +95,9 @@ def main():
95
  # create vector store
96
  vectorstore = get_vectorstore(text_chunks)
97
 
98
- # create conversation chain
99
  st.session_state.conversation = get_conversation_chain(
100
- vectorstore)
101
 
102
 
103
  if __name__ == '__main__':
 
95
  # create vector store
96
  vectorstore = get_vectorstore(text_chunks)
97
 
98
+ # create conversation chains
99
  st.session_state.conversation = get_conversation_chain(
100
+ vectorstore)
101
 
102
 
103
  if __name__ == '__main__':