Eugene Yurtsev

Results 106 issues of Eugene Yurtsev

Run mypy last as its the slowest linter

Hello!! I'm wondering if it's known in what kind of situations the JSON agent might be able to provide helpful answers? It would be nice to expand this page with...

This PR updates `create_prompt` method to be a staticmethod rather than a classmethod. It is a bit unclear on whether the `classmethod` was intentionally to provide the code with access...

langchain Version: 0.0.143 SHA: aad0a498ac693acd304cf66e16a6430f5c0410a8 --- In [1]: import numexpr In [2]: numexpr.__version__ Out[2]: '2.8.4' ----- ```python llm_math.run("what is the common denominator of 2 and 5") ``` Stack trace: >...

This PR introduces a Blob data type and a Blob loader interface. This is the first of a sequence of PRs that follows this proposal: https://github.com/hwchase17/langchain/pull/2833 The primary goals of...

This catches the warning raised when using duckdb, asserts that it's as expected. The goal is to resolve all existing warnings to make unit-testing much stricter.

Adding a lazy iteration for document loaders. Following the plan here: https://github.com/hwchase17/langchain/pull/2833 Keeping the `load` method as is for backwards compatibility. The `load` returns a materialized list of documents and...

Minor changes to the Blob schema.

This adds a minimal file system blob loader. If looks good, this PR will be merged and a few additional enhacements will be made.