voxforge-world / engine /sim /rf /materials.py
peiti's picture
Upload folder using huggingface_hub
b154e4c verified
raw
history blame contribute delete
847 Bytes
from __future__ import annotations
"""Compatibility wrapper for the RF Simulation Pack material API.
The canonical material database now lives in ``engine.materials``. This module
keeps older RF imports stable.
"""
from engine.materials.database import MATERIAL_DB, MaterialRecord
from engine.materials.rf_profiles import (
attach_material_recommendations,
export_material_database,
material_db_dataframe,
material_use_case_from_row,
primary_material_name,
recommend_materials_for_use_case,
score_material_for_use_case,
)
__all__ = [
"MATERIAL_DB",
"MaterialRecord",
"attach_material_recommendations",
"export_material_database",
"material_db_dataframe",
"material_use_case_from_row",
"primary_material_name",
"recommend_materials_for_use_case",
"score_material_for_use_case",
]