Files
autoMate/main.py
2024-01-20 11:23:30 +08:00

21 lines
333 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.rule_define()
# print(automator.call_chatgpt_api("Hello"))