Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/spec-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
FILE_PATH='orchestration/src/main/resources/spec/orchestration.yaml'
;;
prompt-registry)
API_URL="$API_BASE_URL/AI/prompt-registry/contents/src/spec/prompt-registry.yaml?ref=$REF"
API_URL="$API_BASE_URL/AI/prompt-registry/contents/src/spec/generated/prompt-registry-combined.yaml?ref=$REF"
FILE_PATH='core-services/prompt-registry/src/main/resources/spec/prompt-registry.yaml'
;;
esac
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public OrchestrationConfigPostResponse createUpdateOrchestrationConfig(
}

final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs").build().toUriString();
UriComponentsBuilder.fromPath("/registry/v2/orchestrationConfigs").build().toUriString();

final MultiValueMap<String, String> localVarQueryParams =
new LinkedMultiValueMap<String, String>();
Expand Down Expand Up @@ -171,7 +171,7 @@ public OrchestrationConfigDeleteResponse deleteOrchestrationConfig(
final Map<String, Object> localVarPathParams = new HashMap<String, Object>();
localVarPathParams.put("orchestrationConfigId", orchestrationConfigId);
final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs/{orchestrationConfigId}")
UriComponentsBuilder.fromPath("/registry/v2/orchestrationConfigs/{orchestrationConfigId}")
.buildAndExpand(localVarPathParams)
.toUriString();

Expand Down Expand Up @@ -257,7 +257,8 @@ public File exportOrchestrationConfig(
final Map<String, Object> localVarPathParams = new HashMap<String, Object>();
localVarPathParams.put("orchestrationConfigId", orchestrationConfigId);
final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs/{orchestrationConfigId}/export")
UriComponentsBuilder.fromPath(
"/registry/v2/orchestrationConfigs/{orchestrationConfigId}/export")
.buildAndExpand(localVarPathParams)
.toUriString();

Expand Down Expand Up @@ -347,7 +348,7 @@ public OrchestrationConfigGetResponse getOrchestrationConfigByUuid(
final Map<String, Object> localVarPathParams = new HashMap<String, Object>();
localVarPathParams.put("orchestrationConfigId", orchestrationConfigId);
final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs/{orchestrationConfigId}")
UriComponentsBuilder.fromPath("/registry/v2/orchestrationConfigs/{orchestrationConfigId}")
.buildAndExpand(localVarPathParams)
.toUriString();

Expand Down Expand Up @@ -427,7 +428,9 @@ public OrchestrationConfigPostResponse importOrchestrationConfig(
final Object localVarPostBody = null;

final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs/import").build().toUriString();
UriComponentsBuilder.fromPath("/registry/v2/orchestrationConfigs/import")
.build()
.toUriString();

final MultiValueMap<String, String> localVarQueryParams =
new LinkedMultiValueMap<String, String>();
Expand Down Expand Up @@ -546,7 +549,7 @@ public OrchestrationConfigListResponse listOrchestrationConfigHistory(
localVarPathParams.put("model_name", modelName);
final String localVarPath =
UriComponentsBuilder.fromPath(
"/lm/scenarios/{scenario}/orchestrationConfigs/{name}/versions/{version}/models/{model_name}/history")
"/registry/v2/scenarios/{scenario}/orchestrationConfigs/{name}/versions/{version}/models/{model_name}/history")
.buildAndExpand(localVarPathParams)
.toUriString();

Expand Down Expand Up @@ -651,7 +654,7 @@ public OrchestrationConfigListResponse listOrchestrationConfigs(
final Object localVarPostBody = null;

final String localVarPath =
UriComponentsBuilder.fromPath("/lm/orchestrationConfigs").build().toUriString();
UriComponentsBuilder.fromPath("/registry/v2/orchestrationConfigs").build().toUriString();

final MultiValueMap<String, String> localVarQueryParams =
new LinkedMultiValueMap<String, String>();
Expand Down
Loading