feat: GPT integration (#526)
* feat: GPT integration * dev: move engine value to env variable
This commit is contained in:
parent
31624f3ae6
commit
a3a792741f
7 changed files with 75 additions and 1 deletions
|
|
@ -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
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue