Skip to content

Commit

Permalink
server : add missing /json-schema-to-grammar.mjs (#2616)
Browse files Browse the repository at this point in the history
fixes #2611
  • Loading branch information
jhen0409 authored Aug 14, 2023
1 parent d783f79 commit 3ebb009
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/server/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 3ebb009

Please sign in to comment.