Doc: Custom instructions/Categories (#2147)

This commit is contained in:
Dev Khant
2025-01-15 07:51:16 +05:30
committed by GitHub
parent 0bd177b30c
commit 7be029a26f
3 changed files with 1 additions and 11 deletions

View File

@@ -1,4 +0,0 @@
---
title: 'Get Custom Instructions and Categories'
openapi: get /api/v1/orgs/organizations/{org_id}/projects/{project_id}/custom-instructions-and-categories/
---

View File

@@ -1,6 +0,0 @@
---
title: 'Update Custom Instructions and Categories'
openapi: post /api/v1/orgs/organizations/{org_id}/projects/{project_id}/custom-instructions-and-categories/
---
Please refer to the [how to use custom instructions/categories](/features/custom-instructions) for more information.

View File

@@ -62,7 +62,7 @@ You can also retrieve the current custom instructions:
<CodeGroup>
```python Code
# Retrieve current custom instructions
response = client.update_project(fields=["custom_instructions"])
response = client.get_project(fields=["custom_instructions"])
print(response)
```