with Neon Postgres and Symbl.ai?
import { axios } from "@pipedream/platform";
import { neon } from "@neondatabase/serverless";
export default defineComponent({
props: {
neon_postgres: {
type: "app",
app: "neon_postgres",
}
},
async run({ steps, $ }) {
const { host, port, user, password, database } = this.neon_postgres.$auth
const connectionString = `postgresql://${user}:${password}@${host}:${port}/${database}`
const sql = neon(connectionString)
const result = await sql`SELECT version()`
const { version } = result[0]
return version
},
})
The Symbl.ai API supercharges your applications with advanced conversation intelligence. By tapping into Symbl.ai via Pipedream, you can automate the analysis of voice, text, and video communications. Extract actionable items, follow-ups, and insights in real-time or from recorded content. This API's magic lies in its ability to provide contextually relevant insights, topic detection, sentiment analysis, and conversation metrics without extensive training data or setup time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
symbl_ai: {
type: "app",
app: "symbl_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.symbl.ai/v1/manage/trackers`,
headers: {
Authorization: `Bearer ${this.symbl_ai.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})