Skip to content

Commit cb89e93

Browse files
committed
feat: added missing import
1 parent 3c4aaf8 commit cb89e93

File tree

3 files changed

+12
-21
lines changed

3 files changed

+12
-21
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rapida-python"
7-
version = "0.1.21"
7+
version = "0.1.22"
88
description = "RapidaAI SDK to integrate rapida.ai APIs"
99
readme = "README.md"
1010
authors = [{name = "RapidaAI", email = "code@rapida.ai"}]

rapida/__init__.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,6 @@
155155
GetAllAssistantAnalysisRequest,
156156
GetAllAssistantAnalysisResponse,
157157
)
158-
from rapida.clients.protos.sendgrid_api_pb2 import (
159-
Contact,
160-
WelcomeEmailRequest,
161-
WelcomeEmailResponse,
162-
ResetPasswordEmailRequest,
163-
ResetPasswordEmailResponse,
164-
InviteMemeberEmailRequest,
165-
InviteMemeberEmailResponse,
166-
)
167158
from rapida.clients.protos.invoker_api_pb2 import (
168159
EndpointDefinition,
169160
InvokeRequest,
@@ -518,13 +509,6 @@
518509
"GetAssistantAnalysisResponse",
519510
"GetAllAssistantAnalysisRequest",
520511
"GetAllAssistantAnalysisResponse",
521-
"Contact",
522-
"WelcomeEmailRequest",
523-
"WelcomeEmailResponse",
524-
"ResetPasswordEmailRequest",
525-
"ResetPasswordEmailResponse",
526-
"InviteMemeberEmailRequest",
527-
"InviteMemeberEmailResponse",
528512
"EndpointDefinition",
529513
"InvokeRequest",
530514
"InvokeResponse",
@@ -623,12 +607,8 @@
623607
"GetAssistantWebhookLogRequest",
624608
"GetAssistantWebhookLogResponse",
625609
"GetAllAssistantWebhookLogResponse",
626-
"KnowledgeConnectRequest",
627-
"KnowledgeConnectResponse",
628610
"GeneralConnectRequest",
629611
"GeneralConnectResponse",
630-
"ActionConnectRequest",
631-
"ActionConnectResponse",
632612
"GetConnectorFilesRequest",
633613
"GetConnectorFilesResponse",
634614
"EndpointAttribute",

tests/test_imports.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import pytest
2+
from rapida import *
3+
4+
def test_import_rapida():
5+
# Try importing key symbols that should be available
6+
from rapida import AgentKitStub, AgentKit, AgentKitServicer, add_AgentKitServicer_to_server
7+
# Add more imports as needed for your public API
8+
9+
def test_import_everything_from_rapida():
10+
# If this test runs, all public exports are importable
11+
assert True

0 commit comments

Comments
 (0)