Compare commits
2 Commits
d9df9193dc
...
e2e6471c5e
| Author | SHA1 | Date | |
|---|---|---|---|
| e2e6471c5e | |||
|
|
3b5b84729f |
@@ -86,7 +86,9 @@ export const vehiclesApi = {
|
|||||||
* Requires Pro or Enterprise tier
|
* Requires Pro or Enterprise tier
|
||||||
*/
|
*/
|
||||||
decodeVin: async (vin: string): Promise<DecodedVehicleData> => {
|
decodeVin: async (vin: string): Promise<DecodedVehicleData> => {
|
||||||
const response = await apiClient.post('/vehicles/decode-vin', { vin });
|
const response = await apiClient.post('/vehicles/decode-vin', { vin }, {
|
||||||
|
timeout: 60000 // 60 seconds for Gemini cold start
|
||||||
|
});
|
||||||
return response.data;
|
return response.data;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user