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
// app/api/gensx/[...path]/route.tsimport{createPassthroughHandlers}from'@gensx/nextjs';// This will export GET/POST/etc handlers that look at the path and try to infer the operation.export{
...createPassthroughHandlers({apiKey: process.env.GENSX_API_KEY,org: process.env.GENSX_ORG,project: process.env.GENSX_PROJECT,env: process.env.GENSX_ENV});};