Is there a way to disable the <thinking> feature?
#25
by
Kuromasa
- opened
Easiest way to do this is probably to just split the string of the response and just pass the last part of the response to the terminal.
re.split(r'(?<=)', text)[1]
Easiest way to do this is probably to just split the string of the response and just pass the last part of the response to the terminal.
re.split(r'(?<=)', text)[1]
What about hard way?