From d78aec4e1abe9b5c392fb35f79947dfd82391b56 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 Oct 2024 09:13:10 -0400 Subject: [PATCH] Refactor conversation plugin hooks and add plugin interface --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5826b5..cc074ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ Release History ## 0.1.3 (2024-10-30) - Make Conversation a context manager. -- Add more robust conversation plugin hooks. -- Remove `send_hook` from `BaseProvider`. Replaced with `pre_send_hook` and `post_send_hook`. +- Add more robust conversation plugin hooks — replace `send_hook` with `pre_send_hook` and `post_send_hook`. - Change plugin hooks to try/except NotImplementedError. +- Implement 'did you mean' with provider names. Can do this eventually with model names, as well. ## 0.1.2 (2024-10-29)