opensymphony 2.8.5

A Rust implementation of the OpenAI Symphony orchestration design
Documentation
1
2
3
4
5
6
7
8
const { WebSocket } = require('ws');
const { randomUUID } = require('crypto');
Object.assign(globalThis, { WebSocket });
if (typeof globalThis.crypto === 'undefined') {
  Object.assign(globalThis, { crypto: { randomUUID } });
} else if (typeof globalThis.crypto.randomUUID !== 'function') {
  globalThis.crypto.randomUUID = randomUUID;
}