10 lines
106 B
Python
10 lines
106 B
Python
import os
|
|
|
|
|
|
def main():
|
|
os.system("streamlit run ../chat.py")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|