Skip to content
Merged
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
17 changes: 0 additions & 17 deletions workspaces/ai-integrations/.changeset/ai-model-server-schema.md

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# @red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-model-server

## 0.2.0

### Minor Changes

- 8bf7bc3: Add AiModelServerAPI kind (`spec.type: ai-model-server`) in a dedicated
catalog-model package with types, JSON schema, KindValidator, type guard,
and CatalogModelLayer registration. Uses a dedicated kind to avoid
colliding with the upstream API kind; the schema mirrors
backstage/backstage#34476 exactly. The backend module registers the
AiModelServerAPI kind with the catalog via `catalogModelExtensionPoint`.

The model catalog entity provider now emits a single AiModelServerAPI
entity per model server instead of separate Component, Resource, and API
entities. Model names are collected into `spec.models.available`.

### Patch Changes

- Updated dependencies [8bf7bc3]
- @red-hat-developer-hub/backstage-plugin-catalog-model-ai-model-server@0.2.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-model-server",
"version": "0.1.0",
"version": "0.2.0",
"license": "Apache-2.0",
"description": "The ai-model-server backend module for the catalog plugin. Registers the AiModelServerAPI kind.",
"main": "src/index.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-resource-agent

## 0.2.1

### Patch Changes

- 8bf7bc3: Add AiModelServerAPI kind (`spec.type: ai-model-server`) in a dedicated
catalog-model package with types, JSON schema, KindValidator, type guard,
and CatalogModelLayer registration. Uses a dedicated kind to avoid
colliding with the upstream API kind; the schema mirrors
backstage/backstage#34476 exactly. The backend module registers the
AiModelServerAPI kind with the catalog via `catalogModelExtensionPoint`.

The model catalog entity provider now emits a single AiModelServerAPI
entity per model server instead of separate Component, Resource, and API
entities. Model names are collected into `spec.models.available`.

## 0.2.0

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-resource-agent",
"version": "0.2.0",
"version": "0.2.1",
"license": "Apache-2.0",
"description": "The ai-resource-agent backend module for the catalog plugin. Registers the agent specType for AiResource entities.",
"main": "src/index.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-resource-extensions

## 0.4.0

### Minor Changes

- 238650c: Rename package from the accidentally doubled
`catalog-backend-module-catalog-backend-module-ai-resource-extensions` path/name
to `catalog-backend-module-ai-resource-extensions`.

## 0.3.0

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-catalog-backend-module-ai-resource-extensions",
"version": "0.3.0",
"version": "0.4.0",
"license": "Apache-2.0",
"description": "The catalog-backend-module-ai-resource-extensions backend module for the catalog plugin.",
"main": "src/index.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @red-hat-developer-hub/backstage-plugin-catalog-backend-module-model-catalog

## 1.0.0

### Major Changes

- 8bf7bc3: Add AiModelServerAPI kind (`spec.type: ai-model-server`) in a dedicated
catalog-model package with types, JSON schema, KindValidator, type guard,
and CatalogModelLayer registration. Uses a dedicated kind to avoid
colliding with the upstream API kind; the schema mirrors
backstage/backstage#34476 exactly. The backend module registers the
AiModelServerAPI kind with the catalog via `catalogModelExtensionPoint`.

The model catalog entity provider now emits a single AiModelServerAPI
entity per model server instead of separate Component, Resource, and API
entities. Model names are collected into `spec.models.available`.

### Patch Changes

- Updated dependencies [8bf7bc3]
- @red-hat-developer-hub/backstage-plugin-catalog-model-ai-model-server@0.2.0

## 0.11.0

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-catalog-backend-module-model-catalog",
"version": "0.11.0",
"version": "1.0.0",
"license": "Apache-2.0",
"description": "The model-catalog backend module for the catalog plugin.",
"main": "src/index.ts",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# @red-hat-developer-hub/backstage-plugin-catalog-model-ai-model-server

## 0.2.0

### Minor Changes

- 8bf7bc3: Add AiModelServerAPI kind (`spec.type: ai-model-server`) in a dedicated
catalog-model package with types, JSON schema, KindValidator, type guard,
and CatalogModelLayer registration. Uses a dedicated kind to avoid
colliding with the upstream API kind; the schema mirrors
backstage/backstage#34476 exactly. The backend module registers the
AiModelServerAPI kind with the catalog via `catalogModelExtensionPoint`.

The model catalog entity provider now emits a single AiModelServerAPI
entity per model server instead of separate Component, Resource, and API
entities. Model names are collected into `spec.models.available`.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-catalog-model-ai-model-server",
"version": "0.1.0",
"version": "0.2.0",
"license": "Apache-2.0",
"description": "Catalog model types and validator for AiModelServerAPI entities (spec.type: ai-model-server).",
"main": "src/index.ts",
Expand Down
Loading