Skip to content

0.1.1

Latest

Choose a tag to compare

@metantonio metantonio released this 22 Dec 14:47

Version 0.1.1

New Optimization - Quick Fixes

I have introduced a "Quick Fix" mechanism to significantly reduce token usage and context size:

  • Structured Analysis:
    • error_analysis.py now provides a JSON response that categorizes the error.
    • Missing Imports Logic: If the AI detects a missing library (e.g., numpy), executor.py now prepends the import statement directly to the existing code and retries execution.
    • Bypassing Regeneration: This bypasses the expensive CodeAdaptationAgent fix_code call, saving hundreds of tokens and preventing the AI from accidentally changing working parts of the code while trying to fix a simple import. This makes the system much more efficient and robust against context window limits.

QLX AI powered data science by Qualex

Engineer: Antonio Martínez