Просмотр исходного кода

server : add missing /json-schema-to-grammar.mjs (#2616)

fixes #2611
Jhen-Jie Hong 2 лет назад
Родитель
Сommit
3ebb00935f
1 измененных файлов с 7 добавлено и 0 удалено
  1. 7 0
      examples/server/server.cpp

+ 7 - 0
examples/server/server.cpp

@@ -15,6 +15,7 @@
 #include "index.html.hpp"
 #include "index.html.hpp"
 #include "index.js.hpp"
 #include "index.js.hpp"
 #include "completion.js.hpp"
 #include "completion.js.hpp"
+#include "json-schema-to-grammar.mjs.hpp"
 
 
 #ifndef SERVER_VERBOSE
 #ifndef SERVER_VERBOSE
 #define SERVER_VERBOSE 1
 #define SERVER_VERBOSE 1
@@ -1218,6 +1219,12 @@ int main(int argc, char **argv)
         res.set_content(reinterpret_cast<const char*>(&completion_js), completion_js_len, "application/javascript");
         res.set_content(reinterpret_cast<const char*>(&completion_js), completion_js_len, "application/javascript");
         return false; });
         return false; });
 
 
+    // this is only called if no index.html is found in the public --path
+    svr.Get("/json-schema-to-grammar.mjs", [](const Request &, Response &res)
+            {
+        res.set_content(reinterpret_cast<const char*>(&json_schema_to_grammar_mjs), json_schema_to_grammar_mjs_len, "application/javascript");
+        return false; });
+
     svr.Post("/completion", [&llama](const Request &req, Response &res)
     svr.Post("/completion", [&llama](const Request &req, Response &res)
              {
              {
         auto lock = llama.lock();
         auto lock = llama.lock();