forked from github/plane
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
24 lines
622 B
TypeScript
24 lines
622 B
TypeScript
import { API_BASE_URL } from "helpers/common.helper";
|
|
import { APIService } from "services/api.service";
|
|
// types
|
|
import { IGptResponse } from "@plane/types";
|
|
// helpers
|
|
|
|
export class AIService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
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;
|
|
});
|
|
}
|
|
}
|