feat: GPT integration (#526)

* feat: GPT integration

* dev: move engine value to env variable
This commit is contained in:
pablohashescobar 2023-03-25 11:14:26 +05:30 committed by GitHub
parent 31624f3ae6
commit a3a792741f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 75 additions and 1 deletions

View file

@ -128,6 +128,9 @@ from plane.api.views import (
ImportServiceEndpoint,
UpdateServiceImportStatusEndpoint,
## End importer
# Gpt
GPTIntegrationEndpoint,
## End Gpt
)
@ -1144,4 +1147,11 @@ urlpatterns = [
name="importer",
),
## End Importer
# Gpt
path(
"workspaces/<str:slug>/projects/<uuid:project_id>/ai-assistant/",
GPTIntegrationEndpoint.as_view(),
name="importer",
),
## End Gpt
]