release: v0.3.112
This commit is contained in:
parent
71cd84dbbb
commit
5a727c0794
1 changed files with 17 additions and 0 deletions
|
|
@ -600,6 +600,21 @@ export type Config = {
|
||||||
extensions?: Array<string>;
|
extensions?: Array<string>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
lsp?: {
|
||||||
|
[key: string]: {
|
||||||
|
disabled: boolean;
|
||||||
|
} | {
|
||||||
|
command: Array<string>;
|
||||||
|
extensions?: Array<string>;
|
||||||
|
disabled?: boolean;
|
||||||
|
env?: {
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
|
initialization?: {
|
||||||
|
[key: string]: unknown;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* Additional instruction files or patterns to include
|
* Additional instruction files or patterns to include
|
||||||
*/
|
*/
|
||||||
|
|
@ -789,6 +804,7 @@ export type KeybindsConfig = {
|
||||||
export type ModeConfig = {
|
export type ModeConfig = {
|
||||||
model?: string;
|
model?: string;
|
||||||
temperature?: number;
|
temperature?: number;
|
||||||
|
top_p?: number;
|
||||||
prompt?: string;
|
prompt?: string;
|
||||||
tools?: {
|
tools?: {
|
||||||
[key: string]: boolean;
|
[key: string]: boolean;
|
||||||
|
|
@ -923,6 +939,7 @@ export type File = {
|
||||||
export type Mode = {
|
export type Mode = {
|
||||||
name: string;
|
name: string;
|
||||||
temperature?: number;
|
temperature?: number;
|
||||||
|
topP?: number;
|
||||||
model?: {
|
model?: {
|
||||||
modelID: string;
|
modelID: string;
|
||||||
providerID: string;
|
providerID: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue