deprecated
| 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) { |
| 2592 | return llama_state_save_file(ctx, path_session, tokens, n_token_count); |
| 2593 | } |
| 2594 | |
| 2595 | // Returns the *actual* size of the state. |
| 2596 | // Intended to be used when saving to state to a buffer. |
nothing calls this directly
no test coverage detected