Spaces:
Paused
Paused
File size: 1,066 Bytes
9792ea7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | # -*- coding: utf-8 -*-
"""The offload protocol."""
from typing import Protocol
from ..message import Msg, ToolResultBlock
class Offloader(Protocol):
"""The offloader protocol."""
async def offload_context(
self,
session_id: str,
msgs: list[Msg],
) -> str:
"""Offload compressed context to workspace-accessible storage.
Args:
session_id (`str`):
The session id.
msgs (`list[Msg]`):
The messages to offload.
Returns:
`str`:
The offloaded context reference.
"""
async def offload_tool_result(
self,
session_id: str,
tool_result: ToolResultBlock,
) -> str:
"""Offload a tool result to workspace-accessible storage.
Args:
session_id (`str`):
The session id.
tool_result (`ToolResultBlock`):
The tool result.
Returns:
`str`:
The offloaded context reference.
"""
|