7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
|
// 投放账号计划
|
||
|
|
import Http from '@/api';
|
||
|
|
// 获取聊天智能体
|
||
|
|
export const getChatAgent = (id: number) => {
|
||
|
|
return Http.get(`/v1/agent/getChatAgent/${id}`);
|
||
|
|
};
|