liuyuqi-dellpc 2 years ago
commit
c0442c7110
4 changed files with 42 additions and 0 deletions
  1. 2 0
      README.md
  2. 12 0
      main.py
  3. 11 0
      openai_creator/__init__.py
  4. 17 0
      openai_creator/openai_creator.py

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
+# openai_creator
+

+ 12 - 0
main.py

@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:27:22
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   enter point
+'''
+from openai_creator import main
+
+if __name__=='__main__':
+    main()

+ 11 - 0
openai_creator/__init__.py

@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:27:37
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''
+
+def main():
+    pass

+ 17 - 0
openai_creator/openai_creator.py

@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+'''
+@Contact :   liuyuqi.gov@msn.cn
+@Time    :   2023/04/02 00:27:05
+@License :   Copyright © 2017-2022 liuyuqi. All Rights Reserved.
+@Desc    :   
+'''
+
+class OpenaiCreator(object):
+    ''' openai creator '''
+    
+    def __init__(self):
+        pass
+
+    def run(self):
+        pass