We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d8171e commit 6a5b498Copy full SHA for 6a5b498
1 file changed
README.md
@@ -81,16 +81,17 @@ print(result.stdout)
81
82
.NET SDK:
83
84
-```bash
85
-just wasm guest-build # build the guest module
86
-just dotnet build # build the .NET SDK
+```shell
+dotnet add package Hyperlight.HyperlightSandbox.Api
+dotnet add package Hyperlight.HyperlightSandbox.Guest.Python
87
```
88
89
```csharp
90
using HyperlightSandbox.Api;
91
+using HyperlightSandbox.Guest.Python;
92
93
using var sandbox = new SandboxBuilder()
- .WithModulePath("python-sandbox.aot")
94
+ .WithPythonModule()
95
.Build();
96
97
sandbox.RegisterTool<MathArgs, double>("add", args => args.a + args.b);
0 commit comments