Skip to content

Commit 7f86fdb

Browse files
committed
docs: simplify example again
1 parent e0017ed commit 7f86fdb

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

pkg-py/src/querychat/_querychat.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -486,18 +486,6 @@ class QueryChat(QueryChatBase):
486486
client = qc.client()
487487
response = client.chat("What's the average of column a?")
488488
489-
# Get a query-only client (no data modification)
490-
client = qc.client(tools="query")
491-
```
492-
493-
**Interactive console:**
494-
```python
495-
from querychat import QueryChat
496-
import pandas as pd
497-
498-
df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]})
499-
qc = QueryChat(df, "my_data")
500-
501489
# Start an interactive console chat
502490
qc.console()
503491
```

0 commit comments

Comments
 (0)