Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: DIA-1748: 'Generate labels with AI' button in Project, in SC #43

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fern/fern.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"organization": "humansignal-org",
"version": "0.39.12"
}
"version": "0.46.12"
}
5 changes: 3 additions & 2 deletions fern/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ groups:
- from: _legacy
imports:
- Client
# pyproject_python_version: '^3.9'
pyproject_python_version: '>=3.9,<4'
extra_dependencies:
pandas: '>=0.24.0'
requests: '>=2.22.0'
Expand All @@ -46,8 +46,9 @@ groups:
xmljson: '0.2.1'
jsonschema: '>=4.23.0'
requests-mock: '1.12.1'
numpy: '<2.0.0'
numpy: '>=1.26.4,<2.0.0'
datamodel-code-generator: '0.26.1'
jsf: '^0.11.2'
# scikit-learn: '1.5.1'
smart-casing: true
python-sdk-local:
Expand Down
5 changes: 5 additions & 0 deletions fern/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8982,6 +8982,11 @@ components:
title: Organization
type: integer
nullable: true
prompts:
type: array
items:
$ref: "#/components/schemas/Prompt"
nullable: true
color:
title: Color
type: string
Expand Down
15 changes: 15 additions & 0 deletions fern/openapi/overrides.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
paths:
/api/current-user/product-tour:
get:
$ref: "./resources/users.yaml#/paths/~1api~1current-user~1product-tour/get"
x-fern-sdk-group-name: users
x-fern-sdk-method-name: get_product_tour
x-fern-audiences:
# internal is not used in the default generator - we skip function generation for this endpoint because it's not user facing
- internal
patch:
$ref: "./resources/users.yaml#/paths/~1api~1current-user~1product-tour/patch"
x-fern-sdk-group-name: users
x-fern-sdk-method-name: update_product_tour
x-fern-audiences:
- internal

/api/prompts/:
get:
$ref: "./resources/prompts.yaml#/paths/~1api~1prompts/get"
Expand Down
2 changes: 1 addition & 1 deletion fern/openapi/resources/prompts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ components:
type: integer
model_version:
title: Prompt Version ID
type: string
type: integer
created_by:
anyOf:
- type: integer
Expand Down
Loading