Francisco Freire
Francisco Freire
I need to do more tests to work with Python3
Same issue here, i've tried: ```python Activity( type=ActivityTypes.typing, text="generating...", entities=[ { "type": "streaminfo", "streamType": "informative", "streamSequence": 1, } ], ) ``` Error: ``` botbuilder.schema._models_py3.ErrorResponseException: (BadSyntax) Only start streaming and continue...
Thanks @octopus-eran btw i've found the problem, is related to the Entity model that is only accepting the type field, i did this: ```python class Entity(Model): """Metadata object pertaining to...