CyanideByte
CyanideByte
Try using ```pip install open-interpreter[os]```.
Using command line arg --disable_telemetry should skip this. Environment variable DISABLE_TELEMETRY should as well but it was bugged. (https://github.com/OpenInterpreter/open-interpreter/pull/1442)
Made a PR to fix this: https://github.com/OpenInterpreter/open-interpreter/pull/1409
If you ctrl+c while its generating it should soft stop and let you type a new message. If you press it a 2nd time then yes it will exit fully....
Update your oobabooga installation, their new version uses openai endpoint by default instead of having to turn on a plugin for it. Then also run this to update your pip...
You can do exactly that using the --api_base and --model command line parameters. https://docs.openinterpreter.com/settings/all-settings
This PR should fix this issue. https://github.com/OpenInterpreter/open-interpreter/pull/1400
This will be fixed with the merge of this PR: https://github.com/OpenInterpreter/open-interpreter/pull/1524 If you want to try it early you can install it like this `pip install --upgrade --force-reinstall git+https://github.com/CyanideByte/open-interpreter.git@local-fixes`
Try this setting: ```interpreter --max_output 1000``` https://docs.openinterpreter.com/settings/all-settings#max-output It looks like by default this value is set to 2800. It should do what you're describing, truncating output from code execution.
@umayado17 If you want to maintain the no leading zeros aspect you can do this instead: `{datetime.today().strftime('%A, %B %#d, %Y' if platform.system() == 'Windows' else '%A, %B %-d, %Y')}` Its...