Fix CLI typo (#529)

This commit is contained in:
cybermaggedon 2025-09-23 23:34:36 +01:00 committed by GitHub
parent dc2fa1f31e
commit 72c9acad30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,12 +54,12 @@ def main():
parser.add_argument(
'-p', '--parameters',
help=f'Flow parameters as JSON string (e.g., \'{"model": "gpt-4", "temp": 0.7}\')',
help='Flow parameters as JSON string (e.g., \'{"model": "gpt-4", "temp": 0.7}\')',
)
parser.add_argument(
'--parameters-file',
help=f'Path to JSON file containing flow parameters',
help='Path to JSON file containing flow parameters',
)
args = parser.parse_args()