eslint fix

This commit is contained in:
Andrew Miracle
2024-04-05 16:25:02 -07:00
committed by Weston Pace
parent 9efc3fa6d8
commit 5948f11641
2 changed files with 15 additions and 18 deletions
+8 -9
View File
@@ -24,16 +24,15 @@ const OpenAIApi = require('openai')
const { stub } = require('sinon')
describe('OpenAPIEmbeddings', function () {
const stubValue = {
data: [
{
embedding: Array(1536).fill(1.0)
},
{
embedding: Array(1536).fill(2.0)
}
]
data: [
{
embedding: Array(1536).fill(1.0)
},
{
embedding: Array(1536).fill(2.0)
}
]
}
describe('#embed', function () {