File tree Expand file tree Collapse file tree
samples/js/live-audio-transcription
sdk/rust/tests/integration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ console.log();
1515// Initialize the Foundry Local SDK
1616console . log ( 'Initializing Foundry Local SDK...' ) ;
1717const manager = FoundryLocalManager . create ( {
18- appName : 'foundry ' ,
18+ appName : 'foundry_local_samples ' ,
1919 logLevel : 'info'
2020} ) ;
2121console . log ( '✓ SDK initialized' ) ;
Original file line number Diff line number Diff line change @@ -59,10 +59,7 @@ async fn live_streaming_e2e_with_synthetic_pcm_returns_valid_response() {
5959 }
6060
6161 // Start collecting results in background (must start before pushing audio)
62- let mut stream = session
63- . get_stream ( )
64- . await
65- . expect ( "get_stream failed" ) ;
62+ let mut stream = session. get_stream ( ) . await . expect ( "get_stream failed" ) ;
6663
6764 let results = Arc :: new ( tokio:: sync:: Mutex :: new ( Vec :: new ( ) ) ) ;
6865 let stream_error: Arc < tokio:: sync:: Mutex < Option < String > > > =
You can’t perform that action at this time.
0 commit comments