mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-05-27 10:54:20 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
'''
|
|
This is the main file that runs the demo.
|
|
'''
|
|
import tkinter as tk
|
|
from demo_gui import DemoGUI
|
|
def main():
|
|
root = tk.Tk()
|
|
demo_gui = DemoGUI(root)
|
|
root.mainloop()
|
|
if __name__ == "__main__":
|
|
main() |