Skip to content

Commit 286ba2f

Browse files
starter typo fix (#17984)
1 parent 9cd2dc7 commit 286ba2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/docs/getting_started/starter_example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The `AgentWorkflow` is also able to remember previous messages. This is containe
7575
If the `Context` is passed in, the agent will use it to continue the conversation.
7676

7777
```python
78-
from llama_index.core.context import Context
78+
from llama_index.core.workflow import Context
7979

8080
# create context
8181
ctx = Context(agent)

docs/docs/getting_started/starter_example_local.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The `AgentWorkflow` is also able to remember previous messages. This is containe
8787
If the `Context` is passed in, the agent will use it to continue the conversation.
8888

8989
```python
90-
from llama_index.core.context import Context
90+
from llama_index.core.workflow import Context
9191

9292
# create context
9393
ctx = Context(agent)

0 commit comments

Comments
 (0)