Refactor the code to make it comply with PEP-8 standards:Convert all class definitions to CamelCase style.

(issue 37)
This commit is contained in:
Liu Zhicong
2023-08-23 11:19:16 -07:00
parent 23963adc6e
commit 5454009e7b
21 changed files with 601 additions and 603 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
class ai_function:
class AIFunction:
def __init__(self) -> None:
self.intro : str = None
@@ -21,7 +21,7 @@ class ai_function:
pass
# call chain is a combination of ai_function,group of ai_function.
class call_chain:
class CallChain:
def __init__(self) -> None:
pass