Skip to content

Commit 5e8c8e0

Browse files
mjnoviceclaude
andcommitted
chore: remove unused EpisodicMemoryField and EpisodicMemoryStatus
EpisodicMemoryField was for ECS ingest (removed). EpisodicMemoryStatus is not referenced by any service method or model. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8bdf090 commit 5e8c8e0

2 files changed

Lines changed: 0 additions & 20 deletions

File tree

packages/uipath-platform/src/uipath/platform/memory/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
from .memory import (
55
CachedRecall,
66
EpisodicMemoryCreateRequest,
7-
EpisodicMemoryField,
87
EpisodicMemoryIndex,
98
EpisodicMemoryListResponse,
10-
EpisodicMemoryStatus,
119
EscalationMemoryIngestRequest,
1210
EscalationMemoryMatch,
1311
EscalationMemorySearchResponse,
@@ -24,10 +22,8 @@
2422
__all__ = [
2523
"CachedRecall",
2624
"EpisodicMemoryCreateRequest",
27-
"EpisodicMemoryField",
2825
"EpisodicMemoryIndex",
2926
"EpisodicMemoryListResponse",
30-
"EpisodicMemoryStatus",
3127
"EscalationMemoryIngestRequest",
3228
"EscalationMemoryMatch",
3329
"EscalationMemorySearchResponse",

packages/uipath-platform/src/uipath/platform/memory/memory.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,9 @@ class SearchMode(str, Enum):
2020
Semantic = "Semantic"
2121

2222

23-
class EpisodicMemoryStatus(str, Enum):
24-
"""Status of an individual memory record (ECS)."""
25-
26-
active = "active"
27-
inactive = "inactive"
28-
29-
3023
# ── Shared field models (used by both ECS and LLMOps) ─────────────────
3124

3225

33-
class EpisodicMemoryField(BaseModel):
34-
"""A field with a key path and value, used in ECS ingest requests."""
35-
36-
model_config = ConfigDict(populate_by_name=True)
37-
38-
key_path: List[str] = Field(..., alias="keyPath", min_length=1)
39-
value: str = Field(..., alias="value", min_length=1)
40-
41-
4226
class FieldSettings(BaseModel):
4327
"""Per-field search settings (optional overrides)."""
4428

0 commit comments

Comments
 (0)