mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-11 05:34:59 +00:00
12 lines
257 B
PHP
12 lines
257 B
PHP
<?php
|
|
|
|
//define the template class
|
|
if (!interface_exists('ai_transcribe')) {
|
|
interface ai_transcribe {
|
|
public function set_path(string $audio_path);
|
|
public function set_filename(string $audio_filename);
|
|
public function transcribe() : string;
|
|
}
|
|
}
|
|
|
|
?>
|