-
OS: Windows 10
-
Python 3.8
-
Rasa 2.0.3
Hey,
I had successfully installed rasa then I ran rasa train
and rasa run actions
. Both successfully. After running rasa shell
command I typed “Hello” in Your input and I got the error. I have seen few similar problems here or in Stack Overflow but it didn’t help. Here is my error:
PS E:\dev\project004> .\env\Scripts\activate
(env) PS E:\dev\project004> cd pokedex-demo
(env) PS E:\dev\project004\pokedex-demo> rasa shell
2020-11-06 21:47:13 INFO root - Connecting to channel 'cmdline' which was specified by the '--connector' argument. Any other channels will be ignored. To connect to all given channels, omit the '--connector' argument.
2020-11-06 21:47:13 INFO root - Starting Rasa server on http://localhost:5005
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'attribute' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'knowledge_base_last_object' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'knowledge_base_last_object_type' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'knowledge_base_listed_objects' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'mention' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'object_type' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'pokemon' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\shared\core\slots.py:256: FutureWarning: UnfeaturizedSlot is deprecated and will be removed in Rasa Open Source 3.0. Please change the type and configure the 'influence_conversation' flag for slot 'pokemon_name' instead.
rasa.shared.utils.io.raise_warning(
e:\dev\project004\env\lib\site-packages\rasa\core\policies\mapping_policy.py:51: FutureWarning: 'MappingPolicy' is deprecated and will be removed in the future. It is recommended to use the 'RulePolicy' instead. (will be removed in 3.0.0)
rasa.shared.utils.io.raise_deprecation_warning(
2020-11-06 21:47:28 WARNING rasa.shared.core.domain - You are using an experiential feature: Action 'action_query_knowledge_base'!
2020-11-06 21:47:28 INFO root - Rasa server is up and running.
Bot loaded. Type a message and press enter (use '/stop' to exit):
Your input -> Hello
2020-11-06 21:47:46 ERROR asyncio - Task exception was never retrieved
future: <Task finished name='Task-2' coro=<configure_app.<locals>.run_cmdline_io() done, defined at e:\dev\project004\env\lib\site-packages\rasa\core\run.py:133> exception=TimeoutError()>
Traceback (most recent call last):
File "e:\dev\project004\env\lib\site-packages\rasa\core\run.py", line 137, in run_cmdline_io
await console.record_messages(
File "e:\dev\project004\env\lib\site-packages\rasa\core\channels\console.py", line 182, in record_messages
async for response in bot_responses:
File "e:\dev\project004\env\lib\site-packages\rasa\core\channels\console.py", line 137, in send_message_receive_stream
async for line in resp.content:
File "e:\dev\project004\env\lib\site-packages\aiohttp\streams.py", line 39, in __anext__
rv = await self.read_func()
File "e:\dev\project004\env\lib\site-packages\aiohttp\streams.py", line 328, in readline
await self._wait('readline')
File "e:\dev\project004\env\lib\site-packages\aiohttp\streams.py", line 296, in _wait
await waiter
File "e:\dev\project004\env\lib\site-packages\aiohttp\helpers.py", line 596, in __exit__
raise asyncio.TimeoutError from None
asyncio.exceptions.TimeoutError
Thanks in advance