You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose python and jupyter are correctly configured, the following code shows how to send python code to jupyter kernel to execute
varkernel=DotnetInteractiveKernelBuilder.CreateDefaultBuilder()// add C# and F# kernel.AddPythonKernel(venv:"python3",kernelName:"python3").Build();varpythonCode="""print("hello world from python")"""varresult=kernel.RunSubmitCodeCommandAsync(pythonCode,"python3");
The text was updated successfully, but these errors were encountered:
LittleLittleCloud
changed the title
[Feature Request]: [.Net] Add AutoGen.CodeInterpreter package
[.Net] [Feature Request]: Support python code execution in AutoGen.DotnetInteractive
Aug 7, 2024
LittleLittleCloud
changed the title
[.Net] [Feature Request]: Support python code execution in AutoGen.DotnetInteractive
[.Net][Feature Request]: Support python code execution in AutoGen.DotnetInteractive
Aug 7, 2024
dotnet-interactive
now support jupyter kernel connection. So we can bring this feature toAutoGen.DotnetInteractive
packageUsage
Suppose
python
andjupyter
are correctly configured, the following code shows how to send python code to jupyter kernel to executeThe text was updated successfully, but these errors were encountered: