Skip to content

Commit

Permalink
Renames process_message to match base class
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWeill committed Dec 4, 2023
1 parent 65433d7 commit 0a0c0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/developers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class CustomChatHandler(BaseChatHandler):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

async def _process_message(self, message: HumanChatMessage):
async def process_message(self, message: HumanChatMessage):
# Put your custom logic here
```

Expand Down

0 comments on commit 0a0c0da

Please sign in to comment.