DocWire SDK
DocWire SDK: Award-winning modern data processing in C++20. SourceForge Community Choice & Microsoft support. AI-driven processing. Supports nearly 100 data formats, including email boxes and OCR. Boost efficiency in text extraction, web data extraction, data mining, document analysis. Offline processing possible for security and confidentiality
Loading...
Searching...
No Matches
openai_voice_summary.cpp

This example shows how to create a voice summary by chaining an OpenAI summarizer and a text-to-speech model.

#include "docwire.h"
#include <fstream>
int main(int argc, char* argv[])
{
using namespace docwire;
try
{
std::filesystem::path("1.doc") | content_type::detector{} | office_formats_parser{} | plain_text_exporter() | openai::summarize(environment::get("OPENAI_API_KEY").value()) | openai::text_to_speech(environment::get("OPENAI_API_KEY").value()) | std::ofstream("summary.mp3");
}
catch (const std::exception& e)
{
std::cerr << errors::diagnostic_message(e) << std::endl;
return 1;
}
return 0;
}
Content type detection chain element.
A composite parser handling various office document formats.
Exports data to plain text format.
std::string diagnostic_message(const std::exception &e)
Generates a diagnostic message for the given nested exceptions chain.
The main namespace for the DocWire SDK.
Definition ai_elements.h:19