Files
autoMate/main.py
yuruo 5b884378b1 new
2024-01-20 11:00:36 +08:00

20 lines
317 B
Python

from o_kr import OKR
class AutoMate:
def __init__(self):
pass
def rule_define(self):
o_kr = OKR()
o_kr.set_objective(input("请输入任务: "))
if __name__ == "__main__":
automator = AutoMate()
automator.main()
# print(automator.call_chatgpt_api("Hello"))