awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 रिपॉजिटरी

Awesome GitHub RepositoriesWebAssembly Function Callings

Calls WebAssembly functions from host code using bindgen annotations for automatic parameter marshalling.

Distinct from Function Calling Interfaces: Distinct from Function Calling Interfaces: focuses on calling WebAssembly functions from host code, not AI model tool invocation.

Explore 5 awesome GitHub repositories matching artificial intelligence & ml · WebAssembly Function Callings. Refine with filters or upvote what's useful.

Awesome WebAssembly Function Callings GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • wasmedge/wasmedgeWasmEdge का अवतार

    WasmEdge/WasmEdge

    10,665GitHub पर देखें↗

    WasmEdge is an extensible WebAssembly runtime that executes WebAssembly bytecode in a secure sandbox for cloud, edge, and embedded applications. It functions as a multi-language compiler, compiling applications written in Rust, JavaScript, Go, and Python into WebAssembly bytecode for sandboxed execution, and as a server-side JavaScript runtime that runs JavaScript programs with ES6 modules, NPM packages, and Node.js-compatible APIs. The runtime also serves as an AI inference runtime, executing AI models from JavaScript using WASI-NN plug-ins for inference tasks on personal devices and edge har

    Calls WebAssembly functions annotated with bindgen to pass complex parameters automatically from Go code.

    C++artificial-intelligencecloudcloud-native
    GitHub पर देखें↗10,665
  • wasm3/wasm3wasm3 का अवतार

    wasm3/wasm3

    7,936GitHub पर देखें↗

    Wasm3 is a WebAssembly interpreter designed for embedded runtime integration. It enables the execution of portable binary logic on microcontrollers and resource-constrained hardware, providing support for modules that utilize the WebAssembly System Interface to interact with system resources. The runtime employs register-based bytecode interpretation and direct-threaded dispatch to map virtual registers to physical CPU registers. It includes a host-call interface to map imports to C functions and utilizes static module validation to ensure bytecode follows specification rules before execution

    Maps WebAssembly imports to C functions to allow guest modules to interact with the host system.

    C
    GitHub पर देखें↗7,936
  • microsoft/detoursmicrosoft का अवतार

    microsoft/Detours

    6,303GitHub पर देखें↗

    Detours is a library for intercepting Win32 API calls and redirecting function calls at runtime on Windows, enabling binary-level instrumentation without requiring access to the original source code. It functions as an API hooking library and binary instrumentation toolkit, allowing developers to monitor or modify the behavior of compiled Windows binaries by hooking into their function execution paths. The project achieves this through detour-based function interception, where the first few instructions of a target function are replaced with a jump to a user-supplied detour function, while pr

    Routes calls from one function to a custom replacement, enabling instrumentation or extension of existing APIs.

    C++hacktoberfestmicrosoft
    GitHub पर देखें↗6,303
  • extism/extismextism का अवतार

    extism/extism

    5,657GitHub पर देखें↗

    Extism is a cross-language WebAssembly plugin framework that lets applications written in any programming language load and execute plugins written in any other language. It provides a universal plugin system where host applications use idiomatic SDKs to load WebAssembly modules, call exported functions, and pass data back and forth, while plugin authors use development kits that handle memory management and host interaction so they can focus on business logic. The framework distinguishes itself through its comprehensive approach to cross-language integration, offering schema-driven binding g

    Calls named functions inside loaded WebAssembly modules and receives return values through the host SDK.

    Rustbrowserccpp
    GitHub पर देखें↗5,657
  • bytecodealliance/lucetbytecodealliance का अवतार

    bytecodealliance/lucet

    4,048GitHub पर देखें↗

    Lucet is a WebAssembly runtime and sandboxing compiler that translates WebAssembly bytecode into native machine code. It serves as a secure execution environment and native code generator designed to run untrusted code while preventing unauthorized access to host system resources. The project focuses on high-performance sandboxing by using ahead-of-time compilation to achieve near-native execution speeds. It implements software-based fault isolation and a host-call interface to manage secure communication and data exchange between the isolated module and the external host application. The sy

    Provides a host-call interface to manage secure communication and data exchange between sandboxed modules and the host.

    Rustassemblyscriptrustwasi
    GitHub पर देखें↗4,048
  1. Home
  2. Artificial Intelligence & ML
  3. Function Calling Interfaces
  4. WebAssembly Function Callings

सब-टैग एक्सप्लोर करें

  • Host-Call InterfacesMechanisms for mapping guest module imports to host-provided functions. **Distinct from WebAssembly Function Callings:** Distinct from WebAssembly Function Callings: focuses on the interface allowing the guest to call the host, not just the host calling the guest.