Suggestion for `embedMany` Method on `AiEmbeddingModel`
There should be an
embedMany on the AiEmbeddingModel, so we can avoid doing this:embedManyAiEmbeddingModelconst model = yield* AiEmbeddingModel.AiEmbeddingModel;
const embeddings = yield* Effect.forEach(chunks, model.embed, { batching: true, concurrency: "unbounded" });