def prompt_tuning_cli(prompt: str):
Recorder.start_recording(recording_name='prompt_tuning')
# ENTER YOUR PROMPT HERE!
holding = prompt
print('----------------------------------------------------')
while True:
print("\nEnter your feedback (or type 'stop' to finish):")
feedback = input()
if feedback == "stop":
break
print('Attempting to tune prompt.....')
new_prompt = (
SimplePromptTuningBot()
.process(holding, feedback)
)
holding = new_prompt.prompt
print('----------------------NEW PROMPT START------------------------------')
print()
print(new_prompt.prompt)
print()
print('----------------------NEW PROMPT END------------------------------')
print()
Recorder.stop_recording(recording_name='prompt_tuning')
Recorder.to_html_file(recording_name='prompt_tuning')
DandyPythonPromptBot().process(prompt)