mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			211 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			211 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#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);
 |