deprecated
| 2257 | |
| 2258 | // deprecated |
| 2259 | llama_context * llama_new_context_with_model( |
| 2260 | llama_model * model, |
| 2261 | llama_context_params params) { |
| 2262 | return llama_init_from_model(model, params); |
| 2263 | } |
| 2264 | |
| 2265 | void llama_free(llama_context * ctx) { |
| 2266 | delete ctx; |
no test coverage detected