mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
19 lines
556 B
Python
19 lines
556 B
Python
"""Working operations package for ReMe retrieve framework.
|
|
|
|
This package provides working/file-related operations that can be used in LLM-powered
|
|
flows. It currently includes ready-to-use operations for:
|
|
|
|
- BatchWriteFileOp: Batch write multiple files operation
|
|
- GrepOp: Text search operation for finding patterns in files
|
|
- ReadFileOp: Read single file operation
|
|
"""
|
|
|
|
from .batch_write_file_op import BatchWriteFileOp
|
|
from .grep_op import GrepOp
|
|
from .read_file_op import ReadFileOp
|
|
|
|
__all__ = [
|
|
"BatchWriteFileOp",
|
|
"GrepOp",
|
|
"ReadFileOp",
|
|
]
|