The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Does anyone know of a way to create an automation where when a new recording is created, it uses the GPT chat API as the first column for text input and the second column to get the output response from the GPT chat? For example, column 1 (input) = H...
Hello everyone, does anyone know if it is possible to use the Gemini API Generative Language to create an automation in Airtable? I would like to use 1 column to receive data input from my users app and serve as a kind of prompt. And then use 2 more ...
I am using Airtable as the backend for my app. I have a Table A for registering users and a Table B for registering restaurants. Through the Google Matrix Distance API, I am using longitude and latitude data to calculate the distance between register...
Hello,I'm building an app and would like help solving an issue. I have a Table A where I register my users. Table B contains the restaurants in my app. I use a Google Maps API to calculate the distance between my users and the restaurants. I'm runnin...
Yes ,I generated JS by AI.SCRIPT 1: let table = base.getTable("Table 2"); // Substitua "SuaTabela" pelo nome da sua tabelalet records = await table.selectRecordsAsync();for (let record of records.records) { let lat1 = record.getCellValue("latitud...
This table is a form that, when my user fills it out, automates distance data between two points using the Haversine formula and also automates the conversion of latitude and longitude using the Google Maps reverse geocode API. The problem is that wh...