Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ rerun ones it has seen before (`--rerun 1`). It will run against the local insta

### Set up Agent Inbox with Local EAIA

After we have [run it locally](#run-locally), we can interract with any results.
After we have [run it locally](#run-locally), we can interact with any results.

1. Go to [Agent Inbox](https://dev.agentinbox.ai/)
2. Connect this to your locally running EAIA agent:
Expand All @@ -101,7 +101,7 @@ After we have [run it locally](#run-locally), we can interract with any results.
3. Give it a name like `Local EAIA`
4. Press `Submit`

You can now interract with EAIA in the Agent Inbox.
You can now interact with EAIA in the Agent Inbox.

## Run in production (LangGraph Platform)

Expand Down Expand Up @@ -138,7 +138,7 @@ rerun ones it has seen before (`--rerun 1`). It will run against the prod instan

### Set up Agent Inbox with LangGraph Platform EAIA

After we have [deployed it](#set-up-eaia-on-langgraph-platform), we can interract with any results.
After we have [deployed it](#set-up-eaia-on-langgraph-platform), we can interact with any results.

1. Go to [Agent Inbox](https://dev.agentinbox.ai/)
2. Connect this to your locally running EAIA agent:
Expand Down
2 changes: 1 addition & 1 deletion eaia/main/find_meeting_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def find_meeting_time(state: State, config: RunnableConfig):
tz=prompt_config["timezone"],
)
messages = state.get("messages") or []
# we do this because theres currently a tool call just for routing
# we do this because there's currently a tool call just for routing
messages = messages[:-1]
result = await agent.ainvoke(
{"messages": [{"role": "user", "content": input_message}] + messages}
Expand Down