forked from github/plane
b654d30aeb
* feat: block sync * chore: minor fixes on pages * fix: remove dangerously set inner html * fix: pages crud operations mutation * fix: favorites mutation for recent pages * fix: remove dangerously set inner html
27 lines
682 B
TypeScript
27 lines
682 B
TypeScript
// services
|
|
import APIService from "services/api.service";
|
|
// types
|
|
import { IGptResponse } from "types";
|
|
|
|
const { NEXT_PUBLIC_API_BASE_URL } = process.env;
|
|
|
|
class AiServices extends APIService {
|
|
constructor() {
|
|
super(NEXT_PUBLIC_API_BASE_URL || "http://localhost:8000");
|
|
}
|
|
|
|
async createGptTask(
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: { prompt: string; task: string }
|
|
): Promise<IGptResponse> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/ai-assistant/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new AiServices();
|