deprecated
| 2584 | |
| 2585 | // deprecated |
| 2586 | bool llama_load_session_file(llama_context * ctx, const char * path_session, llama_token * tokens_out, size_t n_token_capacity, size_t * n_token_count_out) { |
| 2587 | return llama_state_load_file(ctx, path_session, tokens_out, n_token_capacity, n_token_count_out); |
| 2588 | } |
| 2589 | |
| 2590 | // deprecated |
| 2591 | bool llama_save_session_file(llama_context * ctx, const char * path_session, const llama_token * tokens, size_t n_token_count) { |
nothing calls this directly
no test coverage detected