Skip to content

Commit 970e3be

Browse files
committed
Merge branch 'master' into response-testing-output
2 parents ee15d91 + a2d9ddd commit 970e3be

File tree

6 files changed

+7
-29
lines changed

6 files changed

+7
-29
lines changed

changelog/4605.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove outdated whitespace tokenizer warning in Testing Your Assistant documentation.

changelog/5757.removal.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Removed previously deprecated packages ``rasa_nlu`` and ``rasa_core``.
2+
3+
Use imports from ``rasa.core`` and ``rasa.nlu`` instead.

docs/user-guide/testing-your-assistant.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ to the left of the plot.
198198
is that an entity cannot stop or start inside a token.
199199
For example, if you have an example for a ``name`` entity
200200
like ``[Brian](name)'s house``, this is only valid if your tokenizer splits ``Brian's`` into
201-
multiple tokens. A whitespace tokenizer would not work in this case.
201+
multiple tokens.
202202

203203

204204
Response Selection

rasa/core/channels/webexteams.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ async def send_image_url(
3939
async def send_custom_json(
4040
self, recipient_id: Text, json_message: Dict[Text, Any], **kwargs: Any
4141
) -> None:
42-
json_message.setdefault("roomID", recipient_id)
42+
json_message.setdefault("roomId", recipient_id)
4343
return self.api.messages.create(**json_message)
4444

4545

@@ -128,7 +128,7 @@ async def webhook(request: Request) -> HTTPResponse:
128128
else:
129129
metadata = self.get_metadata(request)
130130
await self.process_message(
131-
on_new_message, message.text, message.personId, metadata
131+
on_new_message, message.text, message.roomId, metadata
132132
)
133133
return response.text("")
134134

rasa_core/__init__.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

rasa_nlu/__init__.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)