]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
server : add missing /json-schema-to-grammar.mjs (#2616)
authorJhen-Jie Hong <redacted>
Mon, 14 Aug 2023 22:14:14 +0000 (06:14 +0800)
committerGitHub <redacted>
Mon, 14 Aug 2023 22:14:14 +0000 (06:14 +0800)
fixes #2611

examples/server/server.cpp

index 222dbcb430f5e94689edc73d06ca75b2dc592737..99660455ac0b1cc4945a64f8f71a6c5785db6b19 100644 (file)
@@ -15,6 +15,7 @@
 #include "index.html.hpp"
 #include "index.js.hpp"
 #include "completion.js.hpp"
+#include "json-schema-to-grammar.mjs.hpp"
 
 #ifndef SERVER_VERBOSE
 #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");
         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)
              {
         auto lock = llama.lock();