chatgraph 0.2.0__tar.gz → 0.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of chatgraph might be problematic. Click here for more details.
- {chatgraph-0.2.0 → chatgraph-0.2.1}/PKG-INFO +1 -1
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/bot/chatbot_model.py +1 -1
- {chatgraph-0.2.0 → chatgraph-0.2.1}/pyproject.toml +1 -1
- {chatgraph-0.2.0 → chatgraph-0.2.1}/LICENSE +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/README.md +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/__init__.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/auth/credentials.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/bot/chatbot_router.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/error/chatbot_error.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/error/route_error.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/messages/base_message_consumer.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/messages/rabbitMQ_message_consumer.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/messages/test_message_consumer.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/types/message_types.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/types/output_state.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/types/route.py +0 -0
- {chatgraph-0.2.0 → chatgraph-0.2.1}/chatgraph/types/user_state.py +0 -0
|
@@ -113,7 +113,7 @@ class ChatbotApp(ABC):
|
|
|
113
113
|
Returns:
|
|
114
114
|
str: A resposta gerada pela função da rota, que pode ser uma mensagem ou o resultado de uma redireção.
|
|
115
115
|
"""
|
|
116
|
-
customer_id = message.customer_id
|
|
116
|
+
customer_id = message.user_state.customer_id
|
|
117
117
|
|
|
118
118
|
menu = message.user_state.menu
|
|
119
119
|
menu = menu.lower()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|