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-levelto set the logging level insolve_dataset.py,solve_my_problem.py, andsolve_problem.py.requirements.txtto fix dependencies for Python 3.13, including updates tofastapi,tiktoken,uvicorn, andduckdb.Changes walkthrough 📝
solve_dataset.py
Add logging level argument to CLIalpha_codium/solve_dataset.py
solve_my_problem.py
Add logging level argument to CLIalpha_codium/solve_my_problem.py
solve_problem.py
Add logging level argument to CLIalpha_codium/solve_problem.py
README.md
Update installation instructions with pre-requisitesREADME.md
requirements.txt
Update dependencies for compatibility with Python 3.13requirements.txt
fastapi,tiktoken,uvicorn, andduckdbdependencies.