From 19bc86307fc69d5f0892e9e197361b61d1c835ef Mon Sep 17 00:00:00 2001 From: VJHack Date: Tue, 10 Sep 2024 22:23:09 -0500 Subject: [PATCH] removed loading html file --- examples/server/public/loading.html | 12 ------------ examples/server/server.cpp | 2 -- 2 files changed, 14 deletions(-) delete mode 100644 examples/server/public/loading.html diff --git a/examples/server/public/loading.html b/examples/server/public/loading.html deleted file mode 100644 index 5e0a837a6..000000000 --- a/examples/server/public/loading.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
- The model is loading. Please wait.
- The user interface will appear soon. -
- - \ No newline at end of file diff --git a/examples/server/server.cpp b/examples/server/server.cpp index 0b17dd715..39f8111f8 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -23,7 +23,6 @@ #include "theme-snowstorm.css.hpp" #include "index.html.hpp" #include "index-new.html.hpp" -#include "loading.html.hpp" #include "index.js.hpp" #include "completion.js.hpp" #include "system-prompts.js.hpp" @@ -3162,7 +3161,6 @@ int main(int argc, char ** argv) { svr->Get("/theme-polarnight.css", handle_static_file(theme_polarnight_css, theme_polarnight_css_len, "text/css; charset=utf-8")); svr->Get("/theme-snowstorm.css", handle_static_file(theme_snowstorm_css, theme_snowstorm_css_len, "text/css; charset=utf-8")); svr->Get("/index-new.html", handle_static_file(index_new_html, index_new_html_len, "text/html; charset=utf-8")); - svr->Get("/loading.html", handle_static_file(loading_html, loading_html_len, "text/html; charset=utf-8")); svr->Get("/system-prompts.js", handle_static_file(system_prompts_js, system_prompts_js_len, "text/javascript; charset=utf-8")); svr->Get("/prompt-formats.js", handle_static_file(prompt_formats_js, prompt_formats_js_len, "text/javascript; charset=utf-8"));