Skip to content

Commit 2b3dfeb

Browse files
committed
fix(prompt_generator) fix typo errors
1 parent d42070e commit 2b3dfeb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/prompt_generators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def IaC_bugfix_generator(input : IaCBugfixInput) -> str:
1919
Write a clear answer to debug {input.service}
2020
focusing on the version {input.version} of {input.service} and based on this bug:{input.bug_description},
2121
generate a correct code that help us to solve this bug.
22-
minimun length of answer is {input.min_tokens} and maximum length is {input.max_tokens}
22+
minimum length of answer is {input.min_tokens} and maximum length is {input.max_tokens}
2323
2424
"""
2525
return prompt
@@ -28,8 +28,8 @@ def IaC_bugfix_generator(input : IaCBugfixInput) -> str:
2828
def IaC_installation_generator(input : IaCInstallationInput) -> str:
2929

3030
prompt = f"""
31-
generate a clear shell acript about installation {input.service} in {input.os} based on {input.service} document.
32-
without any additional note. just script for installation. please consider new lines with out any additional comment.
31+
generate a clear shell script about installation {input.service} in {input.os} based on {input.service} document.
32+
without any additional note. just script for installation. please consider new lines without any additional comment.
3333
3434
"""
3535
return prompt

0 commit comments

Comments
 (0)