-
Notifications
You must be signed in to change notification settings - Fork 0
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
Set APPMAP_NAVIE_MINI_MODEL as appropriate #60
Comments
Title:Set Problem:The Analysis:To solve this problem, we need to identify the scenarios in which Proposed Changes:
Specific Changes:
- name: Solve instances
run: |
pip install virtualenv
virtualenv venv
. ./venv/bin/activate
pip install -e .
export PYTHONPATH=$PYTHONPATH:$(pwd)
export APPMAP_COMMAND="node $(pwd)/submodules/appmap-js/packages/cli/built/cli.js"
git config --global init.defaultBranch swe-bench-2
git config --global user.email "[email protected]"
git config --global user.name "GitHub Workflow"
llm="${LLM:-gpt-4o}"
if [[ $llm == "gpt-4o"* ]]; then
export APPMAP_NAVIE_MODEL="${llm}"
export OPENAI_API_KEY="${{ secrets.OPENAI_API_KEY }}"
elif [[ $llm == "claude"* ]]; then
export APPMAP_NAVIE_MODEL="${llm}"
export ANTHROPIC_API_KEY="${{ secrets.ANTHROPIC_API_KEY }}"
fi
# New condition to set APPMAP_NAVIE_MINI_MODEL as appropriate
if [[ $llm == "mini-model" ]]; then
export APPMAP_NAVIE_MINI_MODEL="${llm}"
# Set additional environment variables if needed for mini model
fi By adding this condition, you ensure that the |
In some cases, Navie supports
APPMAP_NAVIE_MINI_MODEL
. Set this env var in solve.yml as appropriate.The text was updated successfully, but these errors were encountered: