获取客户端临时Key

This commit is contained in:
2025-11-01 14:58:36 +08:00
parent 9cc6647027
commit 95463a427e
10 changed files with 144 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
package com.vetti.web.service;
import com.vetti.common.core.domain.dto.RealtimeClientSecretDto;
/**
* 共同 信息 服务类
*
* @author WangXiangShun
* @since 2025-08-27
*/
public interface ICommonService {
/**
* 获取openAi客户端临时Key
* @return
*/
public RealtimeClientSecretDto getRealtimeClientSecret();
}