Message role now specified with enum
Example:
python
from suvvyapi.enums import Role
from suvvyapi.models import Message
message = Message(text="Hello World!", role=Role.HUMAN)
Available roles:
python
Role.HUMAN
Role.AI Should be used to specify employee message
Role.FUNCTION_CALL Not recommended to use, may conflict with API
Role.FUNCTION_RESULT Not recommended to use, may conflict with API
**Full Changelog**: https://github.com/barabum0/suvvyapi/compare/0.1a1...0.1a2