| | |
| | | import org.ruoyi.common.chat.entity.chat.ChatCompletion; |
| | | import org.ruoyi.common.chat.entity.chat.ChatCompletionResponse; |
| | | import org.ruoyi.common.chat.entity.chat.ChatCompletionWithPicture; |
| | | import org.ruoyi.common.chat.entity.embeddings.Embedding; |
| | | import org.ruoyi.common.chat.entity.embeddings.EmbeddingResponse; |
| | | import org.ruoyi.common.chat.entity.files.UploadFileResponse; |
| | | import org.ruoyi.common.chat.entity.images.Image; |
| | | import org.ruoyi.common.chat.entity.images.ImageResponse; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 文本转换向量 |
| | | * |
| | | * @param embedding 入参 |
| | | * @return EmbeddingResponse |
| | | */ |
| | | public EmbeddingResponse embeddings(Embedding embedding) { |
| | | Single<EmbeddingResponse> embeddings = this.openAiApi.embeddings(embedding); |
| | | return embeddings.blockingGet(); |
| | | } |
| | | |
| | | /** |
| | | * 账户信息查询:里面包含总金额等信息 |
| | | * |
| | | * @return 账户信息 |