Files
DB-GPT/pilot/server/static/test.html
2023-06-29 20:41:05 +08:00

19 lines
501 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Streaming Demo</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id="output">Hello World! I'm DB-GPT!</div>
<script>
$(document).ready(function() {
var source = new EventSource("/v1/chat/completions");
source.onmessage = function(event) {
$("#output").append(event.data);
}
});
</script>
</body>
</html>