Main.py

From Chrysalis Archive
Revision as of 10:59, 15 May 2024 by Don86326 (talk | contribs)
Jump to navigation Jump to search

Shadow Agency ∞  Theory of a Personal KOS ☀  Structured-Key DataShadow  ☀  Shadow Agency Code ☀  AI Agency Workflow Schemes ☀  The Cognitive Mesh ☀  Interlocution Protocol

PromptEngineer Python Code Category
main.py ☀  prompt_engineer.py ☀  config_master.py ☀  README.md

import tkinter as tk
from prompt_engineer import PromptEngineerApp

CONFIG_INI_FILE = "app.ini"

def main():
    root = tk.Tk()
    app = PromptEngineerApp(root, CONFIG_INI_FILE)
    root.mainloop()

if __name__ == '__main__':
    main()