rapida-python 0.1.17__tar.gz → 0.1.19__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.
Files changed (105) hide show
  1. {rapida_python-0.1.17 → rapida_python-0.1.19}/PKG-INFO +1 -1
  2. {rapida_python-0.1.17 → rapida_python-0.1.19}/pyproject.toml +1 -1
  3. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/__init__.py +11 -248
  4. rapida_python-0.1.19/rapida/clients/__init__.py +21 -0
  5. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/assistant.py +21 -0
  6. rapida_python-0.1.19/rapida/clients/call.py +55 -0
  7. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/endpoint.py +21 -0
  8. rapida_python-0.1.19/rapida/clients/invoke.py +41 -0
  9. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_analysis_pb2.py +2 -2
  10. rapida_python-0.1.19/rapida/clients/protos/assistant_api_pb2.py +107 -0
  11. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_api_pb2.pyi +39 -104
  12. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_api_pb2_grpc.py +73 -29
  13. rapida_python-0.1.19/rapida/clients/protos/assistant_deployment_pb2.py +119 -0
  14. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_deployment_pb2.pyi +56 -38
  15. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_knowledge_pb2.py +2 -2
  16. rapida_python-0.1.19/rapida/clients/protos/assistant_provider_pb2.py +111 -0
  17. rapida_python-0.1.19/rapida/clients/protos/assistant_provider_pb2.pyi +241 -0
  18. rapida_python-0.1.19/rapida/clients/protos/assistant_provider_pb2_grpc.py +24 -0
  19. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_tool_pb2.py +2 -2
  20. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_webhook_pb2.py +2 -2
  21. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/audit_logging_api_pb2.py +2 -2
  22. rapida_python-0.1.19/rapida/clients/protos/common_pb2.py +226 -0
  23. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/common_pb2.pyi +230 -55
  24. rapida_python-0.1.19/rapida/clients/protos/connect_api_pb2.py +51 -0
  25. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/connect_api_pb2.pyi +8 -60
  26. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/connect_api_pb2_grpc.py +0 -86
  27. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/document_api_pb2.py +2 -2
  28. rapida_python-0.1.19/rapida/clients/protos/endpoint_api_pb2.py +189 -0
  29. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/endpoint_api_pb2.pyi +4 -8
  30. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/integration_api_pb2.py +24 -22
  31. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/integration_api_pb2_grpc.py +215 -14
  32. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/invoker_api_pb2.py +2 -2
  33. rapida_python-0.1.19/rapida/clients/protos/knowledge_api_pb2.py +142 -0
  34. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/knowledge_api_pb2.pyi +2 -4
  35. rapida_python-0.1.19/rapida/clients/protos/notification_api_pb2.py +49 -0
  36. rapida_python-0.1.19/rapida/clients/protos/notification_api_pb2.pyi +51 -0
  37. rapida_python-0.1.17/rapida/clients/protos/provider_api_pb2_grpc.py → rapida_python-0.1.19/rapida/clients/protos/notification_api_pb2_grpc.py +34 -34
  38. rapida_python-0.1.19/rapida/clients/protos/talk_api_pb2.py +81 -0
  39. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/talk_api_pb2.pyi +14 -103
  40. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/talk_api_pb2_grpc.py +89 -7
  41. rapida_python-0.1.19/rapida/clients/protos/vault_api_pb2.py +62 -0
  42. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/vault_api_pb2.pyi +10 -36
  43. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/vault_api_pb2_grpc.py +0 -86
  44. rapida_python-0.1.19/rapida/clients/protos/web_api_pb2.py +189 -0
  45. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/web_api_pb2.pyi +32 -34
  46. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/web_api_pb2_grpc.py +43 -0
  47. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida_python.egg-info/PKG-INFO +1 -1
  48. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida_python.egg-info/SOURCES.txt +10 -10
  49. rapida_python-0.1.19/tests/test_configs.py +106 -0
  50. rapida_python-0.1.19/tests/test_connections.py +270 -0
  51. rapida_python-0.1.19/tests/test_version.py +70 -0
  52. rapida_python-0.1.17/rapida/clients/call.py +0 -34
  53. rapida_python-0.1.17/rapida/clients/invoke.py +0 -20
  54. rapida_python-0.1.17/rapida/clients/protos/assistant_api_pb2.py +0 -136
  55. rapida_python-0.1.17/rapida/clients/protos/assistant_deployment_pb2.py +0 -95
  56. rapida_python-0.1.17/rapida/clients/protos/common_pb2.py +0 -173
  57. rapida_python-0.1.17/rapida/clients/protos/connect_api_pb2.py +0 -67
  58. rapida_python-0.1.17/rapida/clients/protos/endpoint_api_pb2.py +0 -193
  59. rapida_python-0.1.17/rapida/clients/protos/knowledge_api_pb2.py +0 -144
  60. rapida_python-0.1.17/rapida/clients/protos/marketplace_api_pb2.py +0 -48
  61. rapida_python-0.1.17/rapida/clients/protos/marketplace_api_pb2.pyi +0 -72
  62. rapida_python-0.1.17/rapida/clients/protos/marketplace_api_pb2_grpc.py +0 -97
  63. rapida_python-0.1.17/rapida/clients/protos/provider_api_pb2.py +0 -54
  64. rapida_python-0.1.17/rapida/clients/protos/provider_api_pb2.pyi +0 -71
  65. rapida_python-0.1.17/rapida/clients/protos/sendgrid_api_pb2.py +0 -51
  66. rapida_python-0.1.17/rapida/clients/protos/sendgrid_api_pb2.pyi +0 -70
  67. rapida_python-0.1.17/rapida/clients/protos/sendgrid_api_pb2_grpc.py +0 -183
  68. rapida_python-0.1.17/rapida/clients/protos/talk_api_pb2.py +0 -108
  69. rapida_python-0.1.17/rapida/clients/protos/vault_api_pb2.py +0 -76
  70. rapida_python-0.1.17/rapida/clients/protos/web_api_pb2.py +0 -193
  71. rapida_python-0.1.17/rapida/utils/__init__.py +0 -0
  72. {rapida_python-0.1.17 → rapida_python-0.1.19}/README.md +0 -0
  73. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_analysis_pb2.pyi +0 -0
  74. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_analysis_pb2_grpc.py +0 -0
  75. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_deployment_pb2_grpc.py +0 -0
  76. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_knowledge_pb2.pyi +0 -0
  77. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_knowledge_pb2_grpc.py +0 -0
  78. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_tool_pb2.pyi +0 -0
  79. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_tool_pb2_grpc.py +0 -0
  80. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_webhook_pb2.pyi +0 -0
  81. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/assistant_webhook_pb2_grpc.py +0 -0
  82. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/audit_logging_api_pb2.pyi +0 -0
  83. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/audit_logging_api_pb2_grpc.py +0 -0
  84. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/common_pb2_grpc.py +0 -0
  85. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/document_api_pb2.pyi +0 -0
  86. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/document_api_pb2_grpc.py +0 -0
  87. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/endpoint_api_pb2_grpc.py +0 -0
  88. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/integration_api_pb2.pyi +0 -0
  89. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/invoker_api_pb2.pyi +0 -0
  90. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/invoker_api_pb2_grpc.py +0 -0
  91. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/clients/protos/knowledge_api_pb2_grpc.py +0 -0
  92. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/configs/__init__.py +0 -0
  93. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/connections/__init__.py +0 -0
  94. {rapida_python-0.1.17/rapida/clients → rapida_python-0.1.19/rapida/utils}/__init__.py +0 -0
  95. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/utils/rapida_environment.py +0 -0
  96. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/utils/rapida_header.py +0 -0
  97. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/utils/rapida_region.py +0 -0
  98. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/utils/rapida_source.py +0 -0
  99. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/utils/rapida_value.py +0 -0
  100. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida/version.py +0 -0
  101. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida_python.egg-info/dependency_links.txt +0 -0
  102. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida_python.egg-info/requires.txt +0 -0
  103. {rapida_python-0.1.17 → rapida_python-0.1.19}/rapida_python.egg-info/top_level.txt +0 -0
  104. {rapida_python-0.1.17 → rapida_python-0.1.19}/setup.cfg +0 -0
  105. {rapida_python-0.1.17 → rapida_python-0.1.19}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rapida-python
3
- Version: 0.1.17
3
+ Version: 0.1.19
4
4
  Summary: RapidaAI SDK to integrate rapida.ai APIs
5
5
  Author-email: RapidaAI <code@rapida.ai>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rapida-python"
7
- version = "0.1.17"
7
+ version = "0.1.19"
8
8
  description = "RapidaAI SDK to integrate rapida.ai APIs"
9
9
  readme = "README.md"
10
10
  authors = [{name = "RapidaAI", email = "code@rapida.ai"}]
@@ -65,140 +65,6 @@ from rapida.utils.rapida_header import (
65
65
  HEADER_LONGITUDE,
66
66
  )
67
67
 
68
- # from rapida.clients.document import IndexKnowledgeDocument
69
- # from rapida.clients.marketplace import GetAllDeployment
70
- # from rapida.clients.invoke import Invoke
71
- # from rapida.clients.auth import (
72
- # AuthenticateUser,
73
- # AuthorizeUser,
74
- # RegisterUser,
75
- # VerifyToken,
76
- # ForgotPassword,
77
- # CreatePassword,
78
- # GetUser,
79
- # UpdateUser,
80
- # GetAllUser,
81
- # Google,
82
- # Linkedin,
83
- # Github,
84
- # )
85
- # from rapida.clients.provider import GetAllProvider, GetAllToolProvider
86
- # from rapida.clients.index import (
87
- # WithPlatform,
88
- # WithAuthContext,
89
- # get_client_info,
90
- # WithClientContext,
91
- # )
92
- # from rapida.clients.connect import (
93
- # GeneralConnect,
94
- # KnowledgeConnect,
95
- # ActionConnect,
96
- # GetConnectorFiles,
97
- # )
98
- # from rapida.clients.organization import (
99
- # CreateOrganization,
100
- # UpdateOrganization,
101
- # GetOrganization,
102
- # )
103
- # from rapida.clients.assistant import (
104
- # GetAllAssistant,
105
- # UpdateAssistantVersion,
106
- # GetAllAssistantProviderModel,
107
- # GetAssistant,
108
- # CreateAssistantProviderModel,
109
- # CreateAssistant,
110
- # CreateAssistantTag,
111
- # UpdateAssistantDetail,
112
- # GetAssistantMessages,
113
- # GetMessages,
114
- # GetAllAssistantSession,
115
- # GetAllAssistantConversationMessage,
116
- # GetAllAssistantWebhook,
117
- # CreateWebhook,
118
- # UpdateWebhook,
119
- # GetAssistantWebhook,
120
- # DeleteAssistantWebhook,
121
- # GetAssistantConversation,
122
- # DeleteAssistant,
123
- # GetAllAssistantAnalysis,
124
- # CreateAnalysis,
125
- # UpdateAnalysis,
126
- # GetAssistantAnalysis,
127
- # DeleteAssistantAnalysis,
128
- # GetAllWebhookLog,
129
- # GetWebhookLog,
130
- # GetAllAssistantTool,
131
- # CreateAssistantTool,
132
- # UpdateAssistantTool,
133
- # GetAssistantTool,
134
- # DeleteAssistantTool,
135
- # GetAllAssistantKnowledge,
136
- # CreateAssistantKnowledge,
137
- # UpdateAssistantKnowledge,
138
- # GetAssistantKnowledge,
139
- # DeleteAssistantKnowledge,
140
- # )
141
- # from rapida.clients.deployment import (
142
- # CreateAssistantDebuggerDeployment,
143
- # GetAssistantDebuggerDeployment,
144
- # CreateAssistantApiDeployment,
145
- # GetAssistantApiDeployment,
146
- # CreateAssistantWebpluginDeployment,
147
- # GetAssistantWebpluginDeployment,
148
- # CreateAssistantPhoneDeployment,
149
- # GetAssistantPhoneDeployment,
150
- # CreateAssistantWhatsappDeployment,
151
- # GetAssistantWhatsappDeployment,
152
- # )
153
- # from rapida.clients.activity import GetActivities, GetActivity
154
- # from rapida.clients.endpoint import (
155
- # GetAllEndpoint,
156
- # UpdateEndpointVersion,
157
- # GetAllEndpointProviderModel,
158
- # GetEndpoint,
159
- # CreateEndpointProviderModel,
160
- # CreateEndpoint,
161
- # CreateEndpointTag,
162
- # UpdateEndpointDetail,
163
- # CreateEndpointRetryConfiguration,
164
- # CreateEndpointCacheConfiguration,
165
- # GetAllEndpointLog,
166
- # GetEndpointLog,
167
- # )
168
- # from rapida.clients.vault import (
169
- # CreateProviderKey,
170
- # DeleteProviderKey,
171
- # AllOrganizationCredential,
172
- # CreateToolCredential,
173
- # )
174
- # from rapida.clients.talk import (
175
- # AssistantTalk,
176
- # CreateMessageMetric,
177
- # CreateConversationMetric,
178
- # GetAllAssistantConversation,
179
- # )
180
- # from rapida.clients.knowledge import (
181
- # CreateKnowledge,
182
- # GetKnowledgeBase,
183
- # GetAllKnowledgeBases,
184
- # CreateKnowledgeDocument,
185
- # GetAllKnowledgeDocument,
186
- # GetAllKnowledgeDocumentSegment,
187
- # CreateKnowledgeTag,
188
- # UpdateKnowledgeDetail,
189
- # DeleteKnowledgeDocumentSegment,
190
- # UpdateKnowledgeDocumentSegment,
191
- # )
192
- # from rapida.clients.project import (
193
- # AddUsersToProject,
194
- # CreateProject,
195
- # UpdateProject,
196
- # GetAllProject,
197
- # GetProject,
198
- # DeleteProject,
199
- # GetAllProjectCredential,
200
- # CreateProjectCredential,
201
- # )
202
68
  from rapida.clients.call import create_phone_call, create_bulk_phone_call
203
69
  from rapida.clients.assistant import (
204
70
  get_assistant,
@@ -226,6 +92,7 @@ from rapida.clients.endpoint import (
226
92
 
227
93
  from rapida.clients.invoke import invoke
228
94
 
95
+
229
96
  # # Protobuf imports
230
97
  from rapida.clients.protos.assistant_knowledge_pb2 import (
231
98
  AssistantKnowledge,
@@ -398,6 +265,8 @@ from rapida.clients.protos.common_pb2 import (
398
265
  GetAllAssistantConversationResponse,
399
266
  GetAllConversationMessageRequest,
400
267
  GetAllConversationMessageResponse,
268
+ AssistantConversationMessageTextContent,
269
+ AssistantConversationMessageAudioContent,
401
270
  )
402
271
  from rapida.clients.protos.assistant_webhook_pb2 import (
403
272
  AssistantWebhook,
@@ -540,6 +409,8 @@ from rapida.clients.protos.assistant_api_pb2 import (
540
409
  GetAssistantConversationResponse,
541
410
  )
542
411
 
412
+ from rapida.clients.protos.talk_api_pb2_grpc import AgentKitStub, AgentKit, AgentKitServicer, add_AgentKitServicer_to_server
413
+
543
414
  __all__ = [
544
415
  "Any",
545
416
  "RapidaSource",
@@ -601,120 +472,6 @@ __all__ = [
601
472
  "invoke",
602
473
  "get_assistant_analysis",
603
474
  "get_all_assistant_analysis",
604
- # "IndexKnowledgeDocument",
605
- # "GetAllDeployment",
606
- # "Invoke",
607
- # "AuthenticateUser",
608
- # "AuthorizeUser",
609
- # "RegisterUser",
610
- # "VerifyToken",
611
- # "ForgotPassword",
612
- # "CreatePassword",
613
- # "GetUser",
614
- # "UpdateUser",
615
- # "GetAllUser",
616
- # "Google",
617
- # "Linkedin",
618
- # "Github",
619
- # "GetAllProvider",
620
- # "GetAllToolProvider",
621
- # "WithPlatform",
622
- # "WithAuthContext",
623
- # "get_client_info",
624
- # "WithClientContext",
625
- # "GeneralConnect",
626
- # "KnowledgeConnect",
627
- # "ActionConnect",
628
- # "GetConnectorFiles",
629
- # "CreateOrganization",
630
- # "UpdateOrganization",
631
- # "GetOrganization",
632
- # "GetAllAssistant",
633
- # "UpdateAssistantVersion",
634
- # "GetAllAssistantProviderModel",
635
- # "GetAssistant",
636
- # "CreateAssistantProviderModel",
637
- # "CreateAssistant",
638
- # "CreateAssistantTag",
639
- # "UpdateAssistantDetail",
640
- # "GetAssistantMessages",
641
- # "GetMessages",
642
- # "GetAllAssistantSession",
643
- # "GetAllAssistantConversationMessage",
644
- # "GetAllAssistantWebhook",
645
- # "CreateWebhook",
646
- # "UpdateWebhook",
647
- # "GetAssistantWebhook",
648
- # "DeleteAssistantWebhook",
649
- # "GetAssistantConversation",
650
- # "DeleteAssistant",
651
- # "GetAllAssistantAnalysis",
652
- # "CreateAnalysis",
653
- # "UpdateAnalysis",
654
- # "GetAssistantAnalysis",
655
- # "DeleteAssistantAnalysis",
656
- # "GetAllWebhookLog",
657
- # "GetWebhookLog",
658
- # "GetAllAssistantTool",
659
- # "CreateAssistantTool",
660
- # "UpdateAssistantTool",
661
- # "GetAssistantTool",
662
- # "DeleteAssistantTool",
663
- # "GetAllAssistantKnowledge",
664
- # "CreateAssistantKnowledge",
665
- # "UpdateAssistantKnowledge",
666
- # "GetAssistantKnowledge",
667
- # "DeleteAssistantKnowledge",
668
- # "CreateAssistantDebuggerDeployment",
669
- # "GetAssistantDebuggerDeployment",
670
- # "CreateAssistantApiDeployment",
671
- # "GetAssistantApiDeployment",
672
- # "CreateAssistantWebpluginDeployment",
673
- # "GetAssistantWebpluginDeployment",
674
- # "CreateAssistantPhoneDeployment",
675
- # "GetAssistantPhoneDeployment",
676
- # "CreateAssistantWhatsappDeployment",
677
- # "GetAssistantWhatsappDeployment",
678
- # "GetActivities",
679
- # "GetActivity",
680
- # "GetAllEndpoint",
681
- # "UpdateEndpointVersion",
682
- # "GetAllEndpointProviderModel",
683
- # "GetEndpoint",
684
- # "CreateEndpointProviderModel",
685
- # "CreateEndpoint",
686
- # "CreateEndpointTag",
687
- # "UpdateEndpointDetail",
688
- # "CreateEndpointRetryConfiguration",
689
- # "CreateEndpointCacheConfiguration",
690
- # "GetAllEndpointLog",
691
- # "GetEndpointLog",
692
- # "CreateProviderKey",
693
- # "DeleteProviderKey",
694
- # "AllOrganizationCredential",
695
- # "CreateToolCredential",
696
- # "AssistantTalk",
697
- # "CreateMessageMetric",
698
- # "CreateConversationMetric",
699
- # "GetAllAssistantConversation",
700
- # "CreateKnowledge",
701
- # "GetKnowledgeBase",
702
- # "GetAllKnowledgeBases",
703
- # "CreateKnowledgeDocument",
704
- # "GetAllKnowledgeDocument",
705
- # "GetAllKnowledgeDocumentSegment",
706
- # "CreateKnowledgeTag",
707
- # "UpdateKnowledgeDetail",
708
- # "DeleteKnowledgeDocumentSegment",
709
- # "UpdateKnowledgeDocumentSegment",
710
- # "AddUsersToProject",
711
- # "CreateProject",
712
- # "UpdateProject",
713
- # "GetAllProject",
714
- # "GetProject",
715
- # "DeleteProject",
716
- # "GetAllProjectCredential",
717
- # "CreateProjectCredential",
718
475
  "create_phone_call",
719
476
  "create_bulk_phone_call",
720
477
  # Protobuf classes
@@ -992,4 +749,10 @@ __all__ = [
992
749
  "UpdateAssistantDetailRequest",
993
750
  "GetAssistantConversationRequest",
994
751
  "GetAssistantConversationResponse",
752
+ "AssistantConversationMessageTextContent",
753
+ "AssistantConversationMessageAudioContent",
754
+ "AgentKitStub",
755
+ "AgentKit",
756
+ "AgentKitServicer",
757
+ "add_AgentKitServicer_to_server",
995
758
  ]
@@ -0,0 +1,21 @@
1
+ # Copyright (c) 2024. Rapida
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ # THE SOFTWARE.
20
+ #
21
+ # Author: Prashant <prashant@rapida.ai>
@@ -1,3 +1,24 @@
1
+ # Copyright (c) 2024. Rapida
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ # THE SOFTWARE.
20
+ #
21
+ # Author: Prashant <prashant@rapida.ai>
1
22
  from typing import Union
2
23
  from rapida.clients.protos.assistant_knowledge_pb2 import (
3
24
  GetAllAssistantKnowledgeRequest,
@@ -0,0 +1,55 @@
1
+ # Copyright (c) 2024. Rapida
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ # THE SOFTWARE.
20
+ #
21
+ # Author: Prashant <prashant@rapida.ai>
22
+ from typing import Union
23
+ from rapida.clients.protos.talk_api_pb2 import (
24
+ CreateBulkPhoneCallRequest,
25
+ CreateBulkPhoneCallResponse,
26
+ CreatePhoneCallRequest,
27
+ CreatePhoneCallResponse,
28
+ )
29
+ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
30
+
31
+
32
+ def create_phone_call(
33
+ client_cfg: ConnectionConfig,
34
+ request: CreatePhoneCallRequest,
35
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
36
+ ) -> CreatePhoneCallResponse:
37
+ if auth is None:
38
+ auth = client_cfg.auth
39
+ return client_cfg.conversation_client.CreatePhoneCall(
40
+ request,
41
+ metadata=auth,
42
+ )
43
+
44
+
45
+ def create_bulk_phone_call(
46
+ client_cfg: ConnectionConfig,
47
+ request: CreateBulkPhoneCallRequest,
48
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
49
+ ) -> CreateBulkPhoneCallResponse:
50
+ if auth is None:
51
+ auth = client_cfg.auth
52
+ return client_cfg.conversation_client.CreateBulkPhoneCall(
53
+ request,
54
+ metadata=auth,
55
+ )
@@ -1,3 +1,24 @@
1
+ # Copyright (c) 2024. Rapida
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ # THE SOFTWARE.
20
+ #
21
+ # Author: Prashant <prashant@rapida.ai>
1
22
  from typing import Union
2
23
  from rapida.clients.protos.endpoint_api_pb2 import (
3
24
  GetAllEndpointLogRequest,
@@ -0,0 +1,41 @@
1
+ # Copyright (c) 2024. Rapida
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in
11
+ # all copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ # THE SOFTWARE.
20
+ #
21
+ # Author: Prashant <prashant@rapida.ai>
22
+ from typing import Union
23
+ from rapida.clients.protos.invoker_api_pb2 import (
24
+ InvokeRequest,
25
+ InvokeResponse,
26
+ )
27
+ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
28
+
29
+
30
+ def invoke(
31
+ client_cfg: ConnectionConfig,
32
+ request: InvokeRequest,
33
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
34
+ ) -> InvokeResponse:
35
+ if auth is None:
36
+ auth = client_cfg.auth
37
+
38
+ return client_cfg.deployment_client.Invoke(
39
+ request,
40
+ metadata=auth,
41
+ )
@@ -26,14 +26,14 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
26
26
  import rapida.clients.protos.common_pb2 as common__pb2
27
27
 
28
28
 
29
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18\x61ssistant-analysis.proto\x12\rassistant_api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x0c\x63ommon.proto\"\x94\x04\n\x11\x41ssistantAnalysis\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12T\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x38.assistant_api.AssistantAnalysis.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x0e\n\x06status\x18\x0c \x01(\t\x12\x15\n\tcreatedBy\x18\r \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0b\x63reatedUser\x18\x0e \x01(\x0b\x32\x05.User\x12\x15\n\tupdatedBy\x18\x0f \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0bupdatedUser\x18\x10 \x01(\x0b\x32\x05.User\x12/\n\x0b\x63reatedDate\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdatedDate\x18\x12 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc6\x02\n\x1e\x43reateAssistantAnalysisRequest\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12\x61\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x45.assistant_api.CreateAssistantAnalysisRequest.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd6\x02\n\x1eUpdateAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12\x61\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x45.assistant_api.UpdateAssistantAnalysisRequest.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"F\n\x1bGetAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0b\x61ssistantId\x18\x02 \x01(\x04\x42\x02\x30\x01\"I\n\x1e\x44\x65leteAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0b\x61ssistantId\x18\x02 \x01(\x04\x42\x02\x30\x01\"\x84\x01\n\x1cGetAssistantAnalysisResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12.\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32 .assistant_api.AssistantAnalysis\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\"t\n\x1eGetAllAssistantAnalysisRequest\x12\x17\n\x0b\x61ssistantId\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x1b\n\x08paginate\x18\x02 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x03 \x03(\x0b\x32\t.Criteria\"\xa6\x01\n\x1fGetAllAssistantAnalysisResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12.\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32 .assistant_api.AssistantAnalysis\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.PaginatedB7Z5github.com/lexatic/web-backend/protos/lexatic-backendb\x06proto3')
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18\x61ssistant-analysis.proto\x12\rassistant_api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x0c\x63ommon.proto\"\x94\x04\n\x11\x41ssistantAnalysis\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12T\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x38.assistant_api.AssistantAnalysis.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x0e\n\x06status\x18\x0c \x01(\t\x12\x15\n\tcreatedBy\x18\r \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0b\x63reatedUser\x18\x0e \x01(\x0b\x32\x05.User\x12\x15\n\tupdatedBy\x18\x0f \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0bupdatedUser\x18\x10 \x01(\x0b\x32\x05.User\x12/\n\x0b\x63reatedDate\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdatedDate\x18\x12 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc6\x02\n\x1e\x43reateAssistantAnalysisRequest\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12\x61\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x45.assistant_api.CreateAssistantAnalysisRequest.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xd6\x02\n\x1eUpdateAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x16\n\nendpointId\x18\x04 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0f\x65ndpointVersion\x18\x05 \x01(\t\x12\x61\n\x12\x65ndpointParameters\x18\x07 \x03(\x0b\x32\x45.assistant_api.UpdateAssistantAnalysisRequest.EndpointParametersEntry\x12\x17\n\x0b\x61ssistantId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x19\n\x11\x65xecutionPriority\x18\x14 \x01(\r\x1a\x39\n\x17\x45ndpointParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"F\n\x1bGetAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0b\x61ssistantId\x18\x02 \x01(\x04\x42\x02\x30\x01\"I\n\x1e\x44\x65leteAssistantAnalysisRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x17\n\x0b\x61ssistantId\x18\x02 \x01(\x04\x42\x02\x30\x01\"\x84\x01\n\x1cGetAssistantAnalysisResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12.\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32 .assistant_api.AssistantAnalysis\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\"t\n\x1eGetAllAssistantAnalysisRequest\x12\x17\n\x0b\x61ssistantId\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x1b\n\x08paginate\x18\x02 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x03 \x03(\x0b\x32\t.Criteria\"\xa6\x01\n\x1fGetAllAssistantAnalysisResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12.\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32 .assistant_api.AssistantAnalysis\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.PaginatedB\x1cZ\x1agithub.com/rapidaai/protosb\x06proto3')
30
30
 
31
31
  _globals = globals()
32
32
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
33
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'assistant_analysis_pb2', _globals)
34
34
  if not _descriptor._USE_C_DESCRIPTORS:
35
35
  _globals['DESCRIPTOR']._loaded_options = None
36
- _globals['DESCRIPTOR']._serialized_options = b'Z5github.com/lexatic/web-backend/protos/lexatic-backend'
36
+ _globals['DESCRIPTOR']._serialized_options = b'Z\032github.com/rapidaai/protos'
37
37
  _globals['_ASSISTANTANALYSIS_ENDPOINTPARAMETERSENTRY']._loaded_options = None
38
38
  _globals['_ASSISTANTANALYSIS_ENDPOINTPARAMETERSENTRY']._serialized_options = b'8\001'
39
39
  _globals['_ASSISTANTANALYSIS'].fields_by_name['id']._loaded_options = None
@@ -0,0 +1,107 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: assistant-api.proto
5
+ # Protobuf Python Version: 6.30.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 30,
16
+ 0,
17
+ '',
18
+ 'assistant-api.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
26
+ import rapida.clients.protos.common_pb2 as common__pb2
27
+ import rapida.clients.protos.assistant_deployment_pb2 as assistant__deployment__pb2
28
+ import rapida.clients.protos.assistant_tool_pb2 as assistant__tool__pb2
29
+ import rapida.clients.protos.assistant_analysis_pb2 as assistant__analysis__pb2
30
+ import rapida.clients.protos.assistant_webhook_pb2 as assistant__webhook__pb2
31
+ import rapida.clients.protos.assistant_knowledge_pb2 as assistant__knowledge__pb2
32
+ import rapida.clients.protos.assistant_provider_pb2 as assistant__provider__pb2
33
+
34
+
35
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61ssistant-api.proto\x12\rassistant_api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x0c\x63ommon.proto\x1a\x1a\x61ssistant-deployment.proto\x1a\x14\x61ssistant-tool.proto\x1a\x18\x61ssistant-analysis.proto\x1a\x17\x61ssistant-webhook.proto\x1a\x19\x61ssistant-knowledge.proto\x1a\x18\x61ssistant-provider.proto\"\xca\t\n\tAssistant\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x12\n\nvisibility\x18\x03 \x01(\t\x12\x0e\n\x06source\x18\x04 \x01(\t\x12\x1c\n\x10sourceIdentifier\x18\x05 \x01(\x04\x42\x02\x30\x01\x12\x15\n\tprojectId\x18\x07 \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0eorganizationId\x18\x08 \x01(\x04\x42\x02\x30\x01\x12\x19\n\x11\x61ssistantProvider\x18\t \x01(\t\x12\x1f\n\x13\x61ssistantProviderId\x18\n \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x0b \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x0c \x01(\t\x12\x45\n\x16\x61ssistantProviderModel\x18\x32 \x01(\x0b\x32%.assistant_api.AssistantProviderModel\x12K\n\x19\x61ssistantProviderAgentkit\x18\x33 \x01(\x0b\x32(.assistant_api.AssistantProviderAgentkit\x12M\n\x1a\x61ssistantProviderWebsocket\x18\x34 \x01(\x0b\x32).assistant_api.AssistantProviderWebsocket\x12\x1a\n\x0c\x61ssistantTag\x18\x0e \x01(\x0b\x32\x04.Tag\x12\x15\n\tcreatedBy\x18\x16 \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0b\x63reatedUser\x18\x17 \x01(\x0b\x32\x05.User\x12\x15\n\tupdatedBy\x18\x18 \x01(\x04\x42\x02\x30\x01\x12\x1a\n\x0bupdatedUser\x18\x19 \x01(\x0b\x32\x05.User\x12/\n\x0b\x63reatedDate\x18\x1a \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdatedDate\x18\x1b \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x46\n\x12\x64\x65\x62uggerDeployment\x18\x1e \x01(\x0b\x32*.assistant_api.AssistantDebuggerDeployment\x12@\n\x0fphoneDeployment\x18\x1f \x01(\x0b\x32\'.assistant_api.AssistantPhoneDeployment\x12\x46\n\x12whatsappDeployment\x18 \x01(\x0b\x32*.assistant_api.AssistantWhatsappDeployment\x12H\n\x13webPluginDeployment\x18! \x01(\x0b\x32+.assistant_api.AssistantWebpluginDeployment\x12<\n\rapiDeployment\x18\" \x01(\x0b\x32%.assistant_api.AssistantApiDeployment\x12\x36\n\x16\x61ssistantConversations\x18# \x03(\x0b\x32\x16.AssistantConversation\x12:\n\x11\x61ssistantWebhooks\x18$ \x03(\x0b\x32\x1f.assistant_api.AssistantWebhook\x12\x34\n\x0e\x61ssistantTools\x18% \x03(\x0b\x32\x1c.assistant_api.AssistantTool\"\xf7\x02\n\x16\x43reateAssistantRequest\x12H\n\x11\x61ssistantProvider\x18\x01 \x01(\x0b\x32-.assistant_api.CreateAssistantProviderRequest\x12K\n\x13\x61ssistantKnowledges\x18\x02 \x03(\x0b\x32..assistant_api.CreateAssistantKnowledgeRequest\x12\x41\n\x0e\x61ssistantTools\x18\x03 \x03(\x0b\x32).assistant_api.CreateAssistantToolRequest\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12\x12\n\nvisibility\x18\x05 \x01(\t\x12\x10\n\x08language\x18\x06 \x01(\t\x12\x0e\n\x06source\x18\x07 \x01(\t\x12\x1c\n\x10sourceIdentifier\x18\x08 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04tags\x18\t \x03(\t\x12\x0c\n\x04name\x18\n \x01(\t\"B\n\x19\x43reateAssistantTagRequest\x12\x17\n\x0b\x61ssistantId\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04tags\x18\x02 \x03(\t\"H\n\x13GetAssistantRequest\x12\x31\n\x13\x61ssistantDefinition\x18\x01 \x01(\x0b\x32\x14.AssistantDefinition\"(\n\x16\x44\x65leteAssistantRequest\x12\x0e\n\x02id\x18\x01 \x01(\x04\x42\x02\x30\x01\"t\n\x14GetAssistantResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12&\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32\x18.assistant_api.Assistant\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\"S\n\x16GetAllAssistantRequest\x12\x1b\n\x08paginate\x18\x01 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x02 \x03(\x0b\x32\t.Criteria\"\x85\x01\n\x1fGetAllAssistantTelemetryRequest\x12\x1b\n\x08paginate\x18\x01 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x02 \x03(\x0b\x32\t.Criteria\x12\'\n\tassistant\x18\x03 \x01(\x0b\x32\x14.AssistantDefinition\"\x91\x01\n GetAllAssistantTelemetryResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x18\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\n.Telemetry\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.Paginated\"\x96\x01\n\x17GetAllAssistantResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12&\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\x18.assistant_api.Assistant\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.Paginated\"\xb0\x01\n\x1dGetAllAssistantMessageRequest\x12\x1b\n\x08paginate\x18\x01 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x02 \x03(\x0b\x32\t.Criteria\x12\x17\n\x0b\x61ssistantId\x18\x03 \x01(\x04\x42\x02\x30\x01\x12\x18\n\x05order\x18\x05 \x01(\x0b\x32\t.Ordering\x12!\n\tselectors\x18\x06 \x03(\x0b\x32\x0e.FieldSelector\"\xa2\x01\n\x1eGetAllAssistantMessageResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12+\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\x1d.AssistantConversationMessage\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.Paginated\"\x8e\x01\n\x14GetAllMessageRequest\x12\x1b\n\x08paginate\x18\x01 \x01(\x0b\x32\t.Paginate\x12\x1c\n\tcriterias\x18\x02 \x03(\x0b\x32\t.Criteria\x12\x18\n\x05order\x18\x05 \x01(\x0b\x32\t.Ordering\x12!\n\tselectors\x18\x06 \x03(\x0b\x32\x0e.FieldSelector\"\x99\x01\n\x15GetAllMessageResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12+\n\x04\x64\x61ta\x18\x03 \x03(\x0b\x32\x1d.AssistantConversationMessage\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error\x12\x1d\n\tpaginated\x18\x05 \x01(\x0b\x32\n.Paginated\"Z\n\x1cUpdateAssistantDetailRequest\x12\x17\n\x0b\x61ssistantId\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\"m\n\x1fGetAssistantConversationRequest\x12\x17\n\x0b\x61ssistantId\x18\x01 \x01(\x04\x42\x02\x30\x01\x12\x0e\n\x02id\x18\x02 \x01(\x04\x42\x02\x30\x01\x12!\n\tselectors\x18\x05 \x03(\x0b\x32\x0e.FieldSelector\"~\n GetAssistantConversationResponse\x12\x0c\n\x04\x63ode\x18\x01 \x01(\x05\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12$\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32\x16.AssistantConversation\x12\x15\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x06.Error2\xb4\"\n\x10\x41ssistantService\x12W\n\x0cGetAssistant\x12\".assistant_api.GetAssistantRequest\x1a#.assistant_api.GetAssistantResponse\x12`\n\x0fGetAllAssistant\x12%.assistant_api.GetAllAssistantRequest\x1a&.assistant_api.GetAllAssistantResponse\x12]\n\x0f\x43reateAssistant\x12%.assistant_api.CreateAssistantRequest\x1a#.assistant_api.GetAssistantResponse\x12]\n\x0f\x44\x65leteAssistant\x12%.assistant_api.DeleteAssistantRequest\x1a#.assistant_api.GetAssistantResponse\x12x\n\x17GetAllAssistantProvider\x12-.assistant_api.GetAllAssistantProviderRequest\x1a..assistant_api.GetAllAssistantProviderResponse\x12u\n\x17\x43reateAssistantProvider\x12-.assistant_api.CreateAssistantProviderRequest\x1a+.assistant_api.GetAssistantProviderResponse\x12\x63\n\x12\x43reateAssistantTag\x12(.assistant_api.CreateAssistantTagRequest\x1a#.assistant_api.GetAssistantResponse\x12k\n\x16UpdateAssistantVersion\x12,.assistant_api.UpdateAssistantVersionRequest\x1a#.assistant_api.GetAssistantResponse\x12i\n\x15UpdateAssistantDetail\x12+.assistant_api.UpdateAssistantDetailRequest\x1a#.assistant_api.GetAssistantResponse\x12u\n\x16GetAllAssistantMessage\x12,.assistant_api.GetAllAssistantMessageRequest\x1a-.assistant_api.GetAllAssistantMessageResponse\x12\x62\n\x19GetAllConversationMessage\x12!.GetAllConversationMessageRequest\x1a\".GetAllConversationMessageResponse\x12Z\n\rGetAllMessage\x12#.assistant_api.GetAllMessageRequest\x1a$.assistant_api.GetAllMessageResponse\x12{\n\x18GetAllAssistantTelemetry\x12..assistant_api.GetAllAssistantTelemetryRequest\x1a/.assistant_api.GetAllAssistantTelemetryResponse\x12h\n\x1bGetAllAssistantConversation\x12#.GetAllAssistantConversationRequest\x1a$.GetAllAssistantConversationResponse\x12{\n\x18GetAssistantConversation\x12..assistant_api.GetAssistantConversationRequest\x1a/.assistant_api.GetAssistantConversationResponse\x12u\n\x16GetAssistantWebhookLog\x12,.assistant_api.GetAssistantWebhookLogRequest\x1a-.assistant_api.GetAssistantWebhookLogResponse\x12~\n\x19GetAllAssistantWebhookLog\x12/.assistant_api.GetAllAssistantWebhookLogRequest\x1a\x30.assistant_api.GetAllAssistantWebhookLogResponse\x12u\n\x16GetAllAssistantWebhook\x12,.assistant_api.GetAllAssistantWebhookRequest\x1a-.assistant_api.GetAllAssistantWebhookResponse\x12l\n\x13GetAssistantWebhook\x12).assistant_api.GetAssistantWebhookRequest\x1a*.assistant_api.GetAssistantWebhookResponse\x12r\n\x16\x43reateAssistantWebhook\x12,.assistant_api.CreateAssistantWebhookRequest\x1a*.assistant_api.GetAssistantWebhookResponse\x12r\n\x16UpdateAssistantWebhook\x12,.assistant_api.UpdateAssistantWebhookRequest\x1a*.assistant_api.GetAssistantWebhookResponse\x12r\n\x16\x44\x65leteAssistantWebhook\x12,.assistant_api.DeleteAssistantWebhookRequest\x1a*.assistant_api.GetAssistantWebhookResponse\x12l\n\x13GetAssistantToolLog\x12).assistant_api.GetAssistantToolLogRequest\x1a*.assistant_api.GetAssistantToolLogResponse\x12u\n\x16GetAllAssistantToolLog\x12,.assistant_api.GetAllAssistantToolLogRequest\x1a-.assistant_api.GetAllAssistantToolLogResponse\x12o\n\x14GetAssistantAnalysis\x12*.assistant_api.GetAssistantAnalysisRequest\x1a+.assistant_api.GetAssistantAnalysisResponse\x12u\n\x17UpdateAssistantAnalysis\x12-.assistant_api.UpdateAssistantAnalysisRequest\x1a+.assistant_api.GetAssistantAnalysisResponse\x12u\n\x17\x43reateAssistantAnalysis\x12-.assistant_api.CreateAssistantAnalysisRequest\x1a+.assistant_api.GetAssistantAnalysisResponse\x12u\n\x17\x44\x65leteAssistantAnalysis\x12-.assistant_api.DeleteAssistantAnalysisRequest\x1a+.assistant_api.GetAssistantAnalysisResponse\x12x\n\x17GetAllAssistantAnalysis\x12-.assistant_api.GetAllAssistantAnalysisRequest\x1a..assistant_api.GetAllAssistantAnalysisResponse\x12i\n\x13\x43reateAssistantTool\x12).assistant_api.CreateAssistantToolRequest\x1a\'.assistant_api.GetAssistantToolResponse\x12\x63\n\x10GetAssistantTool\x12&.assistant_api.GetAssistantToolRequest\x1a\'.assistant_api.GetAssistantToolResponse\x12l\n\x13GetAllAssistantTool\x12).assistant_api.GetAllAssistantToolRequest\x1a*.assistant_api.GetAllAssistantToolResponse\x12i\n\x13\x44\x65leteAssistantTool\x12).assistant_api.DeleteAssistantToolRequest\x1a\'.assistant_api.GetAssistantToolResponse\x12i\n\x13UpdateAssistantTool\x12).assistant_api.UpdateAssistantToolRequest\x1a\'.assistant_api.GetAssistantToolResponse\x12x\n\x18\x43reateAssistantKnowledge\x12..assistant_api.CreateAssistantKnowledgeRequest\x1a,.assistant_api.GetAssistantKnowledgeResponse\x12r\n\x15GetAssistantKnowledge\x12+.assistant_api.GetAssistantKnowledgeRequest\x1a,.assistant_api.GetAssistantKnowledgeResponse\x12{\n\x18GetAllAssistantKnowledge\x12..assistant_api.GetAllAssistantKnowledgeRequest\x1a/.assistant_api.GetAllAssistantKnowledgeResponse\x12x\n\x18\x44\x65leteAssistantKnowledge\x12..assistant_api.DeleteAssistantKnowledgeRequest\x1a,.assistant_api.GetAssistantKnowledgeResponse\x12x\n\x18UpdateAssistantKnowledge\x12..assistant_api.UpdateAssistantKnowledgeRequest\x1a,.assistant_api.GetAssistantKnowledgeResponseB\x1cZ\x1agithub.com/rapidaai/protosb\x06proto3')
36
+
37
+ _globals = globals()
38
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
39
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'assistant_api_pb2', _globals)
40
+ if not _descriptor._USE_C_DESCRIPTORS:
41
+ _globals['DESCRIPTOR']._loaded_options = None
42
+ _globals['DESCRIPTOR']._serialized_options = b'Z\032github.com/rapidaai/protos'
43
+ _globals['_ASSISTANT'].fields_by_name['id']._loaded_options = None
44
+ _globals['_ASSISTANT'].fields_by_name['id']._serialized_options = b'0\001'
45
+ _globals['_ASSISTANT'].fields_by_name['sourceIdentifier']._loaded_options = None
46
+ _globals['_ASSISTANT'].fields_by_name['sourceIdentifier']._serialized_options = b'0\001'
47
+ _globals['_ASSISTANT'].fields_by_name['projectId']._loaded_options = None
48
+ _globals['_ASSISTANT'].fields_by_name['projectId']._serialized_options = b'0\001'
49
+ _globals['_ASSISTANT'].fields_by_name['organizationId']._loaded_options = None
50
+ _globals['_ASSISTANT'].fields_by_name['organizationId']._serialized_options = b'0\001'
51
+ _globals['_ASSISTANT'].fields_by_name['assistantProviderId']._loaded_options = None
52
+ _globals['_ASSISTANT'].fields_by_name['assistantProviderId']._serialized_options = b'0\001'
53
+ _globals['_ASSISTANT'].fields_by_name['createdBy']._loaded_options = None
54
+ _globals['_ASSISTANT'].fields_by_name['createdBy']._serialized_options = b'0\001'
55
+ _globals['_ASSISTANT'].fields_by_name['updatedBy']._loaded_options = None
56
+ _globals['_ASSISTANT'].fields_by_name['updatedBy']._serialized_options = b'0\001'
57
+ _globals['_CREATEASSISTANTREQUEST'].fields_by_name['sourceIdentifier']._loaded_options = None
58
+ _globals['_CREATEASSISTANTREQUEST'].fields_by_name['sourceIdentifier']._serialized_options = b'0\001'
59
+ _globals['_CREATEASSISTANTTAGREQUEST'].fields_by_name['assistantId']._loaded_options = None
60
+ _globals['_CREATEASSISTANTTAGREQUEST'].fields_by_name['assistantId']._serialized_options = b'0\001'
61
+ _globals['_DELETEASSISTANTREQUEST'].fields_by_name['id']._loaded_options = None
62
+ _globals['_DELETEASSISTANTREQUEST'].fields_by_name['id']._serialized_options = b'0\001'
63
+ _globals['_GETALLASSISTANTMESSAGEREQUEST'].fields_by_name['assistantId']._loaded_options = None
64
+ _globals['_GETALLASSISTANTMESSAGEREQUEST'].fields_by_name['assistantId']._serialized_options = b'0\001'
65
+ _globals['_UPDATEASSISTANTDETAILREQUEST'].fields_by_name['assistantId']._loaded_options = None
66
+ _globals['_UPDATEASSISTANTDETAILREQUEST'].fields_by_name['assistantId']._serialized_options = b'0\001'
67
+ _globals['_GETASSISTANTCONVERSATIONREQUEST'].fields_by_name['assistantId']._loaded_options = None
68
+ _globals['_GETASSISTANTCONVERSATIONREQUEST'].fields_by_name['assistantId']._serialized_options = b'0\001'
69
+ _globals['_GETASSISTANTCONVERSATIONREQUEST'].fields_by_name['id']._loaded_options = None
70
+ _globals['_GETASSISTANTCONVERSATIONREQUEST'].fields_by_name['id']._serialized_options = b'0\001'
71
+ _globals['_ASSISTANT']._serialized_start=240
72
+ _globals['_ASSISTANT']._serialized_end=1466
73
+ _globals['_CREATEASSISTANTREQUEST']._serialized_start=1469
74
+ _globals['_CREATEASSISTANTREQUEST']._serialized_end=1844
75
+ _globals['_CREATEASSISTANTTAGREQUEST']._serialized_start=1846
76
+ _globals['_CREATEASSISTANTTAGREQUEST']._serialized_end=1912
77
+ _globals['_GETASSISTANTREQUEST']._serialized_start=1914
78
+ _globals['_GETASSISTANTREQUEST']._serialized_end=1986
79
+ _globals['_DELETEASSISTANTREQUEST']._serialized_start=1988
80
+ _globals['_DELETEASSISTANTREQUEST']._serialized_end=2028
81
+ _globals['_GETASSISTANTRESPONSE']._serialized_start=2030
82
+ _globals['_GETASSISTANTRESPONSE']._serialized_end=2146
83
+ _globals['_GETALLASSISTANTREQUEST']._serialized_start=2148
84
+ _globals['_GETALLASSISTANTREQUEST']._serialized_end=2231
85
+ _globals['_GETALLASSISTANTTELEMETRYREQUEST']._serialized_start=2234
86
+ _globals['_GETALLASSISTANTTELEMETRYREQUEST']._serialized_end=2367
87
+ _globals['_GETALLASSISTANTTELEMETRYRESPONSE']._serialized_start=2370
88
+ _globals['_GETALLASSISTANTTELEMETRYRESPONSE']._serialized_end=2515
89
+ _globals['_GETALLASSISTANTRESPONSE']._serialized_start=2518
90
+ _globals['_GETALLASSISTANTRESPONSE']._serialized_end=2668
91
+ _globals['_GETALLASSISTANTMESSAGEREQUEST']._serialized_start=2671
92
+ _globals['_GETALLASSISTANTMESSAGEREQUEST']._serialized_end=2847
93
+ _globals['_GETALLASSISTANTMESSAGERESPONSE']._serialized_start=2850
94
+ _globals['_GETALLASSISTANTMESSAGERESPONSE']._serialized_end=3012
95
+ _globals['_GETALLMESSAGEREQUEST']._serialized_start=3015
96
+ _globals['_GETALLMESSAGEREQUEST']._serialized_end=3157
97
+ _globals['_GETALLMESSAGERESPONSE']._serialized_start=3160
98
+ _globals['_GETALLMESSAGERESPONSE']._serialized_end=3313
99
+ _globals['_UPDATEASSISTANTDETAILREQUEST']._serialized_start=3315
100
+ _globals['_UPDATEASSISTANTDETAILREQUEST']._serialized_end=3405
101
+ _globals['_GETASSISTANTCONVERSATIONREQUEST']._serialized_start=3407
102
+ _globals['_GETASSISTANTCONVERSATIONREQUEST']._serialized_end=3516
103
+ _globals['_GETASSISTANTCONVERSATIONRESPONSE']._serialized_start=3518
104
+ _globals['_GETASSISTANTCONVERSATIONRESPONSE']._serialized_end=3644
105
+ _globals['_ASSISTANTSERVICE']._serialized_start=3647
106
+ _globals['_ASSISTANTSERVICE']._serialized_end=8051
107
+ # @@protoc_insertion_point(module_scope)