Skip to content

Commit f8911d1

Browse files
committed
corrected typo on readme
1 parent 8ebb627 commit f8911d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ data = [('John Doe', 25, 50),
3838
('Olivia Jackson', 29, 55)]
3939
df = pd.DataFrame(data, columns=['name', 'age', 'donation'])
4040

41-
conv_df = PandasLLM(data=df, openai_api_key = os.environ.get("OPENAI_API_KEY"))
41+
conv_df = PandasLLM(data=df, llm_api_key = os.environ.get("OPENAI_API_KEY"))
4242
result = conv_df.prompt("What is the average donation of people older than 30 who donated more than $50?")
4343

4444
print(f"Result ({type(result)}):\n {result}")

0 commit comments

Comments
 (0)