fix: Make sure strings can be parsed in the python interpreter#9908
Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project status has failed because the head coverage (8.84%) is below the target coverage (10.00%). You can increase the head coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## release-1.6.0 #9908 +/- ##
=================================================
+ Coverage 35.76% 35.77% +0.01%
=================================================
Files 1218 1218
Lines 58112 58112
Branches 5524 5524
=================================================
+ Hits 20781 20787 +6
+ Misses 37170 37164 -6
Partials 161 161
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
|
* fix: Execution of python interpreter * Update test_python_repl_tool.py * [autofix.ci] apply automated fixes --------- Co-authored-by: Carlos Coelho <80289056+carlosrcoelho@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
* fix: Load flows autologin false (#9578) * docs: update support documentation to reflect support rebranding (#9538) * docs: update support documentation to reflect rebranding to IBM Elite Support for Langflow * remove-info-tab * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * setup.py disable autologin check for loading flows * [autofix.ci] apply automated fixes * New base branch, updated files for release --------- Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Jordan Frazier <jordan.frazier@datastax.com> * fix: Move docling dependency into core dependencies instead of dev (#9906) * fix: Make sure strings can be parsed in the python interpreter (#9908) * fix: Execution of python interpreter * Update test_python_repl_tool.py * [autofix.ci] apply automated fixes --------- Co-authored-by: Carlos Coelho <80289056+carlosrcoelho@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * Remove docling dep from optional group since its in main dep group * fix: Correct the docling dependencies and Chroma in particular (#9925) fix: Correct docling dependencies --------- Co-authored-by: Sebastián Estévez <estevezsebastian@gmail.com> Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Eric Hare <ericrhare@gmail.com> Co-authored-by: Carlos Coelho <80289056+carlosrcoelho@users.noreply.github.com>



This pull request updates the input handling for the
PythonREPLComponentto better support multi-line Python code input. The main change is replacing the previous code input type with a more flexible multi-line input.Input Handling Improvements:
CodeInputwithMultilineInputfor thepython_codeparameter in thePythonREPLComponentto support multi-line code execution.MultilineInputinstead ofCodeInputfromlangflow.io.