#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
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();