Docparser is the most advanced cloud based document parsing and automation tool in the market today.
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Classify items into specific categories using the Chat API
Translate text from one language to another using the Chat API
Transcribes audio into the input language. See docs here.
With Docparser, you can easily extract data from PDF documents and convert them
into usable formats such as JSON, CSV or XML. This way you can easily get the
data you need from PDF documents without having to manually copy and paste it.
Here are some examples of what you can build using the Docparser API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docparser: {
type: "app",
app: "docparser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.docparser.com/v1/ping`,
auth: {
username: `${this.docparser.$auth.api_key}`,
password: ``,
},
})
},
})
The OpenAI API is a powerful tool that provides access to a range of
high-powered machine learning models. With the OpenAI API, developers can
create products, services, and tools that enable humanizing AI experiences, and
build applications that extend the power of human language.
Using the OpenAI API, developers can create language-driven applications such
as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})