You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The correct API endpoint format for the AirtableLoader in LangChain.js is:
https://api.airtable.com/v0/{baseId}/{tableId}
This is constructed in the fetchRecords method using the BASE_URL, baseId, and tableId[1]. If your POST request is not hitting this endpoint, you might need to ensure that the baseId and tableId are correctly specified in your code. If you intended to use a different endpoint, such as /v0/{baseId}/{tableIdOrName}/listRecords, you may need to modify the AirtableLoader implementation to accommodate this change.
Checked other resources
Example Code
Error Message and Stack Trace (if applicable)
No response
Description
In my last PR I forgot to update the airtable API url
The POST request should hit this url:
/v0/{baseId}/{tableIdOrName}/listRecords
System Info
platform windows
Node v20.14.0
yarn 1.22.22
The text was updated successfully, but these errors were encountered: