Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
omni-code / __init__.py
Size: Mime:
from omniagents.builtin.tools import (
    web_fetch,
    youtube_search,
    web_search,
    scholar_search,
    download_file,
    execute_bash,
    glob_files,
    grep_files,
    list_directory,
    read_file,
    edit_file,
    write_file,
    apply_patch,
)
from .conversion_tools import convert_to_markdown
from .slash_command import dispatch

__all__ = [
    'web_fetch',
    'web_search',
    'youtube_search',
    'scholar_search',
    'convert_to_markdown',
    'download_file',
    'execute_bash',
    'glob_files',
    'grep_files',
    'list_directory',
    'read_file',
    'edit_file',
    'write_file',
    'apply_patch',
    'dispatch',
]