1234567891011121314151617181920212223242526272829 |
- package com.webchat.aigc.llm;
- import com.alibaba.dashscope.embeddings.TextEmbedding;
- import com.alibaba.dashscope.embeddings.TextEmbeddingParam;
- import com.alibaba.dashscope.embeddings.TextEmbeddingResult;
- import com.alibaba.dashscope.exception.ApiException;
- import com.alibaba.dashscope.exception.NoApiKeyException;
- import org.springframework.stereotype.Service;
- import java.util.Arrays;
- @Service
- public class BasicModelService {
- public static void basicCall() throws ApiException, NoApiKeyException {
- TextEmbeddingParam param = TextEmbeddingParam
- .builder()
- .model(TextEmbedding.Models.TEXT_EMBEDDING_V3)
- .texts(Arrays.asList("风急天高猿啸哀", "渚清沙白鸟飞回", "无边落木萧萧下", "不尽长江滚滚来")).build();
- TextEmbedding textEmbedding = new TextEmbedding();
- TextEmbeddingResult result = textEmbedding.call(param);
- System.out.println(result);
- }
- }
|