Skip to content

Commit 4e12099

Browse files
committed
merged dev
1 parent e6f78a7 commit 4e12099

24 files changed

+136
-112
lines changed

mlflow/lib/index.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

mlflow/lib/mlflow.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

mlflow/lib/model-registry/ModelRegistryClient.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

mlflow/lib/model-registry/ModelVersionClient.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

mlflow/lib/tracking/ExperimentClient.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ declare class ExperimentClient {
5151
* Mark an experiment for deletion.
5252
*
5353
* @param {string} experiment_id ID of the associated experiment. (required)
54-
* @returns {void}
54+
* @returns {Promise<void>}
5555
* @throws {ApiError} If the API request fails
5656
*/
5757
deleteExperiment(experiment_id: string): Promise<void>;
5858
/**
5959
* Restore an experiment marked for deletion.
6060
*
6161
* @param {string} experiment_id ID of the associated experiment. (required)
62-
* @returns {void}
62+
* @returns {Promise<void>}
6363
* @throws {ApiError} If the API request fails
6464
*/
6565
restoreExperiment(experiment_id: string): Promise<void>;
@@ -68,7 +68,7 @@ declare class ExperimentClient {
6868
*
6969
* @param {string} experiment_id ID of the associated experiment. (required)
7070
* @param {string} new_name The experiment’s name is changed to the new name. The new name must be unique. (required)
71-
* @returns {void}
71+
* @returns {Promise<void>}
7272
* @throws {ApiError} If the API request fails
7373
*/
7474
updateExperiment(experiment_id: string, new_name: string): Promise<void>;
@@ -78,7 +78,7 @@ declare class ExperimentClient {
7878
* @param {string} experiment_id ID of the experiment under which to log the tag. (required)
7979
* @param {string} key Name of the tag. (required)
8080
* @param {string} value String value of the tag being logged. (required)
81-
* @returns {void}
81+
* @returns {Promise<void>}
8282
* @throws {ApiError} If the API request fails
8383
*/
8484
setExperimentTag(experiment_id: string, key: string, value: string): Promise<void>;

mlflow/lib/tracking/ExperimentClient.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

mlflow/lib/tracking/ExperimentClient.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mlflow/lib/tracking/RunClient.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { MetricHistoryResponse } from '../utils/interface.js';
12
declare class RunClient {
23
private baseUrl;
34
constructor(trackingUri: string);
@@ -172,7 +173,7 @@ declare class RunClient {
172173
* @returns {Promise<MetricHistory>} A promise that resolves with the values for the specified metric.
173174
* @throws {ApiError} If the API request fails.
174175
*/
175-
getMetricHistory(run_id: string, metric_key: string, page_token?: string, max_results?: number): Promise<object>;
176+
getMetricHistory(run_id: string, metric_key: string, page_token?: string, max_results?: number): Promise<MetricHistoryResponse>;
176177
/**
177178
* Search for runs that satisfy expressions. Search expressions can use Metric and Param keys.
178179
*
@@ -197,7 +198,7 @@ declare class RunClient {
197198
* @returns {Promise<SearchedRuns>} A promise that resovles with the runs that match the search criteria.
198199
* @throws {ApiError} If the API request fails.
199200
*/
200-
searchRuns(experiment_ids: Array<string>, filter: string, run_view_type?: 'ACTIVE_ONLY' | 'DELETED_ONLY' | 'ALL', max_results?: number, order_by?: Array<string>, page_token?: string): Promise<object>;
201+
searchRuns(experiment_ids: Array<string>, filter?: string, run_view_type?: 'ACTIVE_ONLY' | 'DELETED_ONLY' | 'ALL', max_results?: number, order_by?: Array<string>, page_token?: string): Promise<object>;
201202
/**
202203
* List artifacts for a run. Takes an optional artifact_path prefix which if specified, the response contains only
203204
* artifacts with the specified prefix.

mlflow/lib/tracking/RunClient.d.ts.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)