- expose command-monitor conversations and preserve visible agent transcripts - add bounded polling and a dedicated shell interrupt tool - improve direct-provider images, skills, tool history, and usage handling - package and brand Galaxy Control across releases, installers, persistence, and docs
34 lines
577 B
HTML
34 lines
577 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Galaxy</title>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0px;
|
|
background-color: black;
|
|
}
|
|
canvas {
|
|
display: block;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
height: 100svh;
|
|
outline: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module">
|
|
import init from "/assets/client/wasm/galaxy.js";
|
|
window.addEventListener("load", () => {
|
|
init();
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|