Jeffrey Lind
Jeffrey Lind
This is what I used as a temporary workaround of the filename.csv problem in my application, in case it's useful to anyone. Just finds and replaces filename.csv, then uses that...
@sandiemann Can confirm, as of v0.2.11 this problem seems to be fixed, along with #52
This issue seems to have reappeared in pandasai v0.2.12 Edit: Fixed in v0.2.13
Here is a quick workaround by doing the prompt concatenation trick ``` print("\nSelect Your Prompt Type:") print("1. Text") print("2. Graph") promptType = int(input("\nEnter your choice (1 or 2): ")) dataPrompt...
Yes, here is my `CSVAIPrompt` function, based off of the `from_csv.py` example. The two `Test Graphing Prompts` are at the bottom of the code block. Any graphing prompt that is...