Back to all

chatkit-debug

by Fatima367

00Feb 7, 2026Visit Source
| Error | Wrong Code | Correct Code | |-------|------------|--------------| | `ModuleNotFoundError: chatkit.stores` | `from chatkit.stores import Store` | `from chatkit.store import Store` | | `ModuleNotFoundError: chatkit.models` | `from chatkit.models import ...` | `from chatkit.types import ...` | | `ImportError: Event` | `from chatkit.server import Event` | Remove - doesn't exist | | `ImportError: ClientToolCallOutputItem` | `from chatkit.types import ClientToolCallOutputItem` | Use `Any`...