Jon Luo

Results 10 comments of Jon Luo

I'd also like to voice appreciation this feature. I finally tracked down my app's occasional hanging to this issue. In the meantime, gating the download button behind a "prepare data...

Yeah so right now it looks like: ``` CREATE TABLE "Track" ( blahblahblah ) /* 2 rows from Track table: TrackId Name AlbumId MediaTypeId GenreId Composer Milliseconds Bytes UnitPrice 1...

I like the idea - however, the reason I had split them like that is so that the prompt could change drastically (including the repeated part or `_meta_prompt`) for each...

Hi, could you provide some more detail? The code you were running, the traceback, etc

Interesting... so I'm guessing this error occurred because you had the `schema` parameter set in `SQLDatabase`, right? I never ran into this error because I set the schema in the...

sqlalchemy is used for database connections, so you can refer to how to connect in sqlalchemy. You need to install PyMySQL or mysqlclient, and the connection string will be of...

`jupyter_cache` is a dependency for myst-nb which is used in creating the docs. [I do have a PR open with `jupyter-cache` to allow SQLAlchemy 2.](https://github.com/executablebooks/jupyter-cache/pull/93)

Please see #1272 for more details

It seems like the only blocker for allowing both SQLAlchemy 1.4 and 2.0 is the dependency on duckdb-engine, which is used for Chroma. [duckdb-engine is not compatible with SQLAlchemy 2.0](https://github.com/Mause/duckdb_engine/issues/388)....

Ah yeah I was thinking about making a change to keep the original `sample_row_in_table_info: bool` and instead adding an additional parameter for number of rows to include with default 1,...