Read file content (L2). Args: uri: Viking URI offset: Starting line number (0-indexed). Default 0. limit: Number of lines to read. -1 means read to end. Default -1.
(self, uri: str, offset: int = 0, limit: int = -1)
| 204 | |
| 205 | @abstractmethod |
| 206 | async def read(self, uri: str, offset: int = 0, limit: int = -1) -> str: |
| 207 | """Read file content (L2). |
| 208 | |
| 209 | Args: |
| 210 | uri: Viking URI |
| 211 | offset: Starting line number (0-indexed). Default 0. |
| 212 | limit: Number of lines to read. -1 means read to end. Default -1. |
| 213 | """ |
| 214 | ... |
| 215 | |
| 216 | @abstractmethod |
| 217 | async def abstract(self, uri: str) -> str: |
no outgoing calls
no test coverage detected