HappyFox Chat is a live chat software to connect, engage and convert customers.
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 HappyFox Chat API, you can easily build a powerful chat application for
your website or blog. The API allows you to easily add chat functionality to
your site, and provides a number of features to make your chat experience more
powerful and engaging.
Here are some examples of what you can build with HappyFox Chat API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
happyfox_chat: {
type: "app",
app: "happyfox_chat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.happyfoxchat.com/v1/agents`,
headers: {
Authorization: `Bearer ${this.happyfox_chat.$auth.api_token}`,
},
})
},
})
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}`,
},
})
},
})