With Faros, you can build applications that can understand and respond to user questions in natural language. These applications can range from chatbots to virtual assistants and beyond. Some examples of what you can build with Faros include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
faros: {
type: "app",
app: "faros",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.faros.ai/v0/admin/user/me`,
headers: {
"Content-Type": `application/json`,
"Authorization": `${this.faros.$auth.api_key}`,
},
})
},
})
Faros uses API keys for authentication. When you connect your Faros account, Pipedream securely stores the keys so you can easily authenticate to Faros APIs in both code and no-code steps.
Please create a Faros API key and enter it below.