mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2026-01-18 13:04:19 +01:00
🧪 test: level 1
This commit is contained in:
@@ -37,9 +37,9 @@ class TaskSpecification:
|
||||
test: Optional[Text]
|
||||
|
||||
class Generator:
|
||||
def __init__(self, task_description, test_description, path, model='gpt-4'):
|
||||
self.gpt_session = gpt.GPTSession(task_description, test_description, model=model)
|
||||
self.microservice_specification = TaskSpecification(task=task_description, test=test_description)
|
||||
def __init__(self, task_description, path, model='gpt-4'):
|
||||
self.gpt_session = gpt.GPTSession(task_description, model=model)
|
||||
self.microservice_specification = TaskSpecification(task=task_description)
|
||||
self.microservice_root_path = path
|
||||
|
||||
def extract_content_from_result(self, plain_text, file_name, match_single_block=False, can_contain_code_block=True):
|
||||
|
||||
Reference in New Issue
Block a user