@elizaos/interop 2.0.0-alpha → 2.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/packages/interop/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/python/tests/test_rust_ffi_loader.py +2 -2
- package/LICENSE +0 -21
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/dist/typescript/index.d.ts +0 -33
- package/dist/typescript/index.d.ts.map +0 -1
- package/dist/typescript/index.js +0 -121
- package/dist/typescript/python-bridge.d.ts +0 -80
- package/dist/typescript/python-bridge.d.ts.map +0 -1
- package/dist/typescript/python-bridge.js +0 -334
- package/dist/typescript/types.d.ts +0 -301
- package/dist/typescript/types.d.ts.map +0 -1
- package/dist/typescript/types.js +0 -10
- package/dist/typescript/wasm-loader.d.ts +0 -32
- package/dist/typescript/wasm-loader.d.ts.map +0 -1
- package/dist/typescript/wasm-loader.js +0 -269
- package/python/__pycache__/__init__.cpython-313.pyc +0 -0
- package/python/__pycache__/rust_ffi.cpython-313.pyc +0 -0
- package/python/__pycache__/ts_bridge.cpython-313.pyc +0 -0
- package/python/__pycache__/wasm_loader.cpython-313.pyc +0 -0
- package/python/tests/__pycache__/__init__.cpython-313.pyc +0 -0
- package/python/tests/__pycache__/test_bridge_server.cpython-313-pytest-9.0.2.pyc +0 -0
- package/python/tests/__pycache__/test_interop.cpython-313-pytest-9.0.2.pyc +0 -0
- package/python/tests/__pycache__/test_rust_ffi.cpython-313-pytest-9.0.2.pyc +0 -0
- package/python/tests/__pycache__/test_rust_ffi_loader.cpython-313-pytest-9.0.2.pyc +0 -0
package/README.md
CHANGED
|
@@ -116,7 +116,7 @@ await runtime.register_plugin(plugin)
|
|
|
116
116
|
|
|
117
117
|
## Plugin Manifest
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
Cross-language plugins are described by a manifest-like metadata object (format may vary by transport and host).
|
|
120
120
|
|
|
121
121
|
```json
|
|
122
122
|
{
|
|
@@ -431,6 +431,6 @@ Interop subprocess/WASM output is routed through the core logger (when used from
|
|
|
431
431
|
## See Also
|
|
432
432
|
|
|
433
433
|
- [Examples README](./examples/README.md) - Complete working examples
|
|
434
|
-
- [Protocol Buffers Schemas](
|
|
434
|
+
- [Protocol Buffers Schemas](../schemas/README.md) - Type definitions
|
|
435
435
|
- [plugin-eliza-classic](../../plugins/plugin-eliza-classic/) - Reference implementation
|
|
436
436
|
- [plugin-inmemorydb](../../plugins/plugin-inmemorydb/) - Database adapter example
|