diff --git a/src/backend/base/langflow/api/build.py b/src/backend/base/langflow/api/build.py index 1f84a303e162..0e7463392aa6 100644 --- a/src/backend/base/langflow/api/build.py +++ b/src/backend/base/langflow/api/build.py @@ -69,9 +69,26 @@ async def start_flow_build( current_user: CurrentActiveUser, queue_service: JobQueueService, flow_name: str | None = None, + source_flow_id: uuid.UUID | None = None, ) -> str: """Start the flow build process by setting up the queue and starting the build task. + Args: + flow_id: The flow ID used for tracking, sessions, and messages. + background_tasks: FastAPI background tasks handler. + inputs: Optional input values for the flow. + data: Optional flow data request. + files: Optional list of file paths. + stop_component_id: Optional component ID to stop the build at. + start_component_id: Optional component ID to start the build from. + log_builds: Whether to log builds. + current_user: The current authenticated user. + queue_service: The job queue service. + flow_name: Optional flow name override. + source_flow_id: If provided, the actual flow ID to load from DB. + Used by public flows where flow_id is a virtual UUID for session isolation + but the flow data must be loaded from the original flow in the database. + Returns: the job_id. """ @@ -90,6 +107,7 @@ async def start_flow_build( log_builds=log_builds, current_user=current_user, flow_name=flow_name, + source_flow_id=source_flow_id, ) queue_service.start_job(job_id, task_coro) except Exception as e: @@ -209,6 +227,7 @@ async def generate_flow_events( log_builds: bool, current_user: CurrentActiveUser, flow_name: str | None = None, + source_flow_id: uuid.UUID | None = None, ) -> None: """Generate events for flow building process. @@ -283,13 +302,19 @@ async def create_graph(fresh_session, flow_id_str: str, flow_name: str | None) - effective_session_id = flow_id_str if not data: - return await build_graph_from_db( - flow_id=flow_id, + # For public flows, source_flow_id is the real DB ID, flow_id is virtual. + # Load from DB using the real ID, then override graph.flow_id with virtual. + db_flow_id = source_flow_id if source_flow_id is not None else flow_id + graph = await build_graph_from_db( + flow_id=db_flow_id, session=fresh_session, chat_service=chat_service, user_id=str(current_user.id), session_id=effective_session_id, ) + if source_flow_id is not None: + graph.flow_id = str(flow_id) + return graph if not flow_name: result = await fresh_session.exec(select(Flow.name).where(Flow.id == flow_id)) diff --git a/src/backend/base/langflow/api/v1/chat.py b/src/backend/base/langflow/api/v1/chat.py index 427577d7432b..7c3f848445ea 100644 --- a/src/backend/base/langflow/api/v1/chat.py +++ b/src/backend/base/langflow/api/v1/chat.py @@ -629,9 +629,11 @@ async def build_public_tmp( client_id = request.cookies.get("client_id") owner_user, new_flow_id = await verify_public_flow_and_get_user(flow_id=flow_id, client_id=client_id) - # Start the flow build using the new flow ID + # flow_id=new_flow_id for tracking/sessions/messages (virtual, per-user isolation). + # source_flow_id=flow_id to load the actual flow data from the database. job_id = await start_flow_build( flow_id=new_flow_id, + source_flow_id=flow_id, background_tasks=background_tasks, inputs=inputs, data=data, @@ -655,3 +657,54 @@ async def build_public_tmp( queue_service=queue_service, event_delivery=event_delivery, ) + + +@router.get("/build_public_tmp/{job_id}/events") +async def get_build_events_public( + job_id: str, + queue_service: Annotated[JobQueueService, Depends(get_queue_service)], + *, + event_delivery: EventDeliveryType = EventDeliveryType.STREAMING, +): + """Get events for a public flow build job. + + This endpoint does not require authentication, matching the public build endpoint. + It is used by the shareable playground to consume build events. + """ + return await get_flow_events_response( + job_id=job_id, + queue_service=queue_service, + event_delivery=event_delivery, + ) + + +@router.post( + "/build_public_tmp/{job_id}/cancel", + response_model=CancelFlowResponse, +) +async def cancel_build_public( + job_id: str, + queue_service: Annotated[JobQueueService, Depends(get_queue_service)], +): + """Cancel a public flow build job. + + This endpoint does not require authentication, matching the public build endpoint. + It is used by the shareable playground to cancel builds. + """ + try: + cancellation_success = await cancel_flow_build(job_id=job_id, queue_service=queue_service) + + if cancellation_success: + return CancelFlowResponse(success=True, message="Flow build cancelled successfully") + return CancelFlowResponse(success=False, message="Failed to cancel flow build") + except asyncio.CancelledError: + await logger.aerror(f"Failed to cancel public flow build for job_id {job_id} (CancelledError caught)") + return CancelFlowResponse(success=False, message="Failed to cancel flow build") + except ValueError as exc: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail=str(exc)) from exc + except JobQueueNotFoundError as exc: + await logger.aerror(f"Public job not found: {job_id}. Error: {exc!s}") + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail=f"Job not found: {exc!s}") from exc + except Exception as exc: + await logger.aexception(f"Error cancelling public flow build for job_id {job_id}: {exc}") + raise HTTPException(status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, detail=str(exc)) from exc diff --git a/src/backend/tests/unit/test_chat_endpoint.py b/src/backend/tests/unit/test_chat_endpoint.py index 0021e06eac45..bd3c29b4f6f0 100644 --- a/src/backend/tests/unit/test_chat_endpoint.py +++ b/src/backend/tests/unit/test_chat_endpoint.py @@ -432,3 +432,127 @@ async def mock_cancel_flow_build_with_cancelled_error(*_args, **_kwargs): finally: # Restore the original function to avoid affecting other tests monkeypatch.setattr(langflow.api.v1.chat, "cancel_flow_build", original_cancel_flow_build) + + +@pytest.mark.benchmark +async def test_should_have_public_events_endpoint_accessible_without_auth(client, logged_in_headers): # noqa: ARG001 + """Test that public events endpoint exists and is accessible without authentication. + + Bug: After sending a message in the Shareable Playground, the chat input resets + but no response is rendered. The root cause is that the events endpoint + (/build/{job_id}/events) requires authentication, which the unauthenticated + shareable playground user does not have. + + This test proves: + 1. The PUBLIC events endpoint exists and responds without auth (404 = route exists, job not found) + 2. The AUTHENTICATED events endpoint rejects unauthenticated requests (403) + """ + fake_job_id = str(uuid.uuid4()) + + # Assert 1 — the PUBLIC events endpoint is accessible without auth + # Returns 404 "Job not found" (route exists, but job doesn't) — NOT 401/403 + events_response = await client.get( + f"api/v1/build_public_tmp/{fake_job_id}/events?event_delivery=polling", + headers={"Accept": "application/x-ndjson"}, + ) + assert events_response.status_code == codes.NOT_FOUND + + # The key proof: the public endpoint responded with 404 (route exists, job not found) + # rather than 401/403 (authentication required). Before the fix, this endpoint + # didn't exist at all and would return 404 for the route, not the job. + assert "Job not found" in events_response.json()["detail"] + + +@pytest.mark.benchmark +async def test_should_have_public_cancel_endpoint_accessible_without_auth(client, logged_in_headers): # noqa: ARG001 + """Test that public cancel endpoint exists and is accessible without authentication. + + Same root cause as the events bug: the cancel endpoint requires auth + but the shareable playground user is unauthenticated. + """ + fake_job_id = str(uuid.uuid4()) + + # The PUBLIC cancel endpoint is accessible without auth + # Returns 404 "Job not found" (route exists, but job doesn't) — NOT 401/403 + cancel_response = await client.post( + f"api/v1/build_public_tmp/{fake_job_id}/cancel", + headers={"Content-Type": "application/json"}, + ) + assert cancel_response.status_code == codes.NOT_FOUND + assert "Job not found" in cancel_response.json()["detail"] + + +@pytest.mark.benchmark +async def test_build_public_tmp_ignores_data_parameter(client, json_memory_chatbot_no_llm, logged_in_headers): + """Test that build_public_tmp endpoint silently ignores data parameter for security. + + Security Test: Verifies that when a user attempts to provide custom flow data + to the public flow endpoint, FastAPI silently ignores the extra parameter and + the endpoint functions normally using the stored flow data from the database. + """ + # Create a flow + flow_id = await create_flow(client, json_memory_chatbot_no_llm, logged_in_headers) + + # Make the flow public + response = await client.patch( + f"api/v1/flows/{flow_id}", + json={"access_type": "PUBLIC"}, + headers=logged_in_headers, + ) + assert response.status_code == codes.OK + + # Create malicious flow data with different structure + malicious_data = {"nodes": [{"id": "malicious", "data": {"type": "CustomComponent"}}], "edges": []} + + # Set a client_id cookie + client.cookies.set("client_id", "test-security-client-123") + + # Attempt to build with malicious data - FastAPI will silently ignore it + response = await client.post( + f"api/v1/build_public_tmp/{flow_id}/flow", + json={ + "inputs": {"session": "test_session"}, + "data": malicious_data, # This will be silently ignored by FastAPI + }, + headers={"Content-Type": "application/json"}, + ) + + # Verify the request succeeded - the data parameter is simply ignored + assert response.status_code == codes.OK + response_data = response.json() + assert "job_id" in response_data + + +@pytest.mark.benchmark +async def test_build_public_tmp_without_data_parameter(client, json_memory_chatbot_no_llm, logged_in_headers): + """Test that build_public_tmp endpoint works without data parameter. + + Security Test: Verifies that when no data parameter is provided, the endpoint + works normally and returns a job_id. This proves the data parameter is optional + and the stored flow definition is always used. + """ + # Create a flow + flow_id = await create_flow(client, json_memory_chatbot_no_llm, logged_in_headers) + + # Make the flow public + response = await client.patch( + f"api/v1/flows/{flow_id}", + json={"access_type": "PUBLIC"}, + headers=logged_in_headers, + ) + assert response.status_code == codes.OK + + # Set a client_id cookie + client.cookies.set("client_id", "test-no-data-client") + + # Build without providing data parameter + response = await client.post( + f"api/v1/build_public_tmp/{flow_id}/flow", + json={"inputs": {"session": "test_session"}}, + headers={"Content-Type": "application/json"}, + ) + + # Verify the request succeeded + assert response.status_code == codes.OK + response_data = response.json() + assert "job_id" in response_data diff --git a/src/frontend/src/components/core/playgroundComponent/chat-view/utils/message-event-handler.ts b/src/frontend/src/components/core/playgroundComponent/chat-view/utils/message-event-handler.ts index 9234bc8cf234..f416fe3e312e 100644 --- a/src/frontend/src/components/core/playgroundComponent/chat-view/utils/message-event-handler.ts +++ b/src/frontend/src/components/core/playgroundComponent/chat-view/utils/message-event-handler.ts @@ -1,9 +1,11 @@ +import { useMessagesStore } from "@/stores/messagesStore"; import type { Message } from "@/types/messages"; import { removeMessages, updateMessage } from "./message-utils"; /** * Handles message-related events from the build process. - * This keeps all chat message logic within the chat-view scope. + * Updates both React Query cache (used by the internal playground) + * and useMessagesStore (used by the shareable playground / IOModal). */ export const handleMessageEvent = ( eventType: string, @@ -11,37 +13,48 @@ export const handleMessageEvent = ( ): boolean => { switch (eventType) { case "add_message": { - // Add/update message in React Query cache (replaces placeholder if exists) + // Update React Query cache (internal playground) updateMessage(data as Message); + // Update Zustand store (shareable playground / IOModal) + useMessagesStore.getState().addMessage(data as Message); return true; } case "token": { - // Update message text in React Query cache for streaming - updateMessage({ - id: data.id, - flow_id: data.flow_id || "", - session_id: data.session_id || "", - text: data.chunk || "", - sender: data.sender || "Machine", - sender_name: data.sender_name || "AI", - timestamp: data.timestamp || new Date().toISOString(), - files: data.files || [], - edit: data.edit || false, - background_color: data.background_color || "", - text_color: data.text_color || "", - properties: { ...data.properties, state: "partial" }, - } as Message); + const d = data as Record; + const tokenMessage = { + id: d.id, + flow_id: d.flow_id || "", + session_id: d.session_id || "", + text: d.chunk || "", + sender: d.sender || "Machine", + sender_name: d.sender_name || "AI", + timestamp: d.timestamp || new Date().toISOString(), + files: d.files || [], + edit: d.edit || false, + background_color: d.background_color || "", + text_color: d.text_color || "", + properties: { ...(d.properties as object), state: "partial" }, + } as Message; + // Update React Query cache (internal playground) + updateMessage(tokenMessage); + // Update Zustand store (shareable playground / IOModal) + useMessagesStore.getState().addMessage(tokenMessage); return true; } case "remove_message": { - // Remove message from React Query cache - removeMessages([data.id], data.session_id || "", data.flow_id || ""); + const rm = data as Record; + // Remove from React Query cache + removeMessages([rm.id], rm.session_id || "", rm.flow_id || ""); + // Remove from Zustand store + useMessagesStore.getState().removeMessage(data as Message); return true; } case "error": { - if (data?.category === "error") { - // Add error message to React Query cache + if ((data as Record)?.category === "error") { + // Update React Query cache updateMessage(data as Message); + // Update Zustand store + useMessagesStore.getState().addMessage(data as Message); } return true; } diff --git a/src/frontend/src/customization/utils/custom-buildUtils.ts b/src/frontend/src/customization/utils/custom-buildUtils.ts index 059b860424c9..29773975bb50 100644 --- a/src/frontend/src/customization/utils/custom-buildUtils.ts +++ b/src/frontend/src/customization/utils/custom-buildUtils.ts @@ -4,10 +4,13 @@ export const customBuildUrl = (flowId: string, playgroundPage?: boolean) => { return `${getBaseUrl()}${playgroundPage ? "build_public_tmp" : "build"}/${flowId}/flow`; }; -export const customCancelBuildUrl = (jobId: string) => { - return `${getBaseUrl()}build/${jobId}/cancel`; +export const customCancelBuildUrl = ( + jobId: string, + playgroundPage?: boolean, +) => { + return `${getBaseUrl()}${playgroundPage ? "build_public_tmp" : "build"}/${jobId}/cancel`; }; -export const customEventsUrl = (jobId: string) => { - return `${getBaseUrl()}build/${jobId}/events`; +export const customEventsUrl = (jobId: string, playgroundPage?: boolean) => { + return `${getBaseUrl()}${playgroundPage ? "build_public_tmp" : "build"}/${jobId}/events`; }; diff --git a/src/frontend/src/utils/buildUtils.ts b/src/frontend/src/utils/buildUtils.ts index 744d2c408561..12cd2b41cae5 100644 --- a/src/frontend/src/utils/buildUtils.ts +++ b/src/frontend/src/utils/buildUtils.ts @@ -344,7 +344,7 @@ export async function buildFlowVertices({ const { job_id } = await buildResponse.json(); - const cancelBuildUrl = customCancelBuildUrl(job_id); + const cancelBuildUrl = customCancelBuildUrl(job_id, playgroundPage); // Get the buildController from flowStore const buildController = new AbortController(); @@ -363,7 +363,7 @@ export async function buildFlowVertices({ }); useFlowStore.getState().setBuildController(buildController); // Then stream the events - const eventsUrl = customEventsUrl(job_id); + const eventsUrl = customEventsUrl(job_id, playgroundPage); const buildResults: Array = []; if (eventDelivery === EventDeliveryType.STREAMING) { diff --git a/src/lfx/src/lfx/_assets/component_index.json b/src/lfx/src/lfx/_assets/component_index.json index 905522e9a146..20416015a103 100644 --- a/src/lfx/src/lfx/_assets/component_index.json +++ b/src/lfx/src/lfx/_assets/component_index.json @@ -73359,7 +73359,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "lfx", @@ -73507,7 +73507,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "googleapiclient", @@ -73668,7 +73668,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "langchain_core", @@ -73797,7 +73797,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "langchain_google_community", @@ -73926,7 +73926,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "googleapiclient", @@ -74216,7 +74216,7 @@ }, { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "langchain_google_genai", @@ -74576,7 +74576,7 @@ "dependencies": [ { "name": "google", - "version": "2.30.0" + "version": "2.8.0" }, { "name": "google_auth_oauthlib", @@ -113549,7 +113549,7 @@ }, { "name": "google", - "version": "2.30.0" + "version": "2.8.0" } ], "total_dependencies": 3 @@ -113933,7 +113933,7 @@ }, { "name": "google", - "version": "2.30.0" + "version": "2.8.0" } ], "total_dependencies": 3 @@ -118191,6 +118191,6 @@ "num_components": 359, "num_modules": 97 }, - "sha256": "8fc3c7cb1bdf0873d2374de24e6e6e9a0bed598adbd0ef95964db455b2c937b6", - "version": "0.3.3" + "sha256": "c794ac17e44941714c12c00a023c7384137ea10c84b679f48949dba1005ecd13", + "version": "0.3.4" } \ No newline at end of file diff --git a/src/lfx/src/lfx/_assets/stable_hash_history.json b/src/lfx/src/lfx/_assets/stable_hash_history.json index a90f3999ceb2..5c1e136141eb 100644 --- a/src/lfx/src/lfx/_assets/stable_hash_history.json +++ b/src/lfx/src/lfx/_assets/stable_hash_history.json @@ -4,7 +4,8 @@ "0.3.0": "2bd7a064d724", "0.3.1": "2bd7a064d724", "0.3.2": "2bd7a064d724", - "0.3.3": "3e55e36d0692" + "0.3.3": "3e55e36d0692", + "0.3.4": "3e55e36d0692" } }, "AddContentToPage": { @@ -12,7 +13,8 @@ "0.3.0": "ffcd44201c09", "0.3.1": "ffcd44201c09", "0.3.2": "ffcd44201c09", - "0.3.3": "ffcd44201c09" + "0.3.3": "ffcd44201c09", + "0.3.4": "ffcd44201c09" } }, "NotionPageCreator": { @@ -20,7 +22,8 @@ "0.3.0": "640438ed3d7b", "0.3.1": "640438ed3d7b", "0.3.2": "640438ed3d7b", - "0.3.3": "640438ed3d7b" + "0.3.3": "640438ed3d7b", + "0.3.4": "640438ed3d7b" } }, "NotionDatabaseProperties": { @@ -28,7 +31,8 @@ "0.3.0": "adce99660f9e", "0.3.1": "adce99660f9e", "0.3.2": "adce99660f9e", - "0.3.3": "adce99660f9e" + "0.3.3": "adce99660f9e", + "0.3.4": "adce99660f9e" } }, "NotionListPages": { @@ -36,7 +40,8 @@ "0.3.0": "373f9ad32937", "0.3.1": "373f9ad32937", "0.3.2": "373f9ad32937", - "0.3.3": "373f9ad32937" + "0.3.3": "373f9ad32937", + "0.3.4": "373f9ad32937" } }, "NotionUserList": { @@ -44,7 +49,8 @@ "0.3.0": "8966397da1d5", "0.3.1": "8966397da1d5", "0.3.2": "8966397da1d5", - "0.3.3": "8966397da1d5" + "0.3.3": "8966397da1d5", + "0.3.4": "8966397da1d5" } }, "NotionPageContent": { @@ -52,7 +58,8 @@ "0.3.0": "ba15d6a01d04", "0.3.1": "ba15d6a01d04", "0.3.2": "ba15d6a01d04", - "0.3.3": "ba15d6a01d04" + "0.3.3": "ba15d6a01d04", + "0.3.4": "ba15d6a01d04" } }, "NotionSearch": { @@ -60,7 +67,8 @@ "0.3.0": "793b8818a3b4", "0.3.1": "793b8818a3b4", "0.3.2": "793b8818a3b4", - "0.3.3": "793b8818a3b4" + "0.3.3": "793b8818a3b4", + "0.3.4": "793b8818a3b4" } }, "NotionPageUpdate": { @@ -68,7 +76,8 @@ "0.3.0": "32ccdf34df73", "0.3.1": "32ccdf34df73", "0.3.2": "32ccdf34df73", - "0.3.3": "32ccdf34df73" + "0.3.3": "32ccdf34df73", + "0.3.4": "32ccdf34df73" } }, "AgentQL": { @@ -76,7 +85,8 @@ "0.3.0": "37de3210aed9", "0.3.1": "37de3210aed9", "0.3.2": "37de3210aed9", - "0.3.3": "37de3210aed9" + "0.3.3": "37de3210aed9", + "0.3.4": "37de3210aed9" } }, "AIMLModel": { @@ -84,7 +94,8 @@ "0.3.0": "db72277a0d5a", "0.3.1": "db72277a0d5a", "0.3.2": "db72277a0d5a", - "0.3.3": "db72277a0d5a" + "0.3.3": "db72277a0d5a", + "0.3.4": "db72277a0d5a" } }, "AIMLEmbeddings": { @@ -92,7 +103,8 @@ "0.3.0": "dae370391ba3", "0.3.1": "dae370391ba3", "0.3.2": "dae370391ba3", - "0.3.3": "dae370391ba3" + "0.3.3": "dae370391ba3", + "0.3.4": "dae370391ba3" } }, "ALTK Agent": { @@ -100,7 +112,8 @@ "0.3.0": "d1caf0d1db88", "0.3.1": "d1caf0d1db88", "0.3.2": "d1caf0d1db88", - "0.3.3": "d1caf0d1db88" + "0.3.3": "d1caf0d1db88", + "0.3.4": "d1caf0d1db88" } }, "AmazonBedrockConverseModel": { @@ -108,7 +121,8 @@ "0.3.0": "54c335f8699f", "0.3.1": "54c335f8699f", "0.3.2": "54c335f8699f", - "0.3.3": "54c335f8699f" + "0.3.3": "54c335f8699f", + "0.3.4": "54c335f8699f" } }, "AmazonBedrockEmbeddings": { @@ -116,7 +130,8 @@ "0.3.0": "70d039ff79f0", "0.3.1": "70d039ff79f0", "0.3.2": "70d039ff79f0", - "0.3.3": "70d039ff79f0" + "0.3.3": "70d039ff79f0", + "0.3.4": "70d039ff79f0" } }, "AmazonBedrockModel": { @@ -124,7 +139,8 @@ "0.3.0": "922093a831b6", "0.3.1": "922093a831b6", "0.3.2": "922093a831b6", - "0.3.3": "922093a831b6" + "0.3.3": "922093a831b6", + "0.3.4": "922093a831b6" } }, "s3bucketuploader": { @@ -132,7 +148,8 @@ "0.3.0": "6e4ba2dafc3c", "0.3.1": "6e4ba2dafc3c", "0.3.2": "6e4ba2dafc3c", - "0.3.3": "6e4ba2dafc3c" + "0.3.3": "6e4ba2dafc3c", + "0.3.4": "6e4ba2dafc3c" } }, "AnthropicModel": { @@ -140,7 +157,8 @@ "0.3.0": "7c894c5a66ba", "0.3.1": "7c894c5a66ba", "0.3.2": "7c894c5a66ba", - "0.3.3": "7c894c5a66ba" + "0.3.3": "7c894c5a66ba", + "0.3.4": "7c894c5a66ba" } }, "ApifyActors": { @@ -148,7 +166,8 @@ "0.3.0": "e84290d462c2", "0.3.1": "e84290d462c2", "0.3.2": "e84290d462c2", - "0.3.3": "e84290d462c2" + "0.3.3": "e84290d462c2", + "0.3.4": "e84290d462c2" } }, "ArXivComponent": { @@ -156,7 +175,8 @@ "0.3.0": "219239ee2b48", "0.3.1": "219239ee2b48", "0.3.2": "219239ee2b48", - "0.3.3": "219239ee2b48" + "0.3.3": "219239ee2b48", + "0.3.4": "219239ee2b48" } }, "AssemblyAIGetSubtitles": { @@ -164,7 +184,8 @@ "0.3.0": "533d1fcf7c7a", "0.3.1": "533d1fcf7c7a", "0.3.2": "533d1fcf7c7a", - "0.3.3": "533d1fcf7c7a" + "0.3.3": "533d1fcf7c7a", + "0.3.4": "533d1fcf7c7a" } }, "AssemblyAILeMUR": { @@ -172,7 +193,8 @@ "0.3.0": "8c96738ab967", "0.3.1": "8c96738ab967", "0.3.2": "8c96738ab967", - "0.3.3": "8c96738ab967" + "0.3.3": "8c96738ab967", + "0.3.4": "8c96738ab967" } }, "AssemblyAIListTranscripts": { @@ -180,7 +202,8 @@ "0.3.0": "267dcda48ad4", "0.3.1": "267dcda48ad4", "0.3.2": "267dcda48ad4", - "0.3.3": "267dcda48ad4" + "0.3.3": "267dcda48ad4", + "0.3.4": "267dcda48ad4" } }, "AssemblyAITranscriptionJobPoller": { @@ -188,7 +211,8 @@ "0.3.0": "935c9296b149", "0.3.1": "935c9296b149", "0.3.2": "935c9296b149", - "0.3.3": "935c9296b149" + "0.3.3": "935c9296b149", + "0.3.4": "935c9296b149" } }, "AssemblyAITranscriptionJobCreator": { @@ -196,7 +220,8 @@ "0.3.0": "7ff7b3f90298", "0.3.1": "7ff7b3f90298", "0.3.2": "7ff7b3f90298", - "0.3.3": "7ff7b3f90298" + "0.3.3": "7ff7b3f90298", + "0.3.4": "7ff7b3f90298" } }, "AzureOpenAIModel": { @@ -204,7 +229,8 @@ "0.3.0": "2ba26202203e", "0.3.1": "2ba26202203e", "0.3.2": "2ba26202203e", - "0.3.3": "2ba26202203e" + "0.3.3": "2ba26202203e", + "0.3.4": "2ba26202203e" } }, "AzureOpenAIEmbeddings": { @@ -212,7 +238,8 @@ "0.3.0": "6b54f3243a6a", "0.3.1": "6b54f3243a6a", "0.3.2": "6b54f3243a6a", - "0.3.3": "6b54f3243a6a" + "0.3.3": "6b54f3243a6a", + "0.3.4": "6b54f3243a6a" } }, "BaiduQianfanChatModel": { @@ -220,7 +247,8 @@ "0.3.0": "a5fdfdb5757f", "0.3.1": "a5fdfdb5757f", "0.3.2": "a5fdfdb5757f", - "0.3.3": "a5fdfdb5757f" + "0.3.3": "a5fdfdb5757f", + "0.3.4": "a5fdfdb5757f" } }, "BingSearchAPI": { @@ -228,7 +256,8 @@ "0.3.0": "84334607b325", "0.3.1": "84334607b325", "0.3.2": "84334607b325", - "0.3.3": "84334607b325" + "0.3.3": "84334607b325", + "0.3.4": "84334607b325" } }, "Cassandra": { @@ -236,7 +265,8 @@ "0.3.0": "833f277daab7", "0.3.1": "833f277daab7", "0.3.2": "833f277daab7", - "0.3.3": "833f277daab7" + "0.3.3": "833f277daab7", + "0.3.4": "833f277daab7" } }, "CassandraChatMemory": { @@ -244,7 +274,8 @@ "0.3.0": "f6497182984e", "0.3.1": "f6497182984e", "0.3.2": "f6497182984e", - "0.3.3": "f6497182984e" + "0.3.3": "f6497182984e", + "0.3.4": "f6497182984e" } }, "CassandraGraph": { @@ -252,7 +283,8 @@ "0.3.0": "26c63f80745e", "0.3.1": "26c63f80745e", "0.3.2": "26c63f80745e", - "0.3.3": "26c63f80745e" + "0.3.3": "26c63f80745e", + "0.3.4": "26c63f80745e" } }, "Chroma": { @@ -260,7 +292,8 @@ "0.3.0": "82d38624f19a", "0.3.1": "82d38624f19a", "0.3.2": "82d38624f19a", - "0.3.3": "82d38624f19a" + "0.3.3": "82d38624f19a", + "0.3.4": "82d38624f19a" } }, "CleanlabEvaluator": { @@ -268,7 +301,8 @@ "0.3.0": "06963c804ffe", "0.3.1": "06963c804ffe", "0.3.2": "06963c804ffe", - "0.3.3": "06963c804ffe" + "0.3.3": "06963c804ffe", + "0.3.4": "06963c804ffe" } }, "CleanlabRAGEvaluator": { @@ -276,7 +310,8 @@ "0.3.0": "f48b57ff7ca3", "0.3.1": "f48b57ff7ca3", "0.3.2": "f48b57ff7ca3", - "0.3.3": "f48b57ff7ca3" + "0.3.3": "f48b57ff7ca3", + "0.3.4": "f48b57ff7ca3" } }, "CleanlabRemediator": { @@ -284,7 +319,8 @@ "0.3.0": "a5b19d338991", "0.3.1": "a5b19d338991", "0.3.2": "a5b19d338991", - "0.3.3": "a5b19d338991" + "0.3.3": "a5b19d338991", + "0.3.4": "a5b19d338991" } }, "Clickhouse": { @@ -292,7 +328,8 @@ "0.3.0": "ab991e83da44", "0.3.1": "ab991e83da44", "0.3.2": "ab991e83da44", - "0.3.3": "ab991e83da44" + "0.3.3": "ab991e83da44", + "0.3.4": "ab991e83da44" } }, "CloudflareWorkersAIEmbeddings": { @@ -300,7 +337,8 @@ "0.3.0": "1ea6e4857c14", "0.3.1": "1ea6e4857c14", "0.3.2": "1ea6e4857c14", - "0.3.3": "1ea6e4857c14" + "0.3.3": "1ea6e4857c14", + "0.3.4": "1ea6e4857c14" } }, "CohereEmbeddings": { @@ -308,7 +346,8 @@ "0.3.0": "9c0f413a2c64", "0.3.1": "9c0f413a2c64", "0.3.2": "9c0f413a2c64", - "0.3.3": "9c0f413a2c64" + "0.3.3": "9c0f413a2c64", + "0.3.4": "9c0f413a2c64" } }, "CohereModel": { @@ -316,7 +355,8 @@ "0.3.0": "594852e1d706", "0.3.1": "594852e1d706", "0.3.2": "594852e1d706", - "0.3.3": "594852e1d706" + "0.3.3": "594852e1d706", + "0.3.4": "594852e1d706" } }, "CohereRerank": { @@ -324,7 +364,8 @@ "0.3.0": "a94a0d11eeac", "0.3.1": "a94a0d11eeac", "0.3.2": "a94a0d11eeac", - "0.3.3": "a94a0d11eeac" + "0.3.3": "a94a0d11eeac", + "0.3.4": "a94a0d11eeac" } }, "CometAPIModel": { @@ -332,7 +373,8 @@ "0.3.0": "4ec4a8852e9c", "0.3.1": "4ec4a8852e9c", "0.3.2": "4ec4a8852e9c", - "0.3.3": "4ec4a8852e9c" + "0.3.3": "4ec4a8852e9c", + "0.3.4": "4ec4a8852e9c" } }, "ComposioAgentQLAPIComponent": { @@ -340,7 +382,8 @@ "0.3.0": "cca708a10ab6", "0.3.1": "cca708a10ab6", "0.3.2": "cca708a10ab6", - "0.3.3": "cca708a10ab6" + "0.3.3": "cca708a10ab6", + "0.3.4": "cca708a10ab6" } }, "ComposioAgiledAPIComponent": { @@ -348,7 +391,8 @@ "0.3.0": "3294a951a1a8", "0.3.1": "3294a951a1a8", "0.3.2": "3294a951a1a8", - "0.3.3": "3294a951a1a8" + "0.3.3": "3294a951a1a8", + "0.3.4": "3294a951a1a8" } }, "ComposioAirtableAPIComponent": { @@ -356,7 +400,8 @@ "0.3.0": "e47ad011c33c", "0.3.1": "e47ad011c33c", "0.3.2": "e47ad011c33c", - "0.3.3": "e47ad011c33c" + "0.3.3": "e47ad011c33c", + "0.3.4": "e47ad011c33c" } }, "ComposioApolloAPIComponent": { @@ -364,7 +409,8 @@ "0.3.0": "3af16f5d6ceb", "0.3.1": "3af16f5d6ceb", "0.3.2": "3af16f5d6ceb", - "0.3.3": "3af16f5d6ceb" + "0.3.3": "3af16f5d6ceb", + "0.3.4": "3af16f5d6ceb" } }, "ComposioAsanaAPIComponent": { @@ -372,7 +418,8 @@ "0.3.0": "290d6d61d049", "0.3.1": "290d6d61d049", "0.3.2": "290d6d61d049", - "0.3.3": "290d6d61d049" + "0.3.3": "290d6d61d049", + "0.3.4": "290d6d61d049" } }, "ComposioAttioAPIComponent": { @@ -380,7 +427,8 @@ "0.3.0": "de43b3cf5671", "0.3.1": "de43b3cf5671", "0.3.2": "de43b3cf5671", - "0.3.3": "de43b3cf5671" + "0.3.3": "de43b3cf5671", + "0.3.4": "de43b3cf5671" } }, "ComposioBitbucketAPIComponent": { @@ -388,7 +436,8 @@ "0.3.0": "7528a8928646", "0.3.1": "7528a8928646", "0.3.2": "7528a8928646", - "0.3.3": "7528a8928646" + "0.3.3": "7528a8928646", + "0.3.4": "7528a8928646" } }, "ComposioBolnaAPIComponent": { @@ -396,7 +445,8 @@ "0.3.0": "dde7d2ee80a2", "0.3.1": "dde7d2ee80a2", "0.3.2": "dde7d2ee80a2", - "0.3.3": "dde7d2ee80a2" + "0.3.3": "dde7d2ee80a2", + "0.3.4": "dde7d2ee80a2" } }, "ComposioBrightdataAPIComponent": { @@ -404,7 +454,8 @@ "0.3.0": "49a04c5a23cb", "0.3.1": "49a04c5a23cb", "0.3.2": "49a04c5a23cb", - "0.3.3": "49a04c5a23cb" + "0.3.3": "49a04c5a23cb", + "0.3.4": "49a04c5a23cb" } }, "ComposioCalendlyAPIComponent": { @@ -412,7 +463,8 @@ "0.3.0": "4a282e413d55", "0.3.1": "4a282e413d55", "0.3.2": "4a282e413d55", - "0.3.3": "4a282e413d55" + "0.3.3": "4a282e413d55", + "0.3.4": "4a282e413d55" } }, "ComposioCanvaAPIComponent": { @@ -420,7 +472,8 @@ "0.3.0": "d149aa178e80", "0.3.1": "d149aa178e80", "0.3.2": "d149aa178e80", - "0.3.3": "d149aa178e80" + "0.3.3": "d149aa178e80", + "0.3.4": "d149aa178e80" } }, "ComposioCanvasAPIComponent": { @@ -428,7 +481,8 @@ "0.3.0": "6510d212a720", "0.3.1": "6510d212a720", "0.3.2": "6510d212a720", - "0.3.3": "6510d212a720" + "0.3.3": "6510d212a720", + "0.3.4": "6510d212a720" } }, "ComposioCodaAPIComponent": { @@ -436,7 +490,8 @@ "0.3.0": "f7693920313f", "0.3.1": "f7693920313f", "0.3.2": "f7693920313f", - "0.3.3": "f7693920313f" + "0.3.3": "f7693920313f", + "0.3.4": "f7693920313f" } }, "ComposioAPI": { @@ -444,7 +499,8 @@ "0.3.0": "764255821307", "0.3.1": "764255821307", "0.3.2": "764255821307", - "0.3.3": "764255821307" + "0.3.3": "764255821307", + "0.3.4": "764255821307" } }, "ComposioContentfulAPIComponent": { @@ -452,7 +508,8 @@ "0.3.0": "36befb1ec8fc", "0.3.1": "36befb1ec8fc", "0.3.2": "36befb1ec8fc", - "0.3.3": "36befb1ec8fc" + "0.3.3": "36befb1ec8fc", + "0.3.4": "36befb1ec8fc" } }, "ComposioDigicertAPIComponent": { @@ -460,7 +517,8 @@ "0.3.0": "0fcbc1b899f8", "0.3.1": "0fcbc1b899f8", "0.3.2": "0fcbc1b899f8", - "0.3.3": "0fcbc1b899f8" + "0.3.3": "0fcbc1b899f8", + "0.3.4": "0fcbc1b899f8" } }, "ComposioDiscordAPIComponent": { @@ -468,7 +526,8 @@ "0.3.0": "2ec988f25784", "0.3.1": "2ec988f25784", "0.3.2": "2ec988f25784", - "0.3.3": "2ec988f25784" + "0.3.3": "2ec988f25784", + "0.3.4": "2ec988f25784" } }, "ComposioDropboxAPIComponent": { @@ -476,7 +535,8 @@ "0.3.0": "d05825599def", "0.3.1": "d05825599def", "0.3.2": "d05825599def", - "0.3.3": "d05825599def" + "0.3.3": "d05825599def", + "0.3.4": "d05825599def" } }, "ComposioElevenLabsAPIComponent": { @@ -484,7 +544,8 @@ "0.3.0": "e0c91533558b", "0.3.1": "e0c91533558b", "0.3.2": "e0c91533558b", - "0.3.3": "e0c91533558b" + "0.3.3": "e0c91533558b", + "0.3.4": "e0c91533558b" } }, "ComposioExaAPIComponent": { @@ -492,7 +553,8 @@ "0.3.0": "3b5cecdefab8", "0.3.1": "3b5cecdefab8", "0.3.2": "3b5cecdefab8", - "0.3.3": "3b5cecdefab8" + "0.3.3": "3b5cecdefab8", + "0.3.4": "3b5cecdefab8" } }, "ComposioFigmaAPIComponent": { @@ -500,7 +562,8 @@ "0.3.0": "7443d213546b", "0.3.1": "7443d213546b", "0.3.2": "7443d213546b", - "0.3.3": "7443d213546b" + "0.3.3": "7443d213546b", + "0.3.4": "7443d213546b" } }, "ComposioFinageAPIComponent": { @@ -508,7 +571,8 @@ "0.3.0": "50a2bdee4cd1", "0.3.1": "50a2bdee4cd1", "0.3.2": "50a2bdee4cd1", - "0.3.3": "50a2bdee4cd1" + "0.3.3": "50a2bdee4cd1", + "0.3.4": "50a2bdee4cd1" } }, "ComposioFirecrawlAPIComponent": { @@ -516,7 +580,8 @@ "0.3.0": "2ab1c4b00071", "0.3.1": "2ab1c4b00071", "0.3.2": "2ab1c4b00071", - "0.3.3": "2ab1c4b00071" + "0.3.3": "2ab1c4b00071", + "0.3.4": "2ab1c4b00071" } }, "ComposioFirefliesAPIComponent": { @@ -524,7 +589,8 @@ "0.3.0": "233cd91dbdad", "0.3.1": "233cd91dbdad", "0.3.2": "233cd91dbdad", - "0.3.3": "233cd91dbdad" + "0.3.3": "233cd91dbdad", + "0.3.4": "233cd91dbdad" } }, "ComposioFixerAPIComponent": { @@ -532,7 +598,8 @@ "0.3.0": "9e4c00f9dcd8", "0.3.1": "9e4c00f9dcd8", "0.3.2": "9e4c00f9dcd8", - "0.3.3": "9e4c00f9dcd8" + "0.3.3": "9e4c00f9dcd8", + "0.3.4": "9e4c00f9dcd8" } }, "ComposioFlexisignAPIComponent": { @@ -540,7 +607,8 @@ "0.3.0": "c69bbee0005d", "0.3.1": "c69bbee0005d", "0.3.2": "c69bbee0005d", - "0.3.3": "c69bbee0005d" + "0.3.3": "c69bbee0005d", + "0.3.4": "c69bbee0005d" } }, "ComposioFreshdeskAPIComponent": { @@ -548,7 +616,8 @@ "0.3.0": "1dde03d615ca", "0.3.1": "1dde03d615ca", "0.3.2": "1dde03d615ca", - "0.3.3": "1dde03d615ca" + "0.3.3": "1dde03d615ca", + "0.3.4": "1dde03d615ca" } }, "ComposioGitHubAPIComponent": { @@ -556,7 +625,8 @@ "0.3.0": "ee201105d924", "0.3.1": "ee201105d924", "0.3.2": "ee201105d924", - "0.3.3": "ee201105d924" + "0.3.3": "ee201105d924", + "0.3.4": "ee201105d924" } }, "ComposioGmailAPIComponent": { @@ -564,7 +634,8 @@ "0.3.0": "d4b13ac8a3a1", "0.3.1": "d4b13ac8a3a1", "0.3.2": "d4b13ac8a3a1", - "0.3.3": "d4b13ac8a3a1" + "0.3.3": "d4b13ac8a3a1", + "0.3.4": "d4b13ac8a3a1" } }, "ComposioGoogleBigQueryAPIComponent": { @@ -572,7 +643,8 @@ "0.3.0": "f7d84aaae78f", "0.3.1": "f7d84aaae78f", "0.3.2": "f7d84aaae78f", - "0.3.3": "f7d84aaae78f" + "0.3.3": "f7d84aaae78f", + "0.3.4": "f7d84aaae78f" } }, "ComposioGoogleCalendarAPIComponent": { @@ -580,7 +652,8 @@ "0.3.0": "28adb6fff093", "0.3.1": "28adb6fff093", "0.3.2": "28adb6fff093", - "0.3.3": "28adb6fff093" + "0.3.3": "28adb6fff093", + "0.3.4": "28adb6fff093" } }, "ComposioGoogleclassroomAPIComponent": { @@ -588,7 +661,8 @@ "0.3.0": "85a5c37c13f6", "0.3.1": "85a5c37c13f6", "0.3.2": "85a5c37c13f6", - "0.3.3": "85a5c37c13f6" + "0.3.3": "85a5c37c13f6", + "0.3.4": "85a5c37c13f6" } }, "ComposioGoogleDocsAPIComponent": { @@ -596,7 +670,8 @@ "0.3.0": "ac2e88b6f706", "0.3.1": "ac2e88b6f706", "0.3.2": "ac2e88b6f706", - "0.3.3": "ac2e88b6f706" + "0.3.3": "ac2e88b6f706", + "0.3.4": "ac2e88b6f706" } }, "ComposioGooglemeetAPIComponent": { @@ -604,7 +679,8 @@ "0.3.0": "cdbf16c4b42f", "0.3.1": "cdbf16c4b42f", "0.3.2": "cdbf16c4b42f", - "0.3.3": "cdbf16c4b42f" + "0.3.3": "cdbf16c4b42f", + "0.3.4": "cdbf16c4b42f" } }, "ComposioGoogleSheetsAPIComponent": { @@ -612,7 +688,8 @@ "0.3.0": "b0db7a3abe1f", "0.3.1": "b0db7a3abe1f", "0.3.2": "b0db7a3abe1f", - "0.3.3": "b0db7a3abe1f" + "0.3.3": "b0db7a3abe1f", + "0.3.4": "b0db7a3abe1f" } }, "ComposioGoogleTasksAPIComponent": { @@ -620,7 +697,8 @@ "0.3.0": "2ba9c1661f41", "0.3.1": "2ba9c1661f41", "0.3.2": "2ba9c1661f41", - "0.3.3": "2ba9c1661f41" + "0.3.3": "2ba9c1661f41", + "0.3.4": "2ba9c1661f41" } }, "ComposioHeygenAPIComponent": { @@ -628,7 +706,8 @@ "0.3.0": "c72fd5d0350f", "0.3.1": "c72fd5d0350f", "0.3.2": "c72fd5d0350f", - "0.3.3": "c72fd5d0350f" + "0.3.3": "c72fd5d0350f", + "0.3.4": "c72fd5d0350f" } }, "ComposioInstagramAPIComponent": { @@ -636,7 +715,8 @@ "0.3.0": "a6691c905833", "0.3.1": "a6691c905833", "0.3.2": "a6691c905833", - "0.3.3": "a6691c905833" + "0.3.3": "a6691c905833", + "0.3.4": "a6691c905833" } }, "ComposioJiraAPIComponent": { @@ -644,7 +724,8 @@ "0.3.0": "3e62396f3868", "0.3.1": "3e62396f3868", "0.3.2": "3e62396f3868", - "0.3.3": "3e62396f3868" + "0.3.3": "3e62396f3868", + "0.3.4": "3e62396f3868" } }, "ComposioJotformAPIComponent": { @@ -652,7 +733,8 @@ "0.3.0": "7c1c6a676814", "0.3.1": "7c1c6a676814", "0.3.2": "7c1c6a676814", - "0.3.3": "7c1c6a676814" + "0.3.3": "7c1c6a676814", + "0.3.4": "7c1c6a676814" } }, "ComposioKlaviyoAPIComponent": { @@ -660,7 +742,8 @@ "0.3.0": "3be7e8a5e3fe", "0.3.1": "3be7e8a5e3fe", "0.3.2": "3be7e8a5e3fe", - "0.3.3": "3be7e8a5e3fe" + "0.3.3": "3be7e8a5e3fe", + "0.3.4": "3be7e8a5e3fe" } }, "ComposioLinearAPIComponent": { @@ -668,7 +751,8 @@ "0.3.0": "be2b2ebbeea7", "0.3.1": "be2b2ebbeea7", "0.3.2": "be2b2ebbeea7", - "0.3.3": "be2b2ebbeea7" + "0.3.3": "be2b2ebbeea7", + "0.3.4": "be2b2ebbeea7" } }, "ComposioListennotesAPIComponent": { @@ -676,7 +760,8 @@ "0.3.0": "b85f2fe51906", "0.3.1": "b85f2fe51906", "0.3.2": "b85f2fe51906", - "0.3.3": "b85f2fe51906" + "0.3.3": "b85f2fe51906", + "0.3.4": "b85f2fe51906" } }, "ComposioMem0APIComponent": { @@ -684,7 +769,8 @@ "0.3.0": "68871a483786", "0.3.1": "68871a483786", "0.3.2": "68871a483786", - "0.3.3": "68871a483786" + "0.3.3": "68871a483786", + "0.3.4": "68871a483786" } }, "ComposioMiroAPIComponent": { @@ -692,7 +778,8 @@ "0.3.0": "1e9c421e1ac4", "0.3.1": "1e9c421e1ac4", "0.3.2": "1e9c421e1ac4", - "0.3.3": "1e9c421e1ac4" + "0.3.3": "1e9c421e1ac4", + "0.3.4": "1e9c421e1ac4" } }, "ComposioMissiveAPIComponent": { @@ -700,7 +787,8 @@ "0.3.0": "6def944a7739", "0.3.1": "6def944a7739", "0.3.2": "6def944a7739", - "0.3.3": "6def944a7739" + "0.3.3": "6def944a7739", + "0.3.4": "6def944a7739" } }, "ComposioNotionAPIComponent": { @@ -708,7 +796,8 @@ "0.3.0": "590aa6ff30d1", "0.3.1": "590aa6ff30d1", "0.3.2": "590aa6ff30d1", - "0.3.3": "590aa6ff30d1" + "0.3.3": "590aa6ff30d1", + "0.3.4": "590aa6ff30d1" } }, "ComposioOneDriveAPIComponent": { @@ -716,7 +805,8 @@ "0.3.0": "497cc4625121", "0.3.1": "497cc4625121", "0.3.2": "497cc4625121", - "0.3.3": "497cc4625121" + "0.3.3": "497cc4625121", + "0.3.4": "497cc4625121" } }, "ComposioOutlookAPIComponent": { @@ -724,7 +814,8 @@ "0.3.0": "bf6998d60b63", "0.3.1": "bf6998d60b63", "0.3.2": "bf6998d60b63", - "0.3.3": "bf6998d60b63" + "0.3.3": "bf6998d60b63", + "0.3.4": "bf6998d60b63" } }, "ComposioPandadocAPIComponent": { @@ -732,7 +823,8 @@ "0.3.0": "21d92aabc1bf", "0.3.1": "21d92aabc1bf", "0.3.2": "21d92aabc1bf", - "0.3.3": "21d92aabc1bf" + "0.3.3": "21d92aabc1bf", + "0.3.4": "21d92aabc1bf" } }, "ComposioPeopleDataLabsAPIComponent": { @@ -740,7 +832,8 @@ "0.3.0": "bd05ce58f55c", "0.3.1": "bd05ce58f55c", "0.3.2": "bd05ce58f55c", - "0.3.3": "bd05ce58f55c" + "0.3.3": "bd05ce58f55c", + "0.3.4": "bd05ce58f55c" } }, "ComposioPerplexityAIAPIComponent": { @@ -748,7 +841,8 @@ "0.3.0": "e40b0651344f", "0.3.1": "e40b0651344f", "0.3.2": "e40b0651344f", - "0.3.3": "e40b0651344f" + "0.3.3": "e40b0651344f", + "0.3.4": "e40b0651344f" } }, "ComposioRedditAPIComponent": { @@ -756,7 +850,8 @@ "0.3.0": "a86794073c22", "0.3.1": "a86794073c22", "0.3.2": "a86794073c22", - "0.3.3": "a86794073c22" + "0.3.3": "a86794073c22", + "0.3.4": "a86794073c22" } }, "ComposioSerpAPIComponent": { @@ -764,7 +859,8 @@ "0.3.0": "74b0a07ee54b", "0.3.1": "74b0a07ee54b", "0.3.2": "74b0a07ee54b", - "0.3.3": "74b0a07ee54b" + "0.3.3": "74b0a07ee54b", + "0.3.4": "74b0a07ee54b" } }, "ComposioSlackAPIComponent": { @@ -772,7 +868,8 @@ "0.3.0": "fa340cae1330", "0.3.1": "fa340cae1330", "0.3.2": "fa340cae1330", - "0.3.3": "fa340cae1330" + "0.3.3": "fa340cae1330", + "0.3.4": "fa340cae1330" } }, "ComposioSlackbotAPIComponent": { @@ -780,7 +877,8 @@ "0.3.0": "ddeb26bc04e6", "0.3.1": "ddeb26bc04e6", "0.3.2": "ddeb26bc04e6", - "0.3.3": "ddeb26bc04e6" + "0.3.3": "ddeb26bc04e6", + "0.3.4": "ddeb26bc04e6" } }, "ComposioSnowflakeAPIComponent": { @@ -788,7 +886,8 @@ "0.3.0": "d0d1af5686d2", "0.3.1": "d0d1af5686d2", "0.3.2": "d0d1af5686d2", - "0.3.3": "d0d1af5686d2" + "0.3.3": "d0d1af5686d2", + "0.3.4": "d0d1af5686d2" } }, "ComposioSupabaseAPIComponent": { @@ -796,7 +895,8 @@ "0.3.0": "7ad58ce34cc0", "0.3.1": "7ad58ce34cc0", "0.3.2": "7ad58ce34cc0", - "0.3.3": "7ad58ce34cc0" + "0.3.3": "7ad58ce34cc0", + "0.3.4": "7ad58ce34cc0" } }, "ComposioTavilyAPIComponent": { @@ -804,7 +904,8 @@ "0.3.0": "97af05e37911", "0.3.1": "97af05e37911", "0.3.2": "97af05e37911", - "0.3.3": "97af05e37911" + "0.3.3": "97af05e37911", + "0.3.4": "97af05e37911" } }, "ComposioTimelinesAIAPIComponent": { @@ -812,7 +913,8 @@ "0.3.0": "76e70e2de4d3", "0.3.1": "76e70e2de4d3", "0.3.2": "76e70e2de4d3", - "0.3.3": "76e70e2de4d3" + "0.3.3": "76e70e2de4d3", + "0.3.4": "76e70e2de4d3" } }, "ComposioTodoistAPIComponent": { @@ -820,7 +922,8 @@ "0.3.0": "4dd9852f2058", "0.3.1": "4dd9852f2058", "0.3.2": "4dd9852f2058", - "0.3.3": "4dd9852f2058" + "0.3.3": "4dd9852f2058", + "0.3.4": "4dd9852f2058" } }, "ComposioWrikeAPIComponent": { @@ -828,7 +931,8 @@ "0.3.0": "a5f2cf00ca08", "0.3.1": "a5f2cf00ca08", "0.3.2": "a5f2cf00ca08", - "0.3.3": "a5f2cf00ca08" + "0.3.3": "a5f2cf00ca08", + "0.3.4": "a5f2cf00ca08" } }, "ComposioYoutubeAPIComponent": { @@ -836,7 +940,8 @@ "0.3.0": "d1af2ea00e8b", "0.3.1": "d1af2ea00e8b", "0.3.2": "d1af2ea00e8b", - "0.3.3": "d1af2ea00e8b" + "0.3.3": "d1af2ea00e8b", + "0.3.4": "d1af2ea00e8b" } }, "Confluence": { @@ -844,7 +949,8 @@ "0.3.0": "8a7ef34b66e4", "0.3.1": "8a7ef34b66e4", "0.3.2": "8a7ef34b66e4", - "0.3.3": "8a7ef34b66e4" + "0.3.3": "8a7ef34b66e4", + "0.3.4": "8a7ef34b66e4" } }, "Couchbase": { @@ -852,7 +958,8 @@ "0.3.0": "70ed475a6f48", "0.3.1": "70ed475a6f48", "0.3.2": "70ed475a6f48", - "0.3.3": "70ed475a6f48" + "0.3.3": "70ed475a6f48", + "0.3.4": "70ed475a6f48" } }, "CrewAIAgentComponent": { @@ -860,7 +967,8 @@ "0.3.0": "a23f0923049d", "0.3.1": "a23f0923049d", "0.3.2": "a23f0923049d", - "0.3.3": "a23f0923049d" + "0.3.3": "a23f0923049d", + "0.3.4": "a23f0923049d" } }, "HierarchicalCrewComponent": { @@ -868,7 +976,8 @@ "0.3.0": "144be482cfb0", "0.3.1": "144be482cfb0", "0.3.2": "144be482cfb0", - "0.3.3": "144be482cfb0" + "0.3.3": "144be482cfb0", + "0.3.4": "144be482cfb0" } }, "HierarchicalTaskComponent": { @@ -876,7 +985,8 @@ "0.3.0": "25071652dc20", "0.3.1": "25071652dc20", "0.3.2": "25071652dc20", - "0.3.3": "25071652dc20" + "0.3.3": "25071652dc20", + "0.3.4": "25071652dc20" } }, "SequentialCrewComponent": { @@ -884,7 +994,8 @@ "0.3.0": "42e59f6d6572", "0.3.1": "42e59f6d6572", "0.3.2": "42e59f6d6572", - "0.3.3": "42e59f6d6572" + "0.3.3": "42e59f6d6572", + "0.3.4": "42e59f6d6572" } }, "SequentialTaskComponent": { @@ -892,7 +1003,8 @@ "0.3.0": "b1f17b8fcc5c", "0.3.1": "b1f17b8fcc5c", "0.3.2": "b1f17b8fcc5c", - "0.3.3": "b1f17b8fcc5c" + "0.3.3": "b1f17b8fcc5c", + "0.3.4": "b1f17b8fcc5c" } }, "SequentialTaskAgentComponent": { @@ -900,7 +1012,8 @@ "0.3.0": "0a5483ef82c3", "0.3.1": "0a5483ef82c3", "0.3.2": "0a5483ef82c3", - "0.3.3": "0a5483ef82c3" + "0.3.3": "0a5483ef82c3", + "0.3.4": "0a5483ef82c3" } }, "Cuga": { @@ -908,7 +1021,8 @@ "0.3.0": "35e838f89d13", "0.3.1": "35e838f89d13", "0.3.2": "35e838f89d13", - "0.3.3": "35e838f89d13" + "0.3.3": "35e838f89d13", + "0.3.4": "35e838f89d13" } }, "CustomComponent": { @@ -916,7 +1030,8 @@ "0.3.0": "d50a68a6fa57", "0.3.1": "d50a68a6fa57", "0.3.2": "d50a68a6fa57", - "0.3.3": "d50a68a6fa57" + "0.3.3": "d50a68a6fa57", + "0.3.4": "d50a68a6fa57" } }, "APIRequest": { @@ -924,7 +1039,8 @@ "0.3.0": "f102aadfb328", "0.3.1": "f102aadfb328", "0.3.2": "f102aadfb328", - "0.3.3": "f102aadfb328" + "0.3.3": "f102aadfb328", + "0.3.4": "f102aadfb328" } }, "CSVtoData": { @@ -932,7 +1048,8 @@ "0.3.0": "85c7d6df7473", "0.3.1": "85c7d6df7473", "0.3.2": "85c7d6df7473", - "0.3.3": "85c7d6df7473" + "0.3.3": "85c7d6df7473", + "0.3.4": "85c7d6df7473" } }, "JSONtoData": { @@ -940,7 +1057,8 @@ "0.3.0": "0d9d78d496a2", "0.3.1": "0d9d78d496a2", "0.3.2": "0d9d78d496a2", - "0.3.3": "0d9d78d496a2" + "0.3.3": "0d9d78d496a2", + "0.3.4": "0d9d78d496a2" } }, "MockDataGenerator": { @@ -948,7 +1066,8 @@ "0.3.0": "d21dce7b329b", "0.3.1": "d21dce7b329b", "0.3.2": "d21dce7b329b", - "0.3.3": "d21dce7b329b" + "0.3.3": "d21dce7b329b", + "0.3.4": "d21dce7b329b" } }, "NewsSearch": { @@ -956,7 +1075,8 @@ "0.3.0": "b8cb11f78518", "0.3.1": "b8cb11f78518", "0.3.2": "b8cb11f78518", - "0.3.3": "b8cb11f78518" + "0.3.3": "b8cb11f78518", + "0.3.4": "b8cb11f78518" } }, "RSSReaderSimple": { @@ -964,7 +1084,8 @@ "0.3.0": "6eb8fb48c9b5", "0.3.1": "6eb8fb48c9b5", "0.3.2": "6eb8fb48c9b5", - "0.3.3": "6eb8fb48c9b5" + "0.3.3": "6eb8fb48c9b5", + "0.3.4": "6eb8fb48c9b5" } }, "SQLComponent": { @@ -972,7 +1093,8 @@ "0.3.0": "a8dd79af50b8", "0.3.1": "a8dd79af50b8", "0.3.2": "a8dd79af50b8", - "0.3.3": "a8dd79af50b8" + "0.3.3": "a8dd79af50b8", + "0.3.4": "a8dd79af50b8" } }, "URLComponent": { @@ -980,7 +1102,8 @@ "0.3.0": "f773f55e3820", "0.3.1": "f773f55e3820", "0.3.2": "f773f55e3820", - "0.3.3": "f773f55e3820" + "0.3.3": "f773f55e3820", + "0.3.4": "f773f55e3820" } }, "UnifiedWebSearch": { @@ -988,7 +1111,8 @@ "0.3.0": "cbeeaef8889a", "0.3.1": "cbeeaef8889a", "0.3.2": "cbeeaef8889a", - "0.3.3": "cbeeaef8889a" + "0.3.3": "cbeeaef8889a", + "0.3.4": "cbeeaef8889a" } }, "Astra Assistant Agent": { @@ -996,7 +1120,8 @@ "0.3.0": "4716d3b7c350", "0.3.1": "4716d3b7c350", "0.3.2": "4716d3b7c350", - "0.3.3": "4716d3b7c350" + "0.3.3": "4716d3b7c350", + "0.3.4": "4716d3b7c350" } }, "AstraDBChatMemory": { @@ -1004,7 +1129,8 @@ "0.3.0": "bafc81f78c76", "0.3.1": "bafc81f78c76", "0.3.2": "bafc81f78c76", - "0.3.3": "bafc81f78c76" + "0.3.3": "bafc81f78c76", + "0.3.4": "bafc81f78c76" } }, "AstraDBCQLToolComponent": { @@ -1012,7 +1138,8 @@ "0.3.0": "70c4523f841d", "0.3.1": "70c4523f841d", "0.3.2": "70c4523f841d", - "0.3.3": "70c4523f841d" + "0.3.3": "70c4523f841d", + "0.3.4": "70c4523f841d" } }, "AstraDBGraph": { @@ -1020,7 +1147,8 @@ "0.3.0": "9f5d576b30ca", "0.3.1": "9f5d576b30ca", "0.3.2": "9f5d576b30ca", - "0.3.3": "9f5d576b30ca" + "0.3.3": "9f5d576b30ca", + "0.3.4": "9f5d576b30ca" } }, "AstraDBTool": { @@ -1028,7 +1156,8 @@ "0.3.0": "44719b6ed1a3", "0.3.1": "44719b6ed1a3", "0.3.2": "44719b6ed1a3", - "0.3.3": "44719b6ed1a3" + "0.3.3": "44719b6ed1a3", + "0.3.4": "44719b6ed1a3" } }, "AstraVectorize": { @@ -1036,7 +1165,8 @@ "0.3.0": "3d976690c262", "0.3.1": "3d976690c262", "0.3.2": "3d976690c262", - "0.3.3": "3d976690c262" + "0.3.3": "3d976690c262", + "0.3.4": "3d976690c262" } }, "AstraDB": { @@ -1044,7 +1174,8 @@ "0.3.0": "d52094e54e96", "0.3.1": "d52094e54e96", "0.3.2": "d52094e54e96", - "0.3.3": "d52094e54e96" + "0.3.3": "d52094e54e96", + "0.3.4": "d52094e54e96" } }, "AssistantsCreateAssistant": { @@ -1052,7 +1183,8 @@ "0.3.0": "8d9869d9a89d", "0.3.1": "8d9869d9a89d", "0.3.2": "8d9869d9a89d", - "0.3.3": "8d9869d9a89d" + "0.3.3": "8d9869d9a89d", + "0.3.4": "8d9869d9a89d" } }, "AssistantsCreateThread": { @@ -1060,7 +1192,8 @@ "0.3.0": "5d40a73accfd", "0.3.1": "5d40a73accfd", "0.3.2": "5d40a73accfd", - "0.3.3": "5d40a73accfd" + "0.3.3": "5d40a73accfd", + "0.3.4": "5d40a73accfd" } }, "Dotenv": { @@ -1068,7 +1201,8 @@ "0.3.0": "343ea9aaca1b", "0.3.1": "343ea9aaca1b", "0.3.2": "343ea9aaca1b", - "0.3.3": "343ea9aaca1b" + "0.3.3": "343ea9aaca1b", + "0.3.4": "343ea9aaca1b" } }, "AssistantsGetAssistantName": { @@ -1076,7 +1210,8 @@ "0.3.0": "1f60da161fd3", "0.3.1": "1f60da161fd3", "0.3.2": "1f60da161fd3", - "0.3.3": "1f60da161fd3" + "0.3.3": "1f60da161fd3", + "0.3.4": "1f60da161fd3" } }, "GetEnvVar": { @@ -1084,7 +1219,8 @@ "0.3.0": "083f0a94f380", "0.3.1": "083f0a94f380", "0.3.2": "083f0a94f380", - "0.3.3": "083f0a94f380" + "0.3.3": "083f0a94f380", + "0.3.4": "083f0a94f380" } }, "GraphRAG": { @@ -1092,7 +1228,8 @@ "0.3.0": "4d83709a5f5f", "0.3.1": "4d83709a5f5f", "0.3.2": "4d83709a5f5f", - "0.3.3": "4d83709a5f5f" + "0.3.3": "4d83709a5f5f", + "0.3.4": "4d83709a5f5f" } }, "HCD": { @@ -1100,7 +1237,8 @@ "0.3.0": "25f009b9e171", "0.3.1": "25f009b9e171", "0.3.2": "25f009b9e171", - "0.3.3": "25f009b9e171" + "0.3.3": "25f009b9e171", + "0.3.4": "25f009b9e171" } }, "AssistantsListAssistants": { @@ -1108,7 +1246,8 @@ "0.3.0": "17e9c5c78a6e", "0.3.1": "17e9c5c78a6e", "0.3.2": "17e9c5c78a6e", - "0.3.3": "17e9c5c78a6e" + "0.3.3": "17e9c5c78a6e", + "0.3.4": "17e9c5c78a6e" } }, "AssistantsRun": { @@ -1116,7 +1255,8 @@ "0.3.0": "5e219cd290d3", "0.3.1": "5e219cd290d3", "0.3.2": "5e219cd290d3", - "0.3.3": "5e219cd290d3" + "0.3.3": "5e219cd290d3", + "0.3.4": "5e219cd290d3" } }, "DeepSeekModelComponent": { @@ -1124,7 +1264,8 @@ "0.3.0": "c8dac7a258d7", "0.3.1": "c8dac7a258d7", "0.3.2": "c8dac7a258d7", - "0.3.3": "c8dac7a258d7" + "0.3.3": "c8dac7a258d7", + "0.3.4": "c8dac7a258d7" } }, "ChunkDoclingDocument": { @@ -1132,7 +1273,8 @@ "0.3.0": "49d762d97039", "0.3.1": "49d762d97039", "0.3.2": "49d762d97039", - "0.3.3": "49d762d97039" + "0.3.3": "49d762d97039", + "0.3.4": "49d762d97039" } }, "DoclingInline": { @@ -1140,7 +1282,8 @@ "0.3.0": "519d12bd6451", "0.3.1": "519d12bd6451", "0.3.2": "519d12bd6451", - "0.3.3": "519d12bd6451" + "0.3.3": "519d12bd6451", + "0.3.4": "519d12bd6451" } }, "DoclingRemote": { @@ -1148,7 +1291,8 @@ "0.3.0": "409d771a961e", "0.3.1": "409d771a961e", "0.3.2": "409d771a961e", - "0.3.3": "409d771a961e" + "0.3.3": "409d771a961e", + "0.3.4": "409d771a961e" } }, "ExportDoclingDocument": { @@ -1156,7 +1300,8 @@ "0.3.0": "32577a7e396b", "0.3.1": "32577a7e396b", "0.3.2": "32577a7e396b", - "0.3.3": "32577a7e396b" + "0.3.3": "32577a7e396b", + "0.3.4": "32577a7e396b" } }, "DuckDuckGoSearchComponent": { @@ -1164,7 +1309,8 @@ "0.3.0": "2e522a5a4389", "0.3.1": "2e522a5a4389", "0.3.2": "2e522a5a4389", - "0.3.3": "2e522a5a4389" + "0.3.3": "2e522a5a4389", + "0.3.4": "2e522a5a4389" } }, "Elasticsearch": { @@ -1172,7 +1318,8 @@ "0.3.0": "23ea4383039e", "0.3.1": "23ea4383039e", "0.3.2": "23ea4383039e", - "0.3.3": "23ea4383039e" + "0.3.3": "23ea4383039e", + "0.3.4": "23ea4383039e" } }, "OpenSearchVectorStoreComponent": { @@ -1180,7 +1327,8 @@ "0.3.0": "4968b4d34fad", "0.3.1": "4968b4d34fad", "0.3.2": "4968b4d34fad", - "0.3.3": "4968b4d34fad" + "0.3.3": "4968b4d34fad", + "0.3.4": "4968b4d34fad" } }, "OpenSearchVectorStoreComponentMultimodalMultiEmbedding": { @@ -1188,7 +1336,8 @@ "0.3.0": "6a3df45b55c5", "0.3.1": "6a3df45b55c5", "0.3.2": "6a3df45b55c5", - "0.3.3": "6a3df45b55c5" + "0.3.3": "6a3df45b55c5", + "0.3.4": "6a3df45b55c5" } }, "EmbeddingSimilarityComponent": { @@ -1196,7 +1345,8 @@ "0.3.0": "d94c7d791f69", "0.3.1": "d94c7d791f69", "0.3.2": "d94c7d791f69", - "0.3.3": "d94c7d791f69" + "0.3.3": "d94c7d791f69", + "0.3.4": "d94c7d791f69" } }, "TextEmbedderComponent": { @@ -1204,7 +1354,8 @@ "0.3.0": "541a2fb78066", "0.3.1": "541a2fb78066", "0.3.2": "541a2fb78066", - "0.3.3": "541a2fb78066" + "0.3.3": "541a2fb78066", + "0.3.4": "541a2fb78066" } }, "ExaSearch": { @@ -1212,7 +1363,8 @@ "0.3.0": "26039e2a8b78", "0.3.1": "26039e2a8b78", "0.3.2": "26039e2a8b78", - "0.3.3": "26039e2a8b78" + "0.3.3": "26039e2a8b78", + "0.3.4": "26039e2a8b78" } }, "Directory": { @@ -1220,7 +1372,8 @@ "0.3.0": "328e6f996926", "0.3.1": "328e6f996926", "0.3.2": "328e6f996926", - "0.3.3": "328e6f996926" + "0.3.3": "328e6f996926", + "0.3.4": "328e6f996926" } }, "File": { @@ -1228,7 +1381,8 @@ "0.3.0": "12a5841f1a03", "0.3.1": "12a5841f1a03", "0.3.2": "12a5841f1a03", - "0.3.3": "12a5841f1a03" + "0.3.3": "12a5841f1a03", + "0.3.4": "12a5841f1a03" } }, "KnowledgeIngestion": { @@ -1246,7 +1400,8 @@ "0.3.0": "6d0e4842271e", "0.3.1": "6d0e4842271e", "0.3.2": "6d0e4842271e", - "0.3.3": "6d0e4842271e" + "0.3.3": "6d0e4842271e", + "0.3.4": "6d0e4842271e" } }, "FirecrawlCrawlApi": { @@ -1254,7 +1409,8 @@ "0.3.0": "22fd75efce27", "0.3.1": "22fd75efce27", "0.3.2": "22fd75efce27", - "0.3.3": "22fd75efce27" + "0.3.3": "22fd75efce27", + "0.3.4": "22fd75efce27" } }, "FirecrawlExtractApi": { @@ -1262,7 +1418,8 @@ "0.3.0": "8083782c2c28", "0.3.1": "8083782c2c28", "0.3.2": "8083782c2c28", - "0.3.3": "8083782c2c28" + "0.3.3": "8083782c2c28", + "0.3.4": "8083782c2c28" } }, "FirecrawlMapApi": { @@ -1270,7 +1427,8 @@ "0.3.0": "e326e840049b", "0.3.1": "e326e840049b", "0.3.2": "e326e840049b", - "0.3.3": "e326e840049b" + "0.3.3": "e326e840049b", + "0.3.4": "e326e840049b" } }, "FirecrawlScrapeApi": { @@ -1278,7 +1436,8 @@ "0.3.0": "857b7da04207", "0.3.1": "857b7da04207", "0.3.2": "857b7da04207", - "0.3.3": "857b7da04207" + "0.3.3": "857b7da04207", + "0.3.4": "857b7da04207" } }, "ConditionalRouter": { @@ -1286,7 +1445,8 @@ "0.3.0": "e92b1b243e5f", "0.3.1": "e92b1b243e5f", "0.3.2": "e92b1b243e5f", - "0.3.3": "e92b1b243e5f" + "0.3.3": "e92b1b243e5f", + "0.3.4": "e92b1b243e5f" } }, "DataConditionalRouter": { @@ -1294,7 +1454,8 @@ "0.3.0": "6fa1bf4166a3", "0.3.1": "6fa1bf4166a3", "0.3.2": "6fa1bf4166a3", - "0.3.3": "6fa1bf4166a3" + "0.3.3": "6fa1bf4166a3", + "0.3.4": "6fa1bf4166a3" } }, "FlowTool": { @@ -1302,7 +1463,8 @@ "0.3.0": "9348d79d19f4", "0.3.1": "9348d79d19f4", "0.3.2": "9348d79d19f4", - "0.3.3": "9348d79d19f4" + "0.3.3": "9348d79d19f4", + "0.3.4": "9348d79d19f4" } }, "Listen": { @@ -1310,7 +1472,8 @@ "0.3.0": "93fc11377c96", "0.3.1": "93fc11377c96", "0.3.2": "93fc11377c96", - "0.3.3": "93fc11377c96" + "0.3.3": "93fc11377c96", + "0.3.4": "93fc11377c96" } }, "LoopComponent": { @@ -1318,7 +1481,8 @@ "0.3.0": "e516ea99611c", "0.3.1": "e516ea99611c", "0.3.2": "e516ea99611c", - "0.3.3": "e516ea99611c" + "0.3.3": "e516ea99611c", + "0.3.4": "e516ea99611c" } }, "Notify": { @@ -1326,7 +1490,8 @@ "0.3.0": "03d68ba28530", "0.3.1": "03d68ba28530", "0.3.2": "03d68ba28530", - "0.3.3": "03d68ba28530" + "0.3.3": "03d68ba28530", + "0.3.4": "03d68ba28530" } }, "Pass": { @@ -1334,7 +1499,8 @@ "0.3.0": "04d3e1ed3390", "0.3.1": "04d3e1ed3390", "0.3.2": "04d3e1ed3390", - "0.3.3": "04d3e1ed3390" + "0.3.3": "04d3e1ed3390", + "0.3.4": "04d3e1ed3390" } }, "RunFlow": { @@ -1342,7 +1508,8 @@ "0.3.0": "9e5eefa14766", "0.3.1": "9e5eefa14766", "0.3.2": "9e5eefa14766", - "0.3.3": "9e5eefa14766" + "0.3.3": "9e5eefa14766", + "0.3.4": "9e5eefa14766" } }, "SubFlow": { @@ -1350,7 +1517,8 @@ "0.3.0": "8ba6fbc5ca3a", "0.3.1": "8ba6fbc5ca3a", "0.3.2": "8ba6fbc5ca3a", - "0.3.3": "8ba6fbc5ca3a" + "0.3.3": "8ba6fbc5ca3a", + "0.3.4": "8ba6fbc5ca3a" } }, "GitLoaderComponent": { @@ -1358,7 +1526,8 @@ "0.3.0": "ac5de0564a4f", "0.3.1": "ac5de0564a4f", "0.3.2": "ac5de0564a4f", - "0.3.3": "ac5de0564a4f" + "0.3.3": "ac5de0564a4f", + "0.3.4": "ac5de0564a4f" } }, "GitExtractorComponent": { @@ -1366,7 +1535,8 @@ "0.3.0": "79f338765b69", "0.3.1": "79f338765b69", "0.3.2": "79f338765b69", - "0.3.3": "79f338765b69" + "0.3.3": "79f338765b69", + "0.3.4": "79f338765b69" } }, "GleanSearchAPIComponent": { @@ -1374,7 +1544,8 @@ "0.3.0": "493ca281d420", "0.3.1": "493ca281d420", "0.3.2": "493ca281d420", - "0.3.3": "493ca281d420" + "0.3.3": "493ca281d420", + "0.3.4": "493ca281d420" } }, "GmailLoaderComponent": { @@ -1382,7 +1553,8 @@ "0.3.0": "b973c5a1987b", "0.3.1": "b973c5a1987b", "0.3.2": "b973c5a1987b", - "0.3.3": "b973c5a1987b" + "0.3.3": "b973c5a1987b", + "0.3.4": "b973c5a1987b" } }, "BigQueryExecutor": { @@ -1390,7 +1562,8 @@ "0.3.0": "7f61159743ec", "0.3.1": "7f61159743ec", "0.3.2": "7f61159743ec", - "0.3.3": "7f61159743ec" + "0.3.3": "7f61159743ec", + "0.3.4": "7f61159743ec" } }, "GoogleDriveComponent": { @@ -1398,7 +1571,8 @@ "0.3.0": "1727f517e814", "0.3.1": "1727f517e814", "0.3.2": "1727f517e814", - "0.3.3": "1727f517e814" + "0.3.3": "1727f517e814", + "0.3.4": "1727f517e814" } }, "GoogleDriveSearchComponent": { @@ -1406,7 +1580,8 @@ "0.3.0": "8f8dbdf04aaf", "0.3.1": "8f8dbdf04aaf", "0.3.2": "8f8dbdf04aaf", - "0.3.3": "8f8dbdf04aaf" + "0.3.3": "8f8dbdf04aaf", + "0.3.4": "8f8dbdf04aaf" } }, "GoogleGenerativeAIModel": { @@ -1414,7 +1589,8 @@ "0.3.0": "049f38001189", "0.3.1": "049f38001189", "0.3.2": "049f38001189", - "0.3.3": "049f38001189" + "0.3.3": "049f38001189", + "0.3.4": "049f38001189" } }, "Google Generative AI Embeddings": { @@ -1422,7 +1598,8 @@ "0.3.0": "7756ad70a221", "0.3.1": "7756ad70a221", "0.3.2": "7756ad70a221", - "0.3.3": "7756ad70a221" + "0.3.3": "7756ad70a221", + "0.3.4": "7756ad70a221" } }, "GoogleOAuthToken": { @@ -1430,7 +1607,8 @@ "0.3.0": "151778572099", "0.3.1": "151778572099", "0.3.2": "151778572099", - "0.3.3": "151778572099" + "0.3.3": "151778572099", + "0.3.4": "151778572099" } }, "GoogleSearchAPICore": { @@ -1438,7 +1616,8 @@ "0.3.0": "853c193aa41c", "0.3.1": "853c193aa41c", "0.3.2": "853c193aa41c", - "0.3.3": "853c193aa41c" + "0.3.3": "853c193aa41c", + "0.3.4": "853c193aa41c" } }, "GoogleSerperAPICore": { @@ -1446,7 +1625,8 @@ "0.3.0": "527183dcb201", "0.3.1": "527183dcb201", "0.3.2": "527183dcb201", - "0.3.3": "527183dcb201" + "0.3.3": "527183dcb201", + "0.3.4": "527183dcb201" } }, "GroqModel": { @@ -1454,7 +1634,8 @@ "0.3.0": "2aee7de6ee88", "0.3.1": "2aee7de6ee88", "0.3.2": "2aee7de6ee88", - "0.3.3": "2aee7de6ee88" + "0.3.3": "2aee7de6ee88", + "0.3.4": "2aee7de6ee88" } }, "HomeAssistantControl": { @@ -1462,7 +1643,8 @@ "0.3.0": "32b34baf3c7d", "0.3.1": "32b34baf3c7d", "0.3.2": "32b34baf3c7d", - "0.3.3": "32b34baf3c7d" + "0.3.3": "32b34baf3c7d", + "0.3.4": "32b34baf3c7d" } }, "ListHomeAssistantStates": { @@ -1470,7 +1652,8 @@ "0.3.0": "c7bb91632474", "0.3.1": "c7bb91632474", "0.3.2": "c7bb91632474", - "0.3.3": "c7bb91632474" + "0.3.3": "c7bb91632474", + "0.3.4": "c7bb91632474" } }, "HuggingFaceModel": { @@ -1478,7 +1661,8 @@ "0.3.0": "ba9d7c28859d", "0.3.1": "ba9d7c28859d", "0.3.2": "ba9d7c28859d", - "0.3.3": "ba9d7c28859d" + "0.3.3": "ba9d7c28859d", + "0.3.4": "ba9d7c28859d" } }, "HuggingFaceInferenceAPIEmbeddings": { @@ -1486,7 +1670,8 @@ "0.3.0": "af0546658974", "0.3.1": "af0546658974", "0.3.2": "af0546658974", - "0.3.3": "af0546658974" + "0.3.3": "af0546658974", + "0.3.4": "af0546658974" } }, "IBMwatsonxModel": { @@ -1494,7 +1679,8 @@ "0.3.0": "689a87ecc73a", "0.3.1": "689a87ecc73a", "0.3.2": "689a87ecc73a", - "0.3.3": "689a87ecc73a" + "0.3.3": "689a87ecc73a", + "0.3.4": "689a87ecc73a" } }, "WatsonxEmbeddingsComponent": { @@ -1502,7 +1688,8 @@ "0.3.0": "011bcac795de", "0.3.1": "011bcac795de", "0.3.2": "011bcac795de", - "0.3.3": "011bcac795de" + "0.3.3": "011bcac795de", + "0.3.4": "011bcac795de" } }, "Combinatorial Reasoner": { @@ -1510,7 +1697,8 @@ "0.3.0": "48557047ff23", "0.3.1": "48557047ff23", "0.3.2": "48557047ff23", - "0.3.3": "48557047ff23" + "0.3.3": "48557047ff23", + "0.3.4": "48557047ff23" } }, "ChatInput": { @@ -1518,7 +1706,8 @@ "0.3.0": "7a26c54d89ed", "0.3.1": "7a26c54d89ed", "0.3.2": "7a26c54d89ed", - "0.3.3": "7a26c54d89ed" + "0.3.3": "7a26c54d89ed", + "0.3.4": "7a26c54d89ed" } }, "ChatOutput": { @@ -1526,7 +1715,8 @@ "0.3.0": "8c87e536cca4", "0.3.1": "8c87e536cca4", "0.3.2": "8c87e536cca4", - "0.3.3": "8c87e536cca4" + "0.3.3": "8c87e536cca4", + "0.3.4": "8c87e536cca4" } }, "TextInput": { @@ -1534,7 +1724,8 @@ "0.3.0": "518f16485886", "0.3.1": "518f16485886", "0.3.2": "518f16485886", - "0.3.3": "518f16485886" + "0.3.3": "518f16485886", + "0.3.4": "518f16485886" } }, "TextOutput": { @@ -1542,7 +1733,8 @@ "0.3.0": "6aba888f4632", "0.3.1": "6aba888f4632", "0.3.2": "6aba888f4632", - "0.3.3": "6aba888f4632" + "0.3.3": "6aba888f4632", + "0.3.4": "6aba888f4632" } }, "Webhook": { @@ -1550,7 +1742,8 @@ "0.3.0": "eb561ef21f3d", "0.3.1": "eb561ef21f3d", "0.3.2": "eb561ef21f3d", - "0.3.3": "eb561ef21f3d" + "0.3.3": "eb561ef21f3d", + "0.3.4": "eb561ef21f3d" } }, "JigsawStackAIScraper": { @@ -1558,7 +1751,8 @@ "0.3.0": "08a0063e2564", "0.3.1": "08a0063e2564", "0.3.2": "08a0063e2564", - "0.3.3": "08a0063e2564" + "0.3.3": "08a0063e2564", + "0.3.4": "08a0063e2564" } }, "JigsawStackAISearch": { @@ -1566,7 +1760,8 @@ "0.3.0": "5e821ee44040", "0.3.1": "5e821ee44040", "0.3.2": "5e821ee44040", - "0.3.3": "5e821ee44040" + "0.3.3": "5e821ee44040", + "0.3.4": "5e821ee44040" } }, "JigsawStackFileRead": { @@ -1574,7 +1769,8 @@ "0.3.0": "84d122f46fb1", "0.3.1": "84d122f46fb1", "0.3.2": "84d122f46fb1", - "0.3.3": "84d122f46fb1" + "0.3.3": "84d122f46fb1", + "0.3.4": "84d122f46fb1" } }, "JigsawStackFileUpload": { @@ -1582,7 +1778,8 @@ "0.3.0": "8261dc72a655", "0.3.1": "8261dc72a655", "0.3.2": "8261dc72a655", - "0.3.3": "8261dc72a655" + "0.3.3": "8261dc72a655", + "0.3.4": "8261dc72a655" } }, "JigsawStackImageGeneration": { @@ -1590,7 +1787,8 @@ "0.3.0": "463f8efbaa18", "0.3.1": "463f8efbaa18", "0.3.2": "463f8efbaa18", - "0.3.3": "463f8efbaa18" + "0.3.3": "463f8efbaa18", + "0.3.4": "463f8efbaa18" } }, "JigsawStackNSFW": { @@ -1598,7 +1796,8 @@ "0.3.0": "88b5eee38906", "0.3.1": "88b5eee38906", "0.3.2": "88b5eee38906", - "0.3.3": "88b5eee38906" + "0.3.3": "88b5eee38906", + "0.3.4": "88b5eee38906" } }, "JigsawStackObjectDetection": { @@ -1606,7 +1805,8 @@ "0.3.0": "fceaf0286f20", "0.3.1": "fceaf0286f20", "0.3.2": "fceaf0286f20", - "0.3.3": "fceaf0286f20" + "0.3.3": "fceaf0286f20", + "0.3.4": "fceaf0286f20" } }, "JigsawStackSentiment": { @@ -1614,7 +1814,8 @@ "0.3.0": "00d0377e5c2e", "0.3.1": "00d0377e5c2e", "0.3.2": "00d0377e5c2e", - "0.3.3": "00d0377e5c2e" + "0.3.3": "00d0377e5c2e", + "0.3.4": "00d0377e5c2e" } }, "JigsawStackTextToSQL": { @@ -1622,7 +1823,8 @@ "0.3.0": "30aa0cc15fb8", "0.3.1": "30aa0cc15fb8", "0.3.2": "30aa0cc15fb8", - "0.3.3": "30aa0cc15fb8" + "0.3.3": "30aa0cc15fb8", + "0.3.4": "30aa0cc15fb8" } }, "JigsawStackTextTranslate": { @@ -1630,7 +1832,8 @@ "0.3.0": "46233e19961f", "0.3.1": "46233e19961f", "0.3.2": "46233e19961f", - "0.3.3": "46233e19961f" + "0.3.3": "46233e19961f", + "0.3.4": "46233e19961f" } }, "JigsawStackVOCR": { @@ -1638,7 +1841,8 @@ "0.3.0": "a44491947ba7", "0.3.1": "a44491947ba7", "0.3.2": "a44491947ba7", - "0.3.3": "a44491947ba7" + "0.3.3": "a44491947ba7", + "0.3.4": "a44491947ba7" } }, "CharacterTextSplitter": { @@ -1646,7 +1850,8 @@ "0.3.0": "995b35c5296c", "0.3.1": "995b35c5296c", "0.3.2": "995b35c5296c", - "0.3.3": "995b35c5296c" + "0.3.3": "995b35c5296c", + "0.3.4": "995b35c5296c" } }, "ConversationChain": { @@ -1654,7 +1859,8 @@ "0.3.0": "b0e4044d3f08", "0.3.1": "b0e4044d3f08", "0.3.2": "b0e4044d3f08", - "0.3.3": "b0e4044d3f08" + "0.3.3": "b0e4044d3f08", + "0.3.4": "b0e4044d3f08" } }, "CSVAgent": { @@ -1662,7 +1868,8 @@ "0.3.0": "1888a727f9dd", "0.3.1": "1888a727f9dd", "0.3.2": "1888a727f9dd", - "0.3.3": "1888a727f9dd" + "0.3.3": "1888a727f9dd", + "0.3.4": "1888a727f9dd" } }, "LangChainFakeEmbeddings": { @@ -1670,7 +1877,8 @@ "0.3.0": "faaa1be642a1", "0.3.1": "faaa1be642a1", "0.3.2": "faaa1be642a1", - "0.3.3": "faaa1be642a1" + "0.3.3": "faaa1be642a1", + "0.3.4": "faaa1be642a1" } }, "HtmlLinkExtractor": { @@ -1678,7 +1886,8 @@ "0.3.0": "13cc6457f84c", "0.3.1": "13cc6457f84c", "0.3.2": "13cc6457f84c", - "0.3.3": "13cc6457f84c" + "0.3.3": "13cc6457f84c", + "0.3.4": "13cc6457f84c" } }, "JsonAgent": { @@ -1686,7 +1895,8 @@ "0.3.0": "117a41e142c6", "0.3.1": "117a41e142c6", "0.3.2": "117a41e142c6", - "0.3.3": "117a41e142c6" + "0.3.3": "117a41e142c6", + "0.3.4": "117a41e142c6" } }, "LangChain Hub Prompt": { @@ -1694,7 +1904,8 @@ "0.3.0": "9f59bf236231", "0.3.1": "9f59bf236231", "0.3.2": "9f59bf236231", - "0.3.3": "9f59bf236231" + "0.3.3": "9f59bf236231", + "0.3.4": "9f59bf236231" } }, "LanguageRecursiveTextSplitter": { @@ -1702,7 +1913,8 @@ "0.3.0": "207a88b20a7e", "0.3.1": "207a88b20a7e", "0.3.2": "207a88b20a7e", - "0.3.3": "207a88b20a7e" + "0.3.3": "207a88b20a7e", + "0.3.4": "207a88b20a7e" } }, "SemanticTextSplitter": { @@ -1710,7 +1922,8 @@ "0.3.0": "e9178757dea0", "0.3.1": "e9178757dea0", "0.3.2": "e9178757dea0", - "0.3.3": "e9178757dea0" + "0.3.3": "e9178757dea0", + "0.3.4": "e9178757dea0" } }, "LLMCheckerChain": { @@ -1718,7 +1931,8 @@ "0.3.0": "81aa2c9910db", "0.3.1": "81aa2c9910db", "0.3.2": "81aa2c9910db", - "0.3.3": "81aa2c9910db" + "0.3.3": "81aa2c9910db", + "0.3.4": "81aa2c9910db" } }, "LLMMathChain": { @@ -1726,7 +1940,8 @@ "0.3.0": "422d8e0d4614", "0.3.1": "422d8e0d4614", "0.3.2": "422d8e0d4614", - "0.3.3": "422d8e0d4614" + "0.3.3": "422d8e0d4614", + "0.3.4": "422d8e0d4614" } }, "NaturalLanguageTextSplitter": { @@ -1734,7 +1949,8 @@ "0.3.0": "aed1e0bb411e", "0.3.1": "aed1e0bb411e", "0.3.2": "aed1e0bb411e", - "0.3.3": "aed1e0bb411e" + "0.3.3": "aed1e0bb411e", + "0.3.4": "aed1e0bb411e" } }, "OpenAIToolsAgent": { @@ -1742,7 +1958,8 @@ "0.3.0": "21bfd16796e5", "0.3.1": "21bfd16796e5", "0.3.2": "21bfd16796e5", - "0.3.3": "21bfd16796e5" + "0.3.3": "21bfd16796e5", + "0.3.4": "21bfd16796e5" } }, "OpenAPIAgent": { @@ -1750,7 +1967,8 @@ "0.3.0": "a4a7564100da", "0.3.1": "a4a7564100da", "0.3.2": "a4a7564100da", - "0.3.3": "a4a7564100da" + "0.3.3": "a4a7564100da", + "0.3.4": "a4a7564100da" } }, "RecursiveCharacterTextSplitter": { @@ -1758,7 +1976,8 @@ "0.3.0": "9ed58a212804", "0.3.1": "9ed58a212804", "0.3.2": "9ed58a212804", - "0.3.3": "9ed58a212804" + "0.3.3": "9ed58a212804", + "0.3.4": "9ed58a212804" } }, "RetrievalQA": { @@ -1766,7 +1985,8 @@ "0.3.0": "16c80b234abf", "0.3.1": "16c80b234abf", "0.3.2": "16c80b234abf", - "0.3.3": "16c80b234abf" + "0.3.3": "16c80b234abf", + "0.3.4": "16c80b234abf" } }, "RunnableExecutor": { @@ -1774,7 +1994,8 @@ "0.3.0": "32135f41efe5", "0.3.1": "32135f41efe5", "0.3.2": "32135f41efe5", - "0.3.3": "32135f41efe5" + "0.3.3": "32135f41efe5", + "0.3.4": "32135f41efe5" } }, "SelfQueryRetriever": { @@ -1782,7 +2003,8 @@ "0.3.0": "a18169f36371", "0.3.1": "a18169f36371", "0.3.2": "a18169f36371", - "0.3.3": "a18169f36371" + "0.3.3": "a18169f36371", + "0.3.4": "a18169f36371" } }, "SpiderTool": { @@ -1790,7 +2012,8 @@ "0.3.0": "08c823a20237", "0.3.1": "08c823a20237", "0.3.2": "08c823a20237", - "0.3.3": "08c823a20237" + "0.3.3": "08c823a20237", + "0.3.4": "08c823a20237" } }, "SQLAgent": { @@ -1798,7 +2021,8 @@ "0.3.0": "550c16461236", "0.3.1": "550c16461236", "0.3.2": "550c16461236", - "0.3.3": "550c16461236" + "0.3.3": "550c16461236", + "0.3.4": "550c16461236" } }, "SQLDatabase": { @@ -1806,7 +2030,8 @@ "0.3.0": "7d07b7faa341", "0.3.1": "7d07b7faa341", "0.3.2": "7d07b7faa341", - "0.3.3": "7d07b7faa341" + "0.3.3": "7d07b7faa341", + "0.3.4": "7d07b7faa341" } }, "SQLGenerator": { @@ -1814,7 +2039,8 @@ "0.3.0": "971a82407ec6", "0.3.1": "971a82407ec6", "0.3.2": "971a82407ec6", - "0.3.3": "971a82407ec6" + "0.3.3": "971a82407ec6", + "0.3.4": "971a82407ec6" } }, "ToolCallingAgent": { @@ -1822,7 +2048,8 @@ "0.3.0": "cdeb13ac7430", "0.3.1": "cdeb13ac7430", "0.3.2": "cdeb13ac7430", - "0.3.3": "cdeb13ac7430" + "0.3.3": "cdeb13ac7430", + "0.3.4": "cdeb13ac7430" } }, "VectorStoreInfo": { @@ -1830,7 +2057,8 @@ "0.3.0": "62f06efeec2c", "0.3.1": "62f06efeec2c", "0.3.2": "62f06efeec2c", - "0.3.3": "62f06efeec2c" + "0.3.3": "62f06efeec2c", + "0.3.4": "62f06efeec2c" } }, "VectorStoreRouterAgent": { @@ -1838,7 +2066,8 @@ "0.3.0": "b16515f6e722", "0.3.1": "b16515f6e722", "0.3.2": "b16515f6e722", - "0.3.3": "b16515f6e722" + "0.3.3": "b16515f6e722", + "0.3.4": "b16515f6e722" } }, "XMLAgent": { @@ -1846,7 +2075,8 @@ "0.3.0": "17a0cb4c48a8", "0.3.1": "17a0cb4c48a8", "0.3.2": "17a0cb4c48a8", - "0.3.3": "17a0cb4c48a8" + "0.3.3": "17a0cb4c48a8", + "0.3.4": "17a0cb4c48a8" } }, "LangWatchEvaluator": { @@ -1854,7 +2084,8 @@ "0.3.0": "6db3bccd5945", "0.3.1": "6db3bccd5945", "0.3.2": "6db3bccd5945", - "0.3.3": "6db3bccd5945" + "0.3.3": "6db3bccd5945", + "0.3.4": "6db3bccd5945" } }, "BatchRunComponent": { @@ -1862,7 +2093,8 @@ "0.3.0": "8b1ec3b03475", "0.3.1": "8b1ec3b03475", "0.3.2": "8b1ec3b03475", - "0.3.3": "8b1ec3b03475" + "0.3.3": "8b1ec3b03475", + "0.3.4": "8b1ec3b03475" } }, "Smart Transform": { @@ -1870,7 +2102,8 @@ "0.3.0": "0d3667d6d687", "0.3.1": "0d3667d6d687", "0.3.2": "0d3667d6d687", - "0.3.3": "0d3667d6d687" + "0.3.3": "0d3667d6d687", + "0.3.4": "0d3667d6d687" } }, "SmartRouter": { @@ -1878,7 +2111,8 @@ "0.3.0": "86404d4beb95", "0.3.1": "86404d4beb95", "0.3.2": "86404d4beb95", - "0.3.3": "86404d4beb95" + "0.3.3": "86404d4beb95", + "0.3.4": "86404d4beb95" } }, "LLMSelectorComponent": { @@ -1886,7 +2120,8 @@ "0.3.0": "59de3f4015ff", "0.3.1": "59de3f4015ff", "0.3.2": "59de3f4015ff", - "0.3.3": "59de3f4015ff" + "0.3.3": "59de3f4015ff", + "0.3.4": "59de3f4015ff" } }, "StructuredOutput": { @@ -1894,7 +2129,8 @@ "0.3.0": "058ca1f51e9f", "0.3.1": "058ca1f51e9f", "0.3.2": "058ca1f51e9f", - "0.3.3": "058ca1f51e9f" + "0.3.3": "058ca1f51e9f", + "0.3.4": "058ca1f51e9f" } }, "LMStudioEmbeddingsComponent": { @@ -1902,7 +2138,8 @@ "0.3.0": "ecd584b7a486", "0.3.1": "ecd584b7a486", "0.3.2": "ecd584b7a486", - "0.3.3": "ecd584b7a486" + "0.3.3": "ecd584b7a486", + "0.3.4": "ecd584b7a486" } }, "LMStudioModel": { @@ -1910,7 +2147,8 @@ "0.3.0": "da4b3b155dc4", "0.3.1": "da4b3b155dc4", "0.3.2": "da4b3b155dc4", - "0.3.3": "da4b3b155dc4" + "0.3.3": "da4b3b155dc4", + "0.3.4": "da4b3b155dc4" } }, "Maritalk": { @@ -1918,7 +2156,8 @@ "0.3.0": "25c5da31181e", "0.3.1": "25c5da31181e", "0.3.2": "25c5da31181e", - "0.3.3": "25c5da31181e" + "0.3.3": "25c5da31181e", + "0.3.4": "25c5da31181e" } }, "mem0_chat_memory": { @@ -1926,7 +2165,8 @@ "0.3.0": "b6addbcccf9a", "0.3.1": "b6addbcccf9a", "0.3.2": "b6addbcccf9a", - "0.3.3": "b6addbcccf9a" + "0.3.3": "b6addbcccf9a", + "0.3.4": "b6addbcccf9a" } }, "Milvus": { @@ -1934,7 +2174,8 @@ "0.3.0": "2b5efe313b31", "0.3.1": "2b5efe313b31", "0.3.2": "2b5efe313b31", - "0.3.3": "2b5efe313b31" + "0.3.3": "2b5efe313b31", + "0.3.4": "2b5efe313b31" } }, "MistralModel": { @@ -1942,7 +2183,8 @@ "0.3.0": "e21780948144", "0.3.1": "e21780948144", "0.3.2": "e21780948144", - "0.3.3": "e21780948144" + "0.3.3": "e21780948144", + "0.3.4": "e21780948144" } }, "MistalAIEmbeddings": { @@ -1950,7 +2192,8 @@ "0.3.0": "42ea92fd2df2", "0.3.1": "42ea92fd2df2", "0.3.2": "42ea92fd2df2", - "0.3.3": "42ea92fd2df2" + "0.3.3": "42ea92fd2df2", + "0.3.4": "42ea92fd2df2" } }, "Agent": { @@ -1958,7 +2201,8 @@ "0.3.0": "40d1976f4718", "0.3.1": "40d1976f4718", "0.3.2": "40d1976f4718", - "0.3.3": "40d1976f4718" + "0.3.3": "40d1976f4718", + "0.3.4": "40d1976f4718" } }, "EmbeddingModel": { @@ -1966,7 +2210,8 @@ "0.3.0": "b5cf1a06bba8", "0.3.1": "b5cf1a06bba8", "0.3.2": "b5cf1a06bba8", - "0.3.3": "b5cf1a06bba8" + "0.3.3": "b5cf1a06bba8", + "0.3.4": "b5cf1a06bba8" } }, "LanguageModelComponent": { @@ -1974,7 +2219,8 @@ "0.3.0": "e9233312b063", "0.3.1": "e9233312b063", "0.3.2": "e9233312b063", - "0.3.3": "e9233312b063" + "0.3.3": "e9233312b063", + "0.3.4": "e9233312b063" } }, "MCPTools": { @@ -1982,7 +2228,8 @@ "0.3.0": "a3700ab467a1", "0.3.1": "a3700ab467a1", "0.3.2": "a3700ab467a1", - "0.3.3": "a3700ab467a1" + "0.3.3": "a3700ab467a1", + "0.3.4": "a3700ab467a1" } }, "Memory": { @@ -1990,7 +2237,8 @@ "0.3.0": "efd064ef48ff", "0.3.1": "efd064ef48ff", "0.3.2": "efd064ef48ff", - "0.3.3": "efd064ef48ff" + "0.3.3": "efd064ef48ff", + "0.3.4": "efd064ef48ff" } }, "Prompt Template": { @@ -1998,7 +2246,8 @@ "0.3.0": "5b3e6730923e", "0.3.1": "5b3e6730923e", "0.3.2": "5b3e6730923e", - "0.3.3": "5b3e6730923e" + "0.3.3": "5b3e6730923e", + "0.3.4": "5b3e6730923e" } }, "MongoDBAtlasVector": { @@ -2006,7 +2255,8 @@ "0.3.0": "3a502cb4d313", "0.3.1": "3a502cb4d313", "0.3.2": "3a502cb4d313", - "0.3.3": "3a502cb4d313" + "0.3.3": "3a502cb4d313", + "0.3.4": "3a502cb4d313" } }, "needle": { @@ -2014,7 +2264,8 @@ "0.3.0": "5f6cedaa0217", "0.3.1": "5f6cedaa0217", "0.3.2": "5f6cedaa0217", - "0.3.3": "5f6cedaa0217" + "0.3.3": "5f6cedaa0217", + "0.3.4": "5f6cedaa0217" } }, "NotDiamond": { @@ -2022,7 +2273,8 @@ "0.3.0": "a26ebf501f67", "0.3.1": "a26ebf501f67", "0.3.2": "a26ebf501f67", - "0.3.3": "a26ebf501f67" + "0.3.3": "a26ebf501f67", + "0.3.4": "a26ebf501f67" } }, "NovitaModel": { @@ -2030,7 +2282,8 @@ "0.3.0": "2142c4dd2b64", "0.3.1": "2142c4dd2b64", "0.3.2": "2142c4dd2b64", - "0.3.3": "2142c4dd2b64" + "0.3.3": "2142c4dd2b64", + "0.3.4": "2142c4dd2b64" } }, "NVIDIAModelComponent": { @@ -2038,7 +2291,8 @@ "0.3.0": "fd6cae31c2a0", "0.3.1": "fd6cae31c2a0", "0.3.2": "fd6cae31c2a0", - "0.3.3": "fd6cae31c2a0" + "0.3.3": "fd6cae31c2a0", + "0.3.4": "fd6cae31c2a0" } }, "NVIDIAEmbeddingsComponent": { @@ -2046,7 +2300,8 @@ "0.3.0": "0fded038082d", "0.3.1": "0fded038082d", "0.3.2": "0fded038082d", - "0.3.3": "0fded038082d" + "0.3.3": "0fded038082d", + "0.3.4": "0fded038082d" } }, "NvidiaIngestComponent": { @@ -2054,7 +2309,8 @@ "0.3.0": "ff0c6660d991", "0.3.1": "ff0c6660d991", "0.3.2": "ff0c6660d991", - "0.3.3": "ff0c6660d991" + "0.3.3": "ff0c6660d991", + "0.3.4": "ff0c6660d991" } }, "NvidiaRerankComponent": { @@ -2062,7 +2318,8 @@ "0.3.0": "cf3976b241f1", "0.3.1": "cf3976b241f1", "0.3.2": "cf3976b241f1", - "0.3.3": "cf3976b241f1" + "0.3.3": "cf3976b241f1", + "0.3.4": "cf3976b241f1" } }, "NvidiaSystemAssistComponent": { @@ -2070,7 +2327,8 @@ "0.3.0": "1affc5dcebe1", "0.3.1": "1affc5dcebe1", "0.3.2": "1affc5dcebe1", - "0.3.3": "1affc5dcebe1" + "0.3.3": "1affc5dcebe1", + "0.3.4": "1affc5dcebe1" } }, "OlivyaComponent": { @@ -2078,7 +2336,8 @@ "0.3.0": "b5a5c201c4e0", "0.3.1": "b5a5c201c4e0", "0.3.2": "b5a5c201c4e0", - "0.3.3": "b5a5c201c4e0" + "0.3.3": "b5a5c201c4e0", + "0.3.4": "b5a5c201c4e0" } }, "OllamaModel": { @@ -2086,7 +2345,8 @@ "0.3.0": "cd3dc38272a7", "0.3.1": "cd3dc38272a7", "0.3.2": "cd3dc38272a7", - "0.3.3": "cd3dc38272a7" + "0.3.3": "cd3dc38272a7", + "0.3.4": "cd3dc38272a7" } }, "OllamaEmbeddings": { @@ -2094,7 +2354,8 @@ "0.3.0": "a8c56d0835de", "0.3.1": "a8c56d0835de", "0.3.2": "a8c56d0835de", - "0.3.3": "a8c56d0835de" + "0.3.3": "a8c56d0835de", + "0.3.4": "a8c56d0835de" } }, "OpenAIEmbeddings": { @@ -2102,7 +2363,8 @@ "0.3.0": "8a658ed6d4c9", "0.3.1": "8a658ed6d4c9", "0.3.2": "8a658ed6d4c9", - "0.3.3": "8a658ed6d4c9" + "0.3.3": "8a658ed6d4c9", + "0.3.4": "8a658ed6d4c9" } }, "OpenAIModel": { @@ -2110,7 +2372,8 @@ "0.3.0": "128d8ef661d4", "0.3.1": "128d8ef661d4", "0.3.2": "128d8ef661d4", - "0.3.3": "128d8ef661d4" + "0.3.3": "128d8ef661d4", + "0.3.4": "128d8ef661d4" } }, "OpenRouterComponent": { @@ -2118,7 +2381,8 @@ "0.3.0": "83c3c312a7a2", "0.3.1": "83c3c312a7a2", "0.3.2": "83c3c312a7a2", - "0.3.3": "83c3c312a7a2" + "0.3.3": "83c3c312a7a2", + "0.3.4": "83c3c312a7a2" } }, "PerplexityModel": { @@ -2126,7 +2390,8 @@ "0.3.0": "b970844e376e", "0.3.1": "b970844e376e", "0.3.2": "b970844e376e", - "0.3.3": "b970844e376e" + "0.3.3": "b970844e376e", + "0.3.4": "b970844e376e" } }, "pgvector": { @@ -2134,7 +2399,8 @@ "0.3.0": "50117607bf5e", "0.3.1": "50117607bf5e", "0.3.2": "50117607bf5e", - "0.3.3": "50117607bf5e" + "0.3.3": "50117607bf5e", + "0.3.4": "50117607bf5e" } }, "Pinecone": { @@ -2142,7 +2408,8 @@ "0.3.0": "564ca0a0e9ab", "0.3.1": "564ca0a0e9ab", "0.3.2": "564ca0a0e9ab", - "0.3.3": "564ca0a0e9ab" + "0.3.3": "564ca0a0e9ab", + "0.3.4": "564ca0a0e9ab" } }, "AlterMetadata": { @@ -2150,7 +2417,8 @@ "0.3.0": "0b2fe62eaec4", "0.3.1": "0b2fe62eaec4", "0.3.2": "0b2fe62eaec4", - "0.3.3": "0b2fe62eaec4" + "0.3.3": "0b2fe62eaec4", + "0.3.4": "0b2fe62eaec4" } }, "CombineText": { @@ -2158,7 +2426,8 @@ "0.3.0": "10ffb6543dd9", "0.3.1": "10ffb6543dd9", "0.3.2": "10ffb6543dd9", - "0.3.3": "10ffb6543dd9" + "0.3.3": "10ffb6543dd9", + "0.3.4": "10ffb6543dd9" } }, "TypeConverterComponent": { @@ -2166,7 +2435,8 @@ "0.3.0": "be7797f8df1c", "0.3.1": "be7797f8df1c", "0.3.2": "be7797f8df1c", - "0.3.3": "be7797f8df1c" + "0.3.3": "be7797f8df1c", + "0.3.4": "be7797f8df1c" } }, "CreateData": { @@ -2174,7 +2444,8 @@ "0.3.0": "3e313525090d", "0.3.1": "3e313525090d", "0.3.2": "3e313525090d", - "0.3.3": "3e313525090d" + "0.3.3": "3e313525090d", + "0.3.4": "3e313525090d" } }, "CreateList": { @@ -2182,7 +2453,8 @@ "0.3.0": "9ec770d03310", "0.3.1": "9ec770d03310", "0.3.2": "9ec770d03310", - "0.3.3": "9ec770d03310" + "0.3.3": "9ec770d03310", + "0.3.4": "9ec770d03310" } }, "DataOperations": { @@ -2190,7 +2462,8 @@ "0.3.0": "1e5bfda1706b", "0.3.1": "1e5bfda1706b", "0.3.2": "1e5bfda1706b", - "0.3.3": "1e5bfda1706b" + "0.3.3": "1e5bfda1706b", + "0.3.4": "1e5bfda1706b" } }, "DataToDataFrame": { @@ -2198,7 +2471,8 @@ "0.3.0": "57b9f79028e9", "0.3.1": "57b9f79028e9", "0.3.2": "57b9f79028e9", - "0.3.3": "57b9f79028e9" + "0.3.3": "57b9f79028e9", + "0.3.4": "57b9f79028e9" } }, "DataFrameOperations": { @@ -2206,7 +2480,8 @@ "0.3.0": "904f4eaebccd", "0.3.1": "904f4eaebccd", "0.3.2": "904f4eaebccd", - "0.3.3": "904f4eaebccd" + "0.3.3": "904f4eaebccd", + "0.3.4": "904f4eaebccd" } }, "DynamicCreateData": { @@ -2214,7 +2489,8 @@ "0.3.0": "0457c4acdf45", "0.3.1": "0457c4acdf45", "0.3.2": "0457c4acdf45", - "0.3.3": "0457c4acdf45" + "0.3.3": "0457c4acdf45", + "0.3.4": "0457c4acdf45" } }, "ExtractaKey": { @@ -2222,7 +2498,8 @@ "0.3.0": "eded3f4e1533", "0.3.1": "eded3f4e1533", "0.3.2": "eded3f4e1533", - "0.3.3": "eded3f4e1533" + "0.3.3": "eded3f4e1533", + "0.3.4": "eded3f4e1533" } }, "FilterData": { @@ -2230,7 +2507,8 @@ "0.3.0": "04c50937216d", "0.3.1": "04c50937216d", "0.3.2": "04c50937216d", - "0.3.3": "04c50937216d" + "0.3.3": "04c50937216d", + "0.3.4": "04c50937216d" } }, "FilterDataValues": { @@ -2238,7 +2516,8 @@ "0.3.0": "847522549c67", "0.3.1": "847522549c67", "0.3.2": "847522549c67", - "0.3.3": "847522549c67" + "0.3.3": "847522549c67", + "0.3.4": "847522549c67" } }, "JSONCleaner": { @@ -2246,7 +2525,8 @@ "0.3.0": "5c150997aec4", "0.3.1": "5c150997aec4", "0.3.2": "5c150997aec4", - "0.3.3": "5c150997aec4" + "0.3.3": "5c150997aec4", + "0.3.4": "5c150997aec4" } }, "MergeDataComponent": { @@ -2254,7 +2534,8 @@ "0.3.0": "a2ecb813aac5", "0.3.1": "a2ecb813aac5", "0.3.2": "a2ecb813aac5", - "0.3.3": "a2ecb813aac5" + "0.3.3": "a2ecb813aac5", + "0.3.4": "a2ecb813aac5" } }, "MessagetoData": { @@ -2262,7 +2543,8 @@ "0.3.0": "d0af1222aeaf", "0.3.1": "d0af1222aeaf", "0.3.2": "d0af1222aeaf", - "0.3.3": "d0af1222aeaf" + "0.3.3": "d0af1222aeaf", + "0.3.4": "d0af1222aeaf" } }, "OutputParser": { @@ -2270,7 +2552,8 @@ "0.3.0": "9beb62a3e8fb", "0.3.1": "9beb62a3e8fb", "0.3.2": "9beb62a3e8fb", - "0.3.3": "9beb62a3e8fb" + "0.3.3": "9beb62a3e8fb", + "0.3.4": "9beb62a3e8fb" } }, "ParseData": { @@ -2278,7 +2561,8 @@ "0.3.0": "3fac44a9bb37", "0.3.1": "3fac44a9bb37", "0.3.2": "3fac44a9bb37", - "0.3.3": "3fac44a9bb37" + "0.3.3": "3fac44a9bb37", + "0.3.4": "3fac44a9bb37" } }, "ParseDataFrame": { @@ -2286,7 +2570,8 @@ "0.3.0": "9d4b05cf1564", "0.3.1": "9d4b05cf1564", "0.3.2": "9d4b05cf1564", - "0.3.3": "9d4b05cf1564" + "0.3.3": "9d4b05cf1564", + "0.3.4": "9d4b05cf1564" } }, "ParseJSONData": { @@ -2294,7 +2579,8 @@ "0.3.0": "5268ca4c42d6", "0.3.1": "5268ca4c42d6", "0.3.2": "5268ca4c42d6", - "0.3.3": "5268ca4c42d6" + "0.3.3": "5268ca4c42d6", + "0.3.4": "5268ca4c42d6" } }, "ParserComponent": { @@ -2302,7 +2588,8 @@ "0.3.0": "3cda25c3f7b5", "0.3.1": "3cda25c3f7b5", "0.3.2": "3cda25c3f7b5", - "0.3.3": "3cda25c3f7b5" + "0.3.3": "3cda25c3f7b5", + "0.3.4": "3cda25c3f7b5" } }, "RegexExtractorComponent": { @@ -2310,7 +2597,8 @@ "0.3.0": "f67d7bd7f65e", "0.3.1": "f67d7bd7f65e", "0.3.2": "f67d7bd7f65e", - "0.3.3": "f67d7bd7f65e" + "0.3.3": "f67d7bd7f65e", + "0.3.4": "f67d7bd7f65e" } }, "SelectData": { @@ -2318,7 +2606,8 @@ "0.3.0": "0512bd98ce4d", "0.3.1": "0512bd98ce4d", "0.3.2": "0512bd98ce4d", - "0.3.3": "0512bd98ce4d" + "0.3.3": "0512bd98ce4d", + "0.3.4": "0512bd98ce4d" } }, "SplitText": { @@ -2326,7 +2615,8 @@ "0.3.0": "29ae597d2d86", "0.3.1": "29ae597d2d86", "0.3.2": "29ae597d2d86", - "0.3.3": "29ae597d2d86" + "0.3.3": "29ae597d2d86", + "0.3.4": "29ae597d2d86" } }, "StoreMessage": { @@ -2334,7 +2624,8 @@ "0.3.0": "9ad1aa08b597", "0.3.1": "9ad1aa08b597", "0.3.2": "9ad1aa08b597", - "0.3.3": "9ad1aa08b597" + "0.3.3": "9ad1aa08b597", + "0.3.4": "9ad1aa08b597" } }, "TextOperations": { @@ -2342,7 +2633,8 @@ "0.3.0": "2c2991ef0a37", "0.3.1": "2c2991ef0a37", "0.3.2": "2c2991ef0a37", - "0.3.3": "2c2991ef0a37" + "0.3.3": "2c2991ef0a37", + "0.3.4": "2c2991ef0a37" } }, "UpdateData": { @@ -2350,7 +2642,8 @@ "0.3.0": "d0790af3ac9b", "0.3.1": "d0790af3ac9b", "0.3.2": "d0790af3ac9b", - "0.3.3": "d0790af3ac9b" + "0.3.3": "d0790af3ac9b", + "0.3.4": "d0790af3ac9b" } }, "PythonFunction": { @@ -2358,7 +2651,8 @@ "0.3.0": "7da7d856a545", "0.3.1": "7da7d856a545", "0.3.2": "7da7d856a545", - "0.3.3": "7da7d856a545" + "0.3.3": "7da7d856a545", + "0.3.4": "7da7d856a545" } }, "QdrantVectorStoreComponent": { @@ -2366,7 +2660,8 @@ "0.3.0": "bcfc1728e7b1", "0.3.1": "bcfc1728e7b1", "0.3.2": "bcfc1728e7b1", - "0.3.3": "bcfc1728e7b1" + "0.3.3": "bcfc1728e7b1", + "0.3.4": "bcfc1728e7b1" } }, "Redis": { @@ -2374,7 +2669,8 @@ "0.3.0": "fec4041f4017", "0.3.1": "fec4041f4017", "0.3.2": "fec4041f4017", - "0.3.3": "fec4041f4017" + "0.3.3": "fec4041f4017", + "0.3.4": "fec4041f4017" } }, "RedisChatMemory": { @@ -2382,7 +2678,8 @@ "0.3.0": "01ec6e1e34a8", "0.3.1": "01ec6e1e34a8", "0.3.2": "01ec6e1e34a8", - "0.3.3": "01ec6e1e34a8" + "0.3.3": "01ec6e1e34a8", + "0.3.4": "01ec6e1e34a8" } }, "SambaNovaModel": { @@ -2390,7 +2687,8 @@ "0.3.0": "f12728900b8d", "0.3.1": "f12728900b8d", "0.3.2": "f12728900b8d", - "0.3.3": "f12728900b8d" + "0.3.3": "f12728900b8d", + "0.3.4": "f12728900b8d" } }, "ScrapeGraphMarkdownifyApi": { @@ -2398,7 +2696,8 @@ "0.3.0": "0f5f12091af6", "0.3.1": "0f5f12091af6", "0.3.2": "0f5f12091af6", - "0.3.3": "0f5f12091af6" + "0.3.3": "0f5f12091af6", + "0.3.4": "0f5f12091af6" } }, "ScrapeGraphSearchApi": { @@ -2406,7 +2705,8 @@ "0.3.0": "002d2af653ef", "0.3.1": "002d2af653ef", "0.3.2": "002d2af653ef", - "0.3.3": "002d2af653ef" + "0.3.3": "002d2af653ef", + "0.3.4": "002d2af653ef" } }, "ScrapeGraphSmartScraperApi": { @@ -2414,7 +2714,8 @@ "0.3.0": "cb419bec02ed", "0.3.1": "cb419bec02ed", "0.3.2": "cb419bec02ed", - "0.3.3": "cb419bec02ed" + "0.3.3": "cb419bec02ed", + "0.3.4": "cb419bec02ed" } }, "SearchComponent": { @@ -2422,7 +2723,8 @@ "0.3.0": "625d1f5b3290", "0.3.1": "625d1f5b3290", "0.3.2": "625d1f5b3290", - "0.3.3": "625d1f5b3290" + "0.3.3": "625d1f5b3290", + "0.3.4": "625d1f5b3290" } }, "Serp": { @@ -2430,7 +2732,8 @@ "0.3.0": "dcc2ecb44ff6", "0.3.1": "dcc2ecb44ff6", "0.3.2": "dcc2ecb44ff6", - "0.3.3": "dcc2ecb44ff6" + "0.3.3": "dcc2ecb44ff6", + "0.3.4": "dcc2ecb44ff6" } }, "SupabaseVectorStore": { @@ -2438,7 +2741,8 @@ "0.3.0": "5045b81c340b", "0.3.1": "5045b81c340b", "0.3.2": "5045b81c340b", - "0.3.3": "5045b81c340b" + "0.3.3": "5045b81c340b", + "0.3.4": "5045b81c340b" } }, "TavilyExtractComponent": { @@ -2446,7 +2750,8 @@ "0.3.0": "fec95e2181d8", "0.3.1": "fec95e2181d8", "0.3.2": "fec95e2181d8", - "0.3.3": "fec95e2181d8" + "0.3.3": "fec95e2181d8", + "0.3.4": "fec95e2181d8" } }, "TavilySearchComponent": { @@ -2454,7 +2759,8 @@ "0.3.0": "e602eaec8316", "0.3.1": "e602eaec8316", "0.3.2": "e602eaec8316", - "0.3.3": "e602eaec8316" + "0.3.3": "e602eaec8316", + "0.3.4": "e602eaec8316" } }, "CalculatorTool": { @@ -2462,7 +2768,8 @@ "0.3.0": "30008a17eb27", "0.3.1": "30008a17eb27", "0.3.2": "30008a17eb27", - "0.3.3": "30008a17eb27" + "0.3.3": "30008a17eb27", + "0.3.4": "30008a17eb27" } }, "GoogleSearchAPI": { @@ -2470,7 +2777,8 @@ "0.3.0": "5f47bcd2163c", "0.3.1": "5f47bcd2163c", "0.3.2": "5f47bcd2163c", - "0.3.3": "5f47bcd2163c" + "0.3.3": "5f47bcd2163c", + "0.3.4": "5f47bcd2163c" } }, "GoogleSerperAPI": { @@ -2478,7 +2786,8 @@ "0.3.0": "f51b15d26440", "0.3.1": "f51b15d26440", "0.3.2": "f51b15d26440", - "0.3.3": "f51b15d26440" + "0.3.3": "f51b15d26440", + "0.3.4": "f51b15d26440" } }, "PythonCodeStructuredTool": { @@ -2486,7 +2795,8 @@ "0.3.0": "99f294af525b", "0.3.1": "99f294af525b", "0.3.2": "99f294af525b", - "0.3.3": "99f294af525b" + "0.3.3": "99f294af525b", + "0.3.4": "99f294af525b" } }, "PythonREPLTool": { @@ -2494,7 +2804,8 @@ "0.3.0": "695ab612478d", "0.3.1": "695ab612478d", "0.3.2": "695ab612478d", - "0.3.3": "695ab612478d" + "0.3.3": "695ab612478d", + "0.3.4": "695ab612478d" } }, "SearchAPI": { @@ -2502,7 +2813,8 @@ "0.3.0": "4a9c8b914b68", "0.3.1": "4a9c8b914b68", "0.3.2": "4a9c8b914b68", - "0.3.3": "4a9c8b914b68" + "0.3.3": "4a9c8b914b68", + "0.3.4": "4a9c8b914b68" } }, "SearXNGTool": { @@ -2510,7 +2822,8 @@ "0.3.0": "154e292dad2b", "0.3.1": "154e292dad2b", "0.3.2": "154e292dad2b", - "0.3.3": "154e292dad2b" + "0.3.3": "154e292dad2b", + "0.3.4": "154e292dad2b" } }, "SerpAPI": { @@ -2518,7 +2831,8 @@ "0.3.0": "882d7b35a9d7", "0.3.1": "882d7b35a9d7", "0.3.2": "882d7b35a9d7", - "0.3.3": "882d7b35a9d7" + "0.3.3": "882d7b35a9d7", + "0.3.4": "882d7b35a9d7" } }, "TavilyAISearch": { @@ -2526,7 +2840,8 @@ "0.3.0": "70b5611e8fd6", "0.3.1": "70b5611e8fd6", "0.3.2": "70b5611e8fd6", - "0.3.3": "70b5611e8fd6" + "0.3.3": "70b5611e8fd6", + "0.3.4": "70b5611e8fd6" } }, "WikidataAPI": { @@ -2534,7 +2849,8 @@ "0.3.0": "4752066f8971", "0.3.1": "4752066f8971", "0.3.2": "4752066f8971", - "0.3.3": "4752066f8971" + "0.3.3": "4752066f8971", + "0.3.4": "4752066f8971" } }, "WikipediaAPI": { @@ -2542,7 +2858,8 @@ "0.3.0": "d7ae953444c9", "0.3.1": "d7ae953444c9", "0.3.2": "d7ae953444c9", - "0.3.3": "d7ae953444c9" + "0.3.3": "d7ae953444c9", + "0.3.4": "d7ae953444c9" } }, "YahooFinanceTool": { @@ -2550,7 +2867,8 @@ "0.3.0": "fda358f6395e", "0.3.1": "fda358f6395e", "0.3.2": "fda358f6395e", - "0.3.3": "fda358f6395e" + "0.3.3": "fda358f6395e", + "0.3.4": "fda358f6395e" } }, "ConvertAstraToTwelveLabs": { @@ -2558,7 +2876,8 @@ "0.3.0": "90ad7b9b59eb", "0.3.1": "90ad7b9b59eb", "0.3.2": "90ad7b9b59eb", - "0.3.3": "90ad7b9b59eb" + "0.3.3": "90ad7b9b59eb", + "0.3.4": "90ad7b9b59eb" } }, "TwelveLabsPegasusIndexVideo": { @@ -2566,7 +2885,8 @@ "0.3.0": "a2c0865be096", "0.3.1": "a2c0865be096", "0.3.2": "a2c0865be096", - "0.3.3": "a2c0865be096" + "0.3.3": "a2c0865be096", + "0.3.4": "a2c0865be096" } }, "SplitVideo": { @@ -2574,7 +2894,8 @@ "0.3.0": "4d3a4a724aa5", "0.3.1": "4d3a4a724aa5", "0.3.2": "4d3a4a724aa5", - "0.3.3": "4d3a4a724aa5" + "0.3.3": "4d3a4a724aa5", + "0.3.4": "4d3a4a724aa5" } }, "TwelveLabsTextEmbeddings": { @@ -2582,7 +2903,8 @@ "0.3.0": "5c7501f5088c", "0.3.1": "5c7501f5088c", "0.3.2": "5c7501f5088c", - "0.3.3": "5c7501f5088c" + "0.3.3": "5c7501f5088c", + "0.3.4": "5c7501f5088c" } }, "TwelveLabsPegasus": { @@ -2590,7 +2912,8 @@ "0.3.0": "92cc032822a6", "0.3.1": "92cc032822a6", "0.3.2": "92cc032822a6", - "0.3.3": "92cc032822a6" + "0.3.3": "92cc032822a6", + "0.3.4": "92cc032822a6" } }, "TwelveLabsVideoEmbeddings": { @@ -2598,7 +2921,8 @@ "0.3.0": "294e3539629c", "0.3.1": "294e3539629c", "0.3.2": "294e3539629c", - "0.3.3": "294e3539629c" + "0.3.3": "294e3539629c", + "0.3.4": "294e3539629c" } }, "VideoFile": { @@ -2606,7 +2930,8 @@ "0.3.0": "8dc827e42377", "0.3.1": "8dc827e42377", "0.3.2": "8dc827e42377", - "0.3.3": "8dc827e42377" + "0.3.3": "8dc827e42377", + "0.3.4": "8dc827e42377" } }, "Unstructured": { @@ -2614,7 +2939,8 @@ "0.3.0": "bbb4e71aee8e", "0.3.1": "bbb4e71aee8e", "0.3.2": "bbb4e71aee8e", - "0.3.3": "bbb4e71aee8e" + "0.3.3": "bbb4e71aee8e", + "0.3.4": "bbb4e71aee8e" } }, "Upstash": { @@ -2622,7 +2948,8 @@ "0.3.0": "b5b2d78e8c44", "0.3.1": "b5b2d78e8c44", "0.3.2": "b5b2d78e8c44", - "0.3.3": "b5b2d78e8c44" + "0.3.3": "b5b2d78e8c44", + "0.3.4": "b5b2d78e8c44" } }, "CalculatorComponent": { @@ -2630,7 +2957,8 @@ "0.3.0": "acbe2603b034", "0.3.1": "acbe2603b034", "0.3.2": "acbe2603b034", - "0.3.3": "acbe2603b034" + "0.3.3": "acbe2603b034", + "0.3.4": "acbe2603b034" } }, "CurrentDate": { @@ -2638,7 +2966,8 @@ "0.3.0": "4a93d7b489e6", "0.3.1": "4a93d7b489e6", "0.3.2": "4a93d7b489e6", - "0.3.3": "4a93d7b489e6" + "0.3.3": "4a93d7b489e6", + "0.3.4": "4a93d7b489e6" } }, "IDGenerator": { @@ -2646,7 +2975,8 @@ "0.3.0": "cddb8b4edbc3", "0.3.1": "cddb8b4edbc3", "0.3.2": "cddb8b4edbc3", - "0.3.3": "cddb8b4edbc3" + "0.3.3": "cddb8b4edbc3", + "0.3.4": "cddb8b4edbc3" } }, "PythonREPLComponent": { @@ -2654,7 +2984,8 @@ "0.3.0": "80eeaf032b83", "0.3.1": "80eeaf032b83", "0.3.2": "80eeaf032b83", - "0.3.3": "80eeaf032b83" + "0.3.3": "80eeaf032b83", + "0.3.4": "80eeaf032b83" } }, "Vectara": { @@ -2662,7 +2993,8 @@ "0.3.0": "a2309e046c06", "0.3.1": "a2309e046c06", "0.3.2": "a2309e046c06", - "0.3.3": "a2309e046c06" + "0.3.3": "a2309e046c06", + "0.3.4": "a2309e046c06" } }, "VectaraRAG": { @@ -2670,7 +3002,8 @@ "0.3.0": "123c9eef9191", "0.3.1": "123c9eef9191", "0.3.2": "123c9eef9191", - "0.3.3": "123c9eef9191" + "0.3.3": "123c9eef9191", + "0.3.4": "123c9eef9191" } }, "LocalDB": { @@ -2678,7 +3011,8 @@ "0.3.0": "767988a11f4a", "0.3.1": "767988a11f4a", "0.3.2": "767988a11f4a", - "0.3.3": "767988a11f4a" + "0.3.3": "767988a11f4a", + "0.3.4": "767988a11f4a" } }, "VertexAiModel": { @@ -2686,7 +3020,8 @@ "0.3.0": "d9f75281d3fa", "0.3.1": "d9f75281d3fa", "0.3.2": "d9f75281d3fa", - "0.3.3": "d9f75281d3fa" + "0.3.3": "d9f75281d3fa", + "0.3.4": "d9f75281d3fa" } }, "VertexAIEmbeddings": { @@ -2694,7 +3029,8 @@ "0.3.0": "3abd5c15264a", "0.3.1": "3abd5c15264a", "0.3.2": "3abd5c15264a", - "0.3.3": "3abd5c15264a" + "0.3.3": "3abd5c15264a", + "0.3.4": "3abd5c15264a" } }, "vLLMModel": { @@ -2702,7 +3038,8 @@ "0.3.0": "ed6c1aa73200", "0.3.1": "ed6c1aa73200", "0.3.2": "ed6c1aa73200", - "0.3.3": "ed6c1aa73200" + "0.3.3": "ed6c1aa73200", + "0.3.4": "ed6c1aa73200" } }, "vLLMEmbeddings": { @@ -2710,7 +3047,8 @@ "0.3.0": "079b6a2dd397", "0.3.1": "079b6a2dd397", "0.3.2": "079b6a2dd397", - "0.3.3": "079b6a2dd397" + "0.3.3": "079b6a2dd397", + "0.3.4": "079b6a2dd397" } }, "VLMRunTranscription": { @@ -2718,7 +3056,8 @@ "0.3.0": "c91e2349a3df", "0.3.1": "c91e2349a3df", "0.3.2": "c91e2349a3df", - "0.3.3": "c91e2349a3df" + "0.3.3": "c91e2349a3df", + "0.3.4": "c91e2349a3df" } }, "Weaviate": { @@ -2726,7 +3065,8 @@ "0.3.0": "ccc9f1e0149d", "0.3.1": "ccc9f1e0149d", "0.3.2": "ccc9f1e0149d", - "0.3.3": "ccc9f1e0149d" + "0.3.3": "ccc9f1e0149d", + "0.3.4": "ccc9f1e0149d" } }, "WikidataComponent": { @@ -2734,7 +3074,8 @@ "0.3.0": "59df9d399440", "0.3.1": "59df9d399440", "0.3.2": "59df9d399440", - "0.3.3": "59df9d399440" + "0.3.3": "59df9d399440", + "0.3.4": "59df9d399440" } }, "WikipediaComponent": { @@ -2742,7 +3083,8 @@ "0.3.0": "cc13e26c79c4", "0.3.1": "cc13e26c79c4", "0.3.2": "cc13e26c79c4", - "0.3.3": "cc13e26c79c4" + "0.3.3": "cc13e26c79c4", + "0.3.4": "cc13e26c79c4" } }, "WolframAlphaAPI": { @@ -2750,7 +3092,8 @@ "0.3.0": "86caf22224ad", "0.3.1": "86caf22224ad", "0.3.2": "86caf22224ad", - "0.3.3": "86caf22224ad" + "0.3.3": "86caf22224ad", + "0.3.4": "86caf22224ad" } }, "xAIModel": { @@ -2758,7 +3101,8 @@ "0.3.0": "ef0eb1cfadeb", "0.3.1": "ef0eb1cfadeb", "0.3.2": "ef0eb1cfadeb", - "0.3.3": "ef0eb1cfadeb" + "0.3.3": "ef0eb1cfadeb", + "0.3.4": "ef0eb1cfadeb" } }, "YfinanceComponent": { @@ -2766,7 +3110,8 @@ "0.3.0": "d6bf628ab821", "0.3.1": "d6bf628ab821", "0.3.2": "d6bf628ab821", - "0.3.3": "d6bf628ab821" + "0.3.3": "d6bf628ab821", + "0.3.4": "d6bf628ab821" } }, "YouTubeChannelComponent": { @@ -2774,7 +3119,8 @@ "0.3.0": "c889afb883fa", "0.3.1": "c889afb883fa", "0.3.2": "c889afb883fa", - "0.3.3": "c889afb883fa" + "0.3.3": "c889afb883fa", + "0.3.4": "c889afb883fa" } }, "YouTubeCommentsComponent": { @@ -2782,7 +3128,8 @@ "0.3.0": "20398e0d18df", "0.3.1": "20398e0d18df", "0.3.2": "20398e0d18df", - "0.3.3": "20398e0d18df" + "0.3.3": "20398e0d18df", + "0.3.4": "20398e0d18df" } }, "YouTubePlaylistComponent": { @@ -2790,7 +3137,8 @@ "0.3.0": "2d6ac9665d53", "0.3.1": "2d6ac9665d53", "0.3.2": "2d6ac9665d53", - "0.3.3": "2d6ac9665d53" + "0.3.3": "2d6ac9665d53", + "0.3.4": "2d6ac9665d53" } }, "YouTubeSearchComponent": { @@ -2798,7 +3146,8 @@ "0.3.0": "1c4a94a094e2", "0.3.1": "1c4a94a094e2", "0.3.2": "1c4a94a094e2", - "0.3.3": "1c4a94a094e2" + "0.3.3": "1c4a94a094e2", + "0.3.4": "1c4a94a094e2" } }, "YouTubeTrendingComponent": { @@ -2806,7 +3155,8 @@ "0.3.0": "1450a5529486", "0.3.1": "1450a5529486", "0.3.2": "1450a5529486", - "0.3.3": "1450a5529486" + "0.3.3": "1450a5529486", + "0.3.4": "1450a5529486" } }, "YouTubeVideoDetailsComponent": { @@ -2814,7 +3164,8 @@ "0.3.0": "6c2be0d5450b", "0.3.1": "6c2be0d5450b", "0.3.2": "6c2be0d5450b", - "0.3.3": "6c2be0d5450b" + "0.3.3": "6c2be0d5450b", + "0.3.4": "6c2be0d5450b" } }, "YouTubeTranscripts": { @@ -2822,7 +3173,8 @@ "0.3.0": "0ed75539d58d", "0.3.1": "0ed75539d58d", "0.3.2": "0ed75539d58d", - "0.3.3": "0ed75539d58d" + "0.3.3": "0ed75539d58d", + "0.3.4": "0ed75539d58d" } }, "ZepChatMemory": { @@ -2830,7 +3182,8 @@ "0.3.0": "ec825c33caf6", "0.3.1": "ec825c33caf6", "0.3.2": "ec825c33caf6", - "0.3.3": "ec825c33caf6" + "0.3.3": "ec825c33caf6", + "0.3.4": "ec825c33caf6" } }, "GuardrailValidator": { @@ -2838,7 +3191,8 @@ "0.3.0": "70918cbb8522", "0.3.1": "70918cbb8522", "0.3.2": "70918cbb8522", - "0.3.3": "70918cbb8522" + "0.3.3": "70918cbb8522", + "0.3.4": "70918cbb8522" } }, "LiteLLMProxyModel": { @@ -2846,7 +3200,8 @@ "0.3.0": "386ae52865b5", "0.3.1": "386ae52865b5", "0.3.2": "386ae52865b5", - "0.3.3": "386ae52865b5" + "0.3.3": "386ae52865b5", + "0.3.4": "386ae52865b5" } }, "SemanticAggregator": { @@ -2854,7 +3209,8 @@ "0.3.0": "4e631c501d33", "0.3.1": "4e631c501d33", "0.3.2": "4e631c501d33", - "0.3.3": "4e631c501d33" + "0.3.3": "4e631c501d33", + "0.3.4": "4e631c501d33" } }, "SemanticMap": { @@ -2862,7 +3218,8 @@ "0.3.0": "9fe34c926467", "0.3.1": "9fe34c926467", "0.3.2": "9fe34c926467", - "0.3.3": "9fe34c926467" + "0.3.3": "9fe34c926467", + "0.3.4": "9fe34c926467" } }, "SyntheticDataGenerator": { @@ -2870,7 +3227,8 @@ "0.3.0": "efd180878996", "0.3.1": "efd180878996", "0.3.2": "efd180878996", - "0.3.3": "efd180878996" + "0.3.3": "efd180878996", + "0.3.4": "efd180878996" } }, "KnowledgeBase": { @@ -2878,7 +3236,8 @@ "0.3.0": "8b5ca1f38f6e", "0.3.1": "8b5ca1f38f6e", "0.3.2": "8b5ca1f38f6e", - "0.3.3": "8b5ca1f38f6e" + "0.3.3": "8b5ca1f38f6e", + "0.3.4": "8b5ca1f38f6e" } } } \ No newline at end of file