import {
context,
SpanStatusCode,
trace,
type Context,
} from '@opentelemetry/api'
export type WithOtelContext = {
__otelContext?: Context
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is the configuration file for Ghostty. | |
| # | |
| # This template file has been automatically created at the following | |
| # path since Ghostty couldn't find any existing config files on your system: | |
| # | |
| # /home/bartosz/.config/ghostty/config | |
| # | |
| # The template does not set any default options, since Ghostty ships | |
| # with sensible defaults for all options. Users should only need to set | |
| # options that they want to change from the default. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare const __APP_VERSION__: string; // Use this anywhere in the app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import wave | |
| from datetime import datetime | |
| import pyaudio | |
| import webrtcvad | |
| if __name__ == "__main__": | |
| p = pyaudio.PyAudio() | |
| sample_rate = 16000 |