Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
224 Bytes
import Airtable from "airtable";
const apiKey = import.meta.env.VITE_AIRTABLE_KEY;
const baseId = import.meta.env.VITE_AIRTABLE_ID;
const edgyBase = new Airtable({ apiKey: apiKey }).base(baseId);
export default edgyBase;