Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/uipath-platform/src/uipath/platform/_uipath.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from .entities import EntitiesService
from .errors import BaseUrlMissingError, SecretMissingError
from .guardrails import GuardrailsService
from .memory import MemoryService
from .orchestrator import (
AssetsService,
AttachmentsService,
Expand Down Expand Up @@ -113,6 +114,10 @@ def context_grounding(self) -> ContextGroundingService:
self.buckets,
)

@property
def memory(self) -> MemoryService:
return MemoryService(self._config, self._execution_context)

@property
def documents(self) -> DocumentsService:
return DocumentsService(self._config, self._execution_context)
Expand Down
25 changes: 25 additions & 0 deletions packages/uipath-platform/src/uipath/platform/memory/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"""Init file for memory module."""

from ._memory_service import MemoryService
from .memory import (
MemoryField,
MemoryIngestRequest,
MemoryItem,
MemoryListResponse,
MemoryQueryRequest,
MemoryQueryResponse,
MemoryQueryResult,
MemoryResource,
)

__all__ = [
"MemoryField",
"MemoryIngestRequest",
"MemoryItem",
"MemoryListResponse",
"MemoryQueryRequest",
"MemoryQueryResponse",
"MemoryQueryResult",
"MemoryResource",
"MemoryService",
]
Loading
Loading