We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07acb5 commit ababfb4Copy full SHA for ababfb4
kernel/src/kernel.ts
@@ -41,13 +41,13 @@ export class EmbeddedKernel extends BaseKernel {
41
42
outputResponse(msg: string): void {
43
console.log("[Kernel] outputResponse - Streaming output:", msg);
44
-
+
45
msg += '\n';
46
47
- this.stream(){
+ this.stream({
48
name: 'stdout',
49
text: msg,
50
- }
+ })
51
}
52
53
async executeRequest(
@@ -69,6 +69,7 @@ export class EmbeddedKernel extends BaseKernel {
69
console.log("[Kernel] executeRequest - Processing code");
70
const { code } = content;
71
72
73
if (code.includes(reconnectString)) {
74
// Reconnect the device or connect for the first time
75
this.outputResponse("Reconnect command detected, reconnecting device...");
0 commit comments