Felguk commited on
Commit
3069971
·
verified ·
1 Parent(s): 6e3396b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -52,3 +52,19 @@ model = downloader.download_model("felguk-omni-v0")
52
 
53
  print("Model downloaded successfully!")
54
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
  print("Model downloaded successfully!")
54
  ```
55
+ ### Usage Example
56
+ Here’s a simple example of how to use the felguk-omni-v0 model to transcribe an audio file:
57
+ ```bash
58
+ from nexa_sdk import ModelLoader
59
+
60
+ # Load the model
61
+ model = ModelLoader.load("felguk-omni-v0")
62
+
63
+ # Path to your audio file
64
+ audio_file_path = "path/to/your/audio.wav"
65
+
66
+ # Transcribe the audio
67
+ transcription = model.transcribe(audio_file_path)
68
+
69
+ print(f"Transcription: {transcription}")
70
+ ```