Skip to content

Commit a01addf

Browse files
authored
Merge pull request #297 from posit-dev/fix-imports
fix(docs): Fix imports
2 parents a35debd + 76b2358 commit a01addf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/genai-chatbots.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Go ahead and open the `app.py` file from your template, you'll see something rou
9090
### Express
9191

9292
```python
93-
from chatlas as ChatOllama
93+
from chatlas import ChatOllama
9494
from shiny.express import ui
9595

9696
# Might instead be ChatAnthropic, ChatOpenAI, or some other provider
@@ -108,7 +108,7 @@ async def handle_user_input(user_input: str):
108108
### Core
109109

110110
```python
111-
from chatlas as ChatOllama
111+
from chatlas import ChatOllama
112112
from shiny import ui, App
113113

114114
app_ui = ui.page_fixed(

0 commit comments

Comments
 (0)