LLMWhisperer is a technology that presents data from complex documents to LLMs in a way that they can best understand.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
llmwhisperer: {
type: "app",
app: "llmwhisperer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://llmwhisperer-api.unstract.com/v1/get-usage-info`,
headers: {
"unstract-key": `${this.llmwhisperer.$auth.api_key}`,
},
})
},
})
Convert your PDF/scanned documents to text format which can be used by LLMs. See the documentation
Get the status of the whisper process. This can be used to check the status of the conversion process when the conversion is done in async mode. See the documentation
Generate highlight locations for a search term in the document. See the documentation
Retrieve the extracted text executed through the whisper API. This can be used to retrieve the text of the conversion process when the conversion is done in async mode. See the documentation
LLMWhisperer uses API keys for authentication. When you connect your LLMWhisperer account, Pipedream securely stores the keys so you can easily authenticate to LLMWhisperer APIs in both code and no-code steps.