(obj)
| 77664 | function tocamelCase(str2) { |
| 77665 | return str2.toLowerCase().replace(/([_][a-z])/g, (group) => group.toUpperCase().replace("_", "")); |
| 77666 | } |
| 77667 | function toSnakeCase(str2) { |
| 77668 | return str2.replace(/([A-Z])/g, (group) => `_${group.toLowerCase()}`).replace(/^_/, ""); |
| 77669 | } |
| 77670 | |
| 77671 | // node_modules/@azure/openai/dist-esm/src/utils/serializeUtil.js |
| 77672 | function serializeChatRequestUserMessage(obj) { |
| 77673 | return { |
| 77674 | role: obj["role"], |
| 77675 | content: typeof obj["content"] === "string" ? obj["content"] : obj["content"].map(serializeChatRequestContentItemUnion), |
no outgoing calls
no test coverage detected
searching dependent graphs…