mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
aa92ace57f
* chore: make ai assistant endpoint workspace level * chore: create workspace level ai assistant endpoint
21 lines
573 B
TypeScript
21 lines
573 B
TypeScript
import { API_BASE_URL } from "@/helpers/common.helper";
|
|
import { APIService } from "@/services/api.service";
|
|
// types
|
|
// FIXME:
|
|
// import { IGptResponse } from "@plane/types";
|
|
// helpers
|
|
|
|
export class AIService extends APIService {
|
|
constructor() {
|
|
super(API_BASE_URL);
|
|
}
|
|
|
|
async createGptTask(workspaceSlug: string, data: { prompt: string; task: string }): Promise<any> {
|
|
return this.post(`/api/workspaces/${workspaceSlug}/ai-assistant/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response;
|
|
});
|
|
}
|
|
}
|