Philippe PRADOS

Results 11 issues of Philippe PRADOS

**Is your feature request related to a problem? Please describe.** I want to use the Python typing, with *mypy* or *pytype*. I want to declare a Schema and a New...

enhancement

**Is your feature request related to a problem? Please describe.** Accept pythonic class with @pa.check_io, without the invocation of `.to_schema()` ```python import pandas as pd import pandera as pa from...

enhancement

#### Question about pandera With this sample ```python class Link1_schema(pa.SchemaModel): id: pa.typing.Index[int] data: pa.typing.Series[int] class Config: strict = True ordered = True @pa.check_types def f(data:pd.DataFrame[Link1_schema]) -> pd.DataFrame[Link1_schema]: #Link1_schema.validate(data) data['data']='error' return...

question

- I use K or V in place of Object in containers - It's not acceptable to have a System.exit(). I convert the code to throw a HeapCorruptedError exception. -...

Hello, I try to install supersqlite from pip and conda. I can use ``` docker run -it ubuntu # then apt-get update ; \ apt-get install -y python-apsw python3 python3-pip...

Checklist - [x] Title of this PR is meaningful: e.g. "Adding my_nifty_package", not "updated meta.yaml". - [x] License file is packaged (see [here](https://github.com/conda-forge/staged-recipes/blob/5eddbd7fc9d1502169089da06c3688d9759be978/recipes/example/meta.yaml#L64-L73) for an example). - [x] Source is...

# Reimplement the Google Drive features Propose : - langchain.docstore.GoogleDriveDocStore - langchain.document_loaders.GoogleDriveLoader - langchain.utilities.GoogleDriveAPIWrapper - langchain.tools.GoogleDriveSearchTool - langchain.utilities.GoogleDriveUtilities Features: - Fully compatible with Google Drive API - Manage file in...

# Description: This chain returns the selected documents used for the response. Then, it's possible to extract all meta-data for these documents, to generate a markdown link or other stuff....

auto:enhancement

** Description** To break the dependency between `langchain-common` and `langchain`, I propose a new `load_and_transform()` method. `BaseLoader` currently offers the `load_and_split()` method, which expects a `TextSplitter`. The `TextSplitter` class is...

area: doc loader
auto:improvement
size:M

This PR adds the **async** approach for pgvector. Some remarks: - We use assert to check invocations and not if. Thus, in production, it is possible to remove these checks...