Write text content to an existing file and refresh semantics/vectors.
(
self,
uri: str,
content: str,
mode: str = "replace",
wait: bool = False,
timeout: Optional[float] = None,
telemetry: TelemetryRequest = False,
)
| 225 | |
| 226 | @abstractmethod |
| 227 | async def write( |
| 228 | self, |
| 229 | uri: str, |
| 230 | content: str, |
| 231 | mode: str = "replace", |
| 232 | wait: bool = False, |
| 233 | timeout: Optional[float] = None, |
| 234 | telemetry: TelemetryRequest = False, |
| 235 | ) -> Dict[str, Any]: |
| 236 | """Write text content to an existing file and refresh semantics/vectors.""" |
| 237 | ... |
| 238 | |
| 239 | @abstractmethod |
| 240 | async def set_tags( |
no outgoing calls
no test coverage detected