mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-09 19:46:11 +00:00
stub files for loading ace step
This commit is contained in:
parent
37ae068dee
commit
13db5aee9e
8 changed files with 571 additions and 168 deletions
|
|
@ -242,6 +242,15 @@ extern "C"
|
|||
return embeddingstype_generate(inputs);
|
||||
}
|
||||
|
||||
bool music_load_model(const music_load_model_inputs inputs)
|
||||
{
|
||||
return musictype_load_model(inputs);
|
||||
}
|
||||
music_generation_outputs music_generate(const music_generation_inputs inputs)
|
||||
{
|
||||
return musictype_generate(inputs);
|
||||
}
|
||||
|
||||
const char * new_token(int idx) {
|
||||
if (generated_tokens.size() <= idx || idx < 0) return nullptr;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue