| 268 | } |
| 269 | |
| 270 | Napi::Value TModel::GetModelTextFeaturesCount(const Napi::CallbackInfo& info) { |
| 271 | Napi::Env env = info.Env(); |
| 272 | const size_t count = GetTextFeaturesCount(this->Handle); |
| 273 | |
| 274 | return Napi::Number::New(env, count); |
| 275 | } |
| 276 | |
| 277 | Napi::Value TModel::GetModelEmbeddingFeaturesCount(const Napi::CallbackInfo& info) { |
| 278 | Napi::Env env = info.Env(); |
nothing calls this directly
no test coverage detected