Skip to content

Commit eaa9324

Browse files
committed
fix: more QueryChat -> querychat
1 parent 3c9f519 commit eaa9324

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg-py/docs/build.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you have an existing app with a reactive data frame that flows through multip
2626
Integrating querychat into a Shiny app requires just three steps:
2727

2828
1. Initialize a `querychat()` instance with your data
29-
2. Add the querychat UI component (either `.sidebar()` or `.ui()`)
29+
2. Add the UI component (either `.sidebar()` or `.ui()`)
3030
3. Use reactive values like `.df()`, `.sql()`, and `.title()` to build outputs that respond to user queries
3131

3232
Here's a starter template demonstrating these steps:
@@ -279,8 +279,8 @@ This is equivalent to the user asking the LLM to "reset" or "show all data".
279279

280280
Currently, you have two options for exploring multiple tables in querychat:
281281

282-
1. Join the tables into a single table before passing to QueryChat
283-
2. Use multiple QueryChat instances in the same app
282+
1. Join the tables into a single table before passing to querychat
283+
2. Use multiple querychat instances in the same app
284284

285285
The first option makes it possible to chat with multiple tables inside a single chat interface, whereas the second option requires a separate chat interface for each table.
286286

@@ -290,7 +290,7 @@ The first option makes it possible to chat with multiple tables inside a single
290290
We plan to support multiple filtered tables in a future release -- if you're interested in this feature, please upvote [the relevant issue](https://github.com/posit-dev/querychat/issues/6)
291291
:::
292292

293-
Here's an example of the second approach, using two separate QueryChat instances to explore both the `titanic` and `penguins` datasets within the same app:
293+
Here's an example of the second approach, using two separate querychat instances to explore both the `titanic` and `penguins` datasets within the same app:
294294

295295
```{.python filename="multiple-datasets.py" code-fold="true" code-summary="Show app code"}
296296
{{< include _examples/multiple-datasets.py >}}

0 commit comments

Comments
 (0)