Degi
Degi
CCConvex Community
Created by Degi on 1/27/2025 in #support-community
Storing generated audio file doesn't work in action. Same code works fine in HTTP action.
import 'openai/shims/web'; adding this to chat_shared.ts fixed. Thank you so much 🙏
7 replies
CCConvex Community
Created by Degi on 1/27/2025 in #support-community
Storing generated audio file doesn't work in action. Same code works fine in HTTP action.
Thank you for your investigation. - yes it has 'use node'; on top - import { generateBotResponse, openaiTTS } from './chat_shared'; chat_shared.ts:
import OpenAI, { toFile } from 'openai';
....
export async function openaiTTS(text: string): Promise<Response> {
const mp3 = await openai.audio.speech.create({
model: 'tts-1',
voice: 'alloy',
input: text,
});

return mp3;
}
import OpenAI, { toFile } from 'openai';
....
export async function openaiTTS(text: string): Promise<Response> {
const mp3 = await openai.audio.speech.create({
model: 'tts-1',
voice: 'alloy',
input: text,
});

return mp3;
}
7 replies
CCConvex Community
Created by Degi on 12/20/2024 in #support-community
TS type error: Property 'messages' does not exist on type '{}'.ts(2339) (internal.messages)
ah there was only mutations not internal ones. Changing to internalMutation fixed it. Thank you.
4 replies