nestjs-chatgpt
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "nestjs-chatgpt", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"homepage": "https://github.com/engcfraposo/nestjs-chatgpt", | ||
@@ -5,0 +5,0 @@ "email": "engcfraposo@gmail.com", |
import { HttpException, Injectable } from '@nestjs/common'; | ||
import axios from 'axios'; | ||
import axios, { AxiosError } from 'axios'; | ||
import { CreateChatgptDto } from './dto/create-chatgpt.dto'; | ||
@@ -33,3 +33,3 @@ import { ChatGptResponse } from './dto/response-chatgpt.dto'; | ||
return response.data; | ||
} catch (error) { | ||
} catch (error: any) { | ||
throw new HttpException('Falha ao gerar texto', error.response.status); | ||
@@ -36,0 +36,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15654