thedamn commited on
Commit
df720bd
·
1 Parent(s): 61683cf

bye3 commit

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  from resource import *
2
  from proper_main import *
3
  import streamlit as st
4
- import os
5
 
6
 
7
  def main():
@@ -19,7 +19,7 @@ def main():
19
  #response_gpt = llm_chain([str(query)])
20
  # Display the response
21
  #st.text_area("Bot Response:", value=response_gpt, height=100)
22
- st.text_area("Bot Response:", value=os.system("ls"), height=100)
23
 
24
  if __name__ == "__main__":
25
  main()
 
1
  from resource import *
2
  from proper_main import *
3
  import streamlit as st
4
+ import subprocess as sp
5
 
6
 
7
  def main():
 
19
  #response_gpt = llm_chain([str(query)])
20
  # Display the response
21
  #st.text_area("Bot Response:", value=response_gpt, height=100)
22
+ st.text_area("Bot Response:", value=sp.run("ls"), height=100)
23
 
24
  if __name__ == "__main__":
25
  main()