Files
lingji-work-fe/src/api/all/agent.ts

7 lines
173 B
TypeScript
Raw Normal View History

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