chatgraph 0.3.7__tar.gz → 0.3.10__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.3.7 → chatgraph-0.3.10}/PKG-INFO +1 -1
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/bot/chatbot_model.py +1 -1
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/types/request_types.py +2 -2
- {chatgraph-0.3.7 → chatgraph-0.3.10}/pyproject.toml +1 -1
- {chatgraph-0.3.7 → chatgraph-0.3.10}/LICENSE +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/README.md +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/__init__.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/auth/credentials.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/bot/chatbot_router.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/cli/__init__.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/error/chatbot_error.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/error/route_error.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/gRPC/gRPCCall.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/messages/message_consumer.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/userstate.proto +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/userstate_pb2.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/userstate_pb2_grpc.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/voll.proto +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/voll_pb2.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/pb/voll_pb2_grpc.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/types/end_types.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/types/message_types.py +0 -0
- {chatgraph-0.3.7 → chatgraph-0.3.10}/chatgraph/types/route.py +0 -0
|
@@ -164,7 +164,7 @@ class ChatbotApp:
|
|
|
164
164
|
return
|
|
165
165
|
|
|
166
166
|
elif isinstance(userCall_response, EndChatResponse):
|
|
167
|
-
userCall.end_chat(userCall_response.
|
|
167
|
+
userCall.end_chat(userCall_response.observations, userCall_response.tabulation_id)
|
|
168
168
|
return
|
|
169
169
|
|
|
170
170
|
elif isinstance(userCall_response, TransferToHuman):
|
|
@@ -215,7 +215,7 @@ class UserCall:
|
|
|
215
215
|
"unique_customer_id": self.__user_state.customer_id,
|
|
216
216
|
"message_text": message,
|
|
217
217
|
"platform": self.channel,
|
|
218
|
-
campaign_name: campaign_name,
|
|
218
|
+
"campaign_name": campaign_name,
|
|
219
219
|
}
|
|
220
220
|
)
|
|
221
221
|
|
|
@@ -230,7 +230,7 @@ class UserCall:
|
|
|
230
230
|
"unique_customer_id": self.__user_state.customer_id,
|
|
231
231
|
"message_text": message,
|
|
232
232
|
"platform": self.channel,
|
|
233
|
-
campaign_name: campaign_name,
|
|
233
|
+
"campaign_name": campaign_name,
|
|
234
234
|
}
|
|
235
235
|
)
|
|
236
236
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|