deepseek大模型api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
287 B

3 months ago
  1. package com.bw.qanda.service;
  2. import java.util.Map;
  3. /**
  4. * 问答实际处理接口
  5. * @author jian.mao
  6. * @date 2025年3月31日
  7. * @description
  8. */
  9. public interface QandATaskService {
  10. /**
  11. * 问答执行方法
  12. * @param task
  13. */
  14. public void qandA(Map<String, Object> task);
  15. }