Open Noodieknoodie opened 1 week ago
❌ The ticket to PR workflow is no longer supported. We have moved to a new chat interface in private beta. Please contact us at team@sweep.dev to try it out.
:book: For more information on how to use Sweep, please read our documentation.
BUILD AN APP
an AI powered assistant that takes a USERINPUT which could be:
for the audio transcription use Open AI Whisper
WHISPER:
Endpoint: https://api.openai.com/v1/audio/transcriptions
Required Headers: Authorization: Bearer YOUR_API_KEY Content-Type: multipart/form-data
Minimum Required Key-Value Pairs: file: your_audio_file model: whisper-1
Optional Parameters: response_format: text language: en
CHAT GPT-4o
Endpoint: https://api.openai.com/v1/chat/completions
Required Headers: Authorization: Bearer YOUR_API_KEY Content-Type: application/json Minimum Required Key-Value Pairs:
model: gpt-4o messages: [ {role: system, content: your_system_prompt}, {role: user, content: your_text} ]
Display the content to user and allow them to download in Word Doc
Requirements