Merge branch 'master' into add_documentation

This commit is contained in:
Toran Bruce Richards
2023-04-10 13:43:24 +01:00
committed by GitHub
36 changed files with 1041 additions and 202 deletions

View File

@@ -15,6 +15,7 @@ def evaluate_code(code: str) -> List[str]:
Returns:
A result string from create chat completion. A list of suggestions to improve the code.
"""
function_string = "def analyze_code(code: str) -> List[str]:"
args = [code]
description_string = """Analyzes the given code and returns a list of suggestions for improvements."""
@@ -34,6 +35,7 @@ def improve_code(suggestions: List[str], code: str) -> str:
Returns:
A result string from create chat completion. Improved code in response.
"""
function_string = (
"def generate_improved_code(suggestions: List[str], code: str) -> str:"
)
@@ -44,6 +46,7 @@ def improve_code(suggestions: List[str], code: str) -> str:
return result_string
def write_tests(code: str, focus: List[str]) -> str:
"""
A function that takes in code and focus topics and returns a response from create chat completion api call.
@@ -54,6 +57,7 @@ def write_tests(code: str, focus: List[str]) -> str:
Returns:
A result string from create chat completion. Test cases for the submitted code in response.
"""
function_string = (
"def create_test_cases(code: str, focus: Optional[str] = None) -> str:"
)