mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-01-16 23:49:24 +00:00
19 lines
501 B
HTML
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> |