Spaces:
Runtime error
Runtime error
| from pathlib import Path | |
| import sys | |
| HERE = Path(__file__).resolve().parent | |
| for candidate in (HERE, HERE.parent): | |
| sys.path.insert(0, str(candidate)) | |
| from image_to_station_audio import main | |
| if __name__ == "__main__": | |
| main() | |