Skip to content
Merged
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
1 change: 1 addition & 0 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
num_predict: number
top_k: number
top_p: number
min_p: number
tfs_z: number
typical_p: number
repeat_last_n: number
Expand Down Expand Up @@ -76,7 +77,7 @@
function: {
name: string;
arguments: {
[key: string]: any;

Check warning on line 80 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
};
};
}
Expand All @@ -89,15 +90,15 @@
type?: string;
parameters?: {
type?: string;
$defs?: any;

Check warning on line 93 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
items?: any;

Check warning on line 94 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
required?: string[];
properties?: {
[key: string]: {
type?: string | string[];
items?: any;

Check warning on line 99 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
description?: string;
enum?: any[];

Check warning on line 101 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
};
};
};
Expand Down Expand Up @@ -267,9 +268,9 @@
details: ModelDetails
messages: Message[]
modified_at: Date
model_info: Map<string, any>,

Check warning on line 271 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
capabilities: string[],
projector_info?: Map<string, any>

Check warning on line 273 in src/interfaces.ts

View workflow job for this annotation

GitHub Actions / test

Unexpected any. Specify a different type
}

export interface VersionResponse {
Expand Down
Loading