Skip to content

Commit 3d62c1e

Browse files
committed
f
1 parent 6ab9728 commit 3d62c1e

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def IaC_template_generation(request:IaCTemplateGeneration) -> Output:
4949

5050
generated_prompt = IaC_template_generator(request)
5151
output = gpt_service(generated_prompt)
52-
output = edit_directory_generator(output)
52+
edit_directory_generator(output)
5353
execute_pythonfile()
5454
return Output(output='output')
5555

app/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class IaCBugfixInput(BasicInput):
1717
version:str = 'latest'
1818
service:Optional[str] = 'terraform'
1919

20-
class IaCInstallationInput(BasicInput):
20+
class IaCInstallationInput(BaseModel):
2121
os:str = "ubuntu"
2222
service:Optional[str] = 'terraform'
2323

0 commit comments

Comments
 (0)