Last active
April 1, 2025 16:59
-
-
Save oeway/a4e8168a83b6e4d6bae08019fb9c7f57 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const serverUrl = "https://hypha.aicell.io" | |
const loginCallback = (context) => { | |
window.open(context.login_url); | |
}; | |
async function startServer(serverUrl) { | |
// Log in and connect to the Hypha server | |
const token = await hyphaWebsocketClient.login({ | |
server_url: serverUrl, | |
login_callback: loginCallback, | |
}); | |
const server = await hyphaWebsocketClient.connectToServer({ | |
server_url: serverUrl, | |
token: token, | |
}); | |
// Define a service method | |
function hello(name, context) { | |
console.log("Hello " + name); | |
return "Hello " + name; | |
} | |
// Register the service with the server | |
const myService = await server.registerService({ | |
id: "hello-world", | |
name: "Hello World", | |
description: "A simple hello world service", | |
config: { | |
visibility: "public", | |
require_context: true, | |
}, | |
hello: hello, // or just `hello,` in modern JS | |
}); | |
console.log(`Hello world service registered at workspace: ${server.config.workspace}, id: ${myService.id}`); | |
console.log(`You can use this service using the service id: ${myService.id}`); | |
console.log(`You can also test the service via the HTTP proxy: ${serverUrl}/${server.config.workspace}/services/${myService.id}/hello?name=John`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment