You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During code review, I've identified a potential performance bottleneck in the chat and followup functions. Both functions add DataFrames to DuckDB every time a user sends a query. This is done within the queryexecution step. While this approach functions, it raises concerns about potential performance degradation, particularly with longer conversations or larger DataFrames. I have not personally observed this performance degradation, but I'm raising this issue as a preventative measure based on my understanding of database operations.
The text was updated successfully, but these errors were encountered:
During code review, I've identified a potential performance bottleneck in the chat and followup functions. Both functions add DataFrames to DuckDB every time a user sends a query. This is done within the queryexecution step. While this approach functions, it raises concerns about potential performance degradation, particularly with longer conversations or larger DataFrames. I have not personally observed this performance degradation, but I'm raising this issue as a preventative measure based on my understanding of database operations.
The text was updated successfully, but these errors were encountered: