Changes
This update includes adding the`__repr__` method to the `Document` class, enhancing object representation for easier debugging.
For instance, now when you check a `Document` object, you'll see a detailed representation by `repr` method.
python
>>> from hojichar import Document
>>> doc = Document("Hello, world", extras={"date": "2024-10-03"})
>>> repr(doc)
"Document(text='Hello, world', is_rejected=False, extras={'date': '2024-10-03'})"
>>> eval(repr(doc))
Document(text='Hello, world', is_rejected=False, extras={'date': '2024-10-03'})