-
Notifications
You must be signed in to change notification settings - Fork 277
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
Command line args for logging level #66
base: main
Are you sure you want to change the base?
Command line args for logging level #66
Conversation
I tried to follow the installation instructions but kept getting errors. I updated the dependencies to get things working. I updated duckdb to just 1.0.0 because I figured that it would be safer to do the minimal update possible to get things working. I was able to get a successful solution after these upgrades using: python -m alpha_codium.solve_problem \ --dataset_name /Users/mikegehard/workspace/aiAssistedAgile/AlphaCodium/valid_and_test_processed \ --split_name test \ --problem_number 0
This makes it easier for someone learning the code to see what is happening in the bowels of the codebase.
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here. PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
This makes it easier for folks learning how the flow works to see what is happening.
Dependent on #64 getting merged first.
PR Type
enhancement, dependencies
Description
--log-level
to set the logging level insolve_dataset.py
,solve_my_problem.py
, andsolve_problem.py
.requirements.txt
to fix dependencies for Python 3.13, including updates tofastapi
,tiktoken
,uvicorn
, andduckdb
.Changes walkthrough 📝
solve_dataset.py
Add logging level argument to CLI
alpha_codium/solve_dataset.py
solve_my_problem.py
Add logging level argument to CLI
alpha_codium/solve_my_problem.py
solve_problem.py
Add logging level argument to CLI
alpha_codium/solve_problem.py
README.md
Update installation instructions with pre-requisites
README.md
requirements.txt
Update dependencies for compatibility with Python 3.13
requirements.txt
fastapi
,tiktoken
,uvicorn
, andduckdb
dependencies.