Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent profile file from being overridden by defaults #1615

Open
wants to merge 8 commits into
base: development
Choose a base branch
from

Conversation

endolith
Copy link

@endolith endolith commented Mar 30, 2025

Describe the changes you have made:

dependent on #1612

  1. Update profile.profile_path to the actual path

Previously it was keeping the default:

profile_path: ~/.openinterpreter\default_profile.py

because interpreter.profile_path is not an attribute that would be set
within the profile file, but is a property of that file.

  1. Prevent profile from being overridden by defaults

Previously, when loading a custom profile via --profile, its settings
could be overridden by defaults from the initial Profile() instance
because argparse was initialized with those defaults, and
only None-valued arguments would be updated from the custom profile.
This caused issues like custom model settings being reset to the default
claude-3-5-sonnet-20241022.

This change:

  • Creates a fresh Profile instance when loading custom profiles
  • Tracks which arguments were explicitly provided via CLI
  • Updates args from profile unless explicitly set via CLI

This ensures profile settings take precedence over defaults while
still allowing CLI arguments to override profile settings.

Example:
Before: Custom profile with model="gpt-4o-mini" would be overridden
by default model="claude-3-5-sonnet-20241022" unless --model was
explicitly set on command line.

After: Custom profile settings are preserved unless explicitly
overridden by command line arguments.

The provider auto-detection still works as expected:

  • If profile sets both model and provider: uses those values
  • If profile sets only model: provider=None allows auto-detection

Reference any relevant issues (e.g. "Fixes #000"):

Pre-Submission Checklist (optional but appreciated):

  • I have included relevant documentation updates (stored in /docs)
  • I have read docs/CONTRIBUTING.md
  • I have read docs/ROADMAP.md

OS Tests (optional but appreciated):

  • Tested on Windows
  • Tested on MacOS
  • Tested on Linux

Profiles were changed from .json to .py files in
bee3f3c, but the documentation was not updated everywhere.
There is no file called default_profile.py.  I'm not sure why we
would imply that it exists, and allow it to be used, but just clarify
the comment for now.
Likely left over from bee3f3c
Previously it was keeping the default:

profile_path: ~/.openinterpreter\default_profile.py

because interpreter.profile_path is not an attribute that would be set
within the profile file, but is a property *of* that file.
Previously, when loading a custom profile via --profile, its settings
could be overridden by defaults from the initial Profile() instance
because argparse was initialized with those defaults, and
only None-valued arguments would be updated from the custom profile.
This caused issues like custom model settings being reset to the default
claude-3-5-sonnet-20241022.

This change:
- Creates a fresh Profile instance when loading custom profiles
- Tracks which arguments were explicitly provided via CLI
- Updates args from profile unless explicitly set via CLI

This ensures profile settings take precedence over defaults while
still allowing CLI arguments to override profile settings.

Example:
Before: Custom profile with model="gpt-4o-mini" would be overridden
by default model="claude-3-5-sonnet-20241022" unless --model was
explicitly set on command line.

After: Custom profile settings are preserved unless explicitly
overridden by command line arguments.

The provider auto-detection still works as expected:
- If profile sets both model and provider: uses those values
- If profile sets only model: provider=None allows auto-detection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant