mirror of
https://github.com/ollama/ollama.git
synced 2025-05-14 05:23:54 +02:00
8 lines
211 B
C++
Vendored
8 lines
211 B
C++
Vendored
#pragma once
|
|
|
|
#include "ggml.h"
|
|
// Change JSON_ASSERT from assert() to GGML_ASSERT:
|
|
#define JSON_ASSERT GGML_ASSERT
|
|
#include "json.hpp"
|
|
|
|
std::string json_schema_to_grammar(const nlohmann::ordered_json& schema);
|