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 Nov 6, 2023
1 parent a694d1f commit 0f55dca
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 @@ -30,7 +30,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 0f55dca

Please sign in to comment.