Skip to content

Commit

Permalink
Regenerate the client schema
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed Feb 20, 2024
1 parent f9b3803 commit 916c04b
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1785,6 +1785,10 @@ export interface paths {
*/
get: operations["index_api_workflows_get"];
};
"/api/workflows/get_tool_predictions": {
/** Fetch predicted tools for a workflow */
post: operations["get_tool_predictions_api_workflows_get_tool_predictions_post"];
};
"/api/workflows/menu": {
/** Get workflows present in the tools panel. */
get: operations["get_workflow_menu_api_workflows_menu_get"];
Expand Down Expand Up @@ -5171,6 +5175,19 @@ export interface components {
/** Tags */
tags?: string[] | null;
};
/** GetToolPredictionsPayload */
GetToolPredictionsPayload: {
/**
* Remote Model URL
* @description Path to the deep learning model
*/
remote_model_url?: Record<string, never> | null;
/**
* Tool Sequence
* @description comma separated sequence of tool ids
*/
tool_sequence: Record<string, never>;
};
/**
* GroupCreatePayload
* @description Payload schema for creating a group.
Expand Down Expand Up @@ -22109,6 +22126,34 @@ export interface operations {
};
};
};
get_tool_predictions_api_workflows_get_tool_predictions_post: {
/** Fetch predicted tools for a workflow */
parameters?: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
"run-as"?: string | null;
};
};
requestBody: {
content: {
"application/json": components["schemas"]["GetToolPredictionsPayload"];
};
};
responses: {
/** @description Successful Response */
200: {
content: {
"application/json": Record<string, never>;
};
};
/** @description Validation Error */
422: {
content: {
"application/json": components["schemas"]["HTTPValidationError"];
};
};
};
};
get_workflow_menu_api_workflows_menu_get: {
/** Get workflows present in the tools panel. */
parameters?: {
Expand Down

0 comments on commit 916c04b

Please sign in to comment.