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.08 kB
JavaScript
// This file was auto-generated by Fern from our API Definition.
export var OutboundCallConfig;
(function (OutboundCallConfig) {
/** 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. */
OutboundCallConfig.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. */
OutboundCallConfig.IntelligenceLevel = {
Standard: "standard",
High: "high",
};
/** The background noise type. Can be "office", "call-center", "coffee-shop", or null. */
OutboundCallConfig.BackgroundNoise = {
Office: "office",
CallCenter: "call-center",
CoffeeShop: "coffee-shop",
};
})(OutboundCallConfig || (OutboundCallConfig = {}));