Embeddings
Embeddings
1 const result = await client.embeddings.create({ 2 model: "openai/text-embedding-3-small", 3 input: ["hello world", "goodbye world"], 4 }); 5 6 console.log(result.data[0].embedding.length);
1 const result = await client.embeddings.create({ 2 model: "openai/text-embedding-3-small", 3 input: ["hello world", "goodbye world"], 4 }); 5 6 console.log(result.data[0].embedding.length);