repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Mirrored from https://github.com/yingqi-z20/Agent-libOS
stars
latest
clone command
git clone gitlawb://did:key:z6MkqRzA...RfoM/yingqi-z20-Agen...git clone gitlawb://did:key:z6MkqRzA.../yingqi-z20-Agen...d98dd2c9IPC1d ago| #1 | from __future__ import annotations |
| #2 | |
| #3 | from agent_libos.models.audit import AuditRecord |
| #4 | from agent_libos.models.base import ( |
| #5 | AuditID, |
| #6 | CapabilityID, |
| #7 | CheckpointID, |
| #8 | EventID, |
| #9 | HumanRequestID, |
| #10 | MemoryViewID, |
| #11 | NamespaceID, |
| #12 | OID, |
| #13 | PID, |
| #14 | ProcessMessageID, |
| #15 | SnapshotID, |
| #16 | StrEnum, |
| #17 | ToolID, |
| #18 | ) |
| #19 | from agent_libos.models.capability import Capability, CapabilityRight |
| #20 | from agent_libos.models.checkpoint import Checkpoint |
| #21 | from agent_libos.models.events import Event, EventPriority, EventType |
| #22 | from agent_libos.models.human import HumanRequest, HumanRequestStatus |
| #23 | from agent_libos.models.llm import LLMCallRecord |
| #24 | from agent_libos.models.memory import ( |
| #25 | AgentObject, |
| #26 | MaterializedContext, |
| #27 | MemoryView, |
| #28 | MemoryViewSpec, |
| #29 | MergePolicy, |
| #30 | MergeResult, |
| #31 | ObjectFilter, |
| #32 | ObjectHandle, |
| #33 | ObjectLink, |
| #34 | ObjectMetadata, |
| #35 | ObjectNamespace, |
| #36 | ObjectPatch, |
| #37 | ObjectQuery, |
| #38 | ObjectRight, |
| #39 | ObjectType, |
| #40 | Provenance, |
| #41 | RelationType, |
| #42 | ViewMode, |
| #43 | ) |
| #44 | from agent_libos.models.messages import ProcessMessage, ProcessMessageKind, ProcessMessageStatus |
| #45 | from agent_libos.models.policy import PolicyDecision |
| #46 | from agent_libos.models.process import ( |
| #47 | AgentImage, |
| #48 | AgentProcess, |
| #49 | ForkMode, |
| #50 | ProcessResult, |
| #51 | ProcessSignal, |
| #52 | ProcessStatus, |
| #53 | ResourceBudget, |
| #54 | ) |
| #55 | from agent_libos.models.tools import ( |
| #56 | ToolCallResult, |
| #57 | ToolCandidate, |
| #58 | ToolCandidateStatus, |
| #59 | ToolHandle, |
| #60 | ToolSpec, |
| #61 | ValidationResult, |
| #62 | ) |
| #63 | |
| #64 | __all__ = [ |
| #65 | "AgentImage", |
| #66 | "AgentObject", |
| #67 | "AgentProcess", |
| #68 | "AuditID", |
| #69 | "AuditRecord", |
| #70 | "Capability", |
| #71 | "CapabilityID", |
| #72 | "CapabilityRight", |
| #73 | "Checkpoint", |
| #74 | "CheckpointID", |
| #75 | "Event", |
| #76 | "EventID", |
| #77 | "EventPriority", |
| #78 | "EventType", |
| #79 | "ForkMode", |
| #80 | "HumanRequest", |
| #81 | "HumanRequestID", |
| #82 | "HumanRequestStatus", |
| #83 | "LLMCallRecord", |
| #84 | "MaterializedContext", |
| #85 | "MemoryView", |
| #86 | "MemoryViewID", |
| #87 | "MemoryViewSpec", |
| #88 | "MergePolicy", |
| #89 | "MergeResult", |
| #90 | "NamespaceID", |
| #91 | "OID", |
| #92 | "ObjectFilter", |
| #93 | "ObjectHandle", |
| #94 | "ObjectLink", |
| #95 | "ObjectMetadata", |
| #96 | "ObjectNamespace", |
| #97 | "ObjectPatch", |
| #98 | "ObjectQuery", |
| #99 | "ObjectRight", |
| #100 | "ObjectType", |
| #101 | "PID", |
| #102 | "PolicyDecision", |
| #103 | "ProcessMessage", |
| #104 | "ProcessMessageID", |
| #105 | "ProcessMessageKind", |
| #106 | "ProcessMessageStatus", |
| #107 | "ProcessResult", |
| #108 | "ProcessSignal", |
| #109 | "ProcessStatus", |
| #110 | "Provenance", |
| #111 | "RelationType", |
| #112 | "ResourceBudget", |
| #113 | "SnapshotID", |
| #114 | "StrEnum", |
| #115 | "ToolCallResult", |
| #116 | "ToolCandidate", |
| #117 | "ToolCandidateStatus", |
| #118 | "ToolHandle", |
| #119 | "ToolID", |
| #120 | "ToolSpec", |
| #121 | "ValidationResult", |
| #122 | "ViewMode", |
| #123 | ] |
| #124 |