phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 1.46 kB
JavaScript
// This file was auto-generated by Fern from our API Definition.
export var ConfigOptions;
(function (ConfigOptions) {
/** Background noise type for the conversation */
ConfigOptions.BackgroundNoise = {
Office: "office",
CallCenter: "call-center",
CoffeeShop: "coffee-shop",
};
/** Audio input format */
ConfigOptions.InputFormat = {
Pcm44100: "pcm_44100",
Pcm24000: "pcm_24000",
Pcm16000: "pcm_16000",
Pcm8000: "pcm_8000",
Mulaw8000: "mulaw_8000",
};
/** Audio output format */
ConfigOptions.OutputFormat = {
Pcm44100: "pcm_44100",
Pcm24000: "pcm_24000",
Pcm16000: "pcm_16000",
Pcm8000: "pcm_8000",
Mulaw8000: "mulaw_8000",
};
/** If `"auto"`, each user audio is automatically identified for the language to respond in. If `"request"`, user must request to change language (recommended). If `"initial"` the first turn user audio determines the language for the rest of the conversation. */
ConfigOptions.MultilingualMode = {
Auto: "auto",
Request: "request",
Initial: "initial",
};
/** The intelligence level of the agent. `high` uses a more capable model for more complex reasoning, while `standard` is optimized for lower latency. */
ConfigOptions.IntelligenceLevel = {
Standard: "standard",
High: "high",
};
})(ConfigOptions || (ConfigOptions = {}));