You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Note: in order not to introduce breaking changes, please keep the same data type (number, string, etc) if you want to change the default value. Do not use null or undefined for default value.
13
+
// Do not use nested objects, keep it single level. Prefix the key if you need to group them.
13
14
apiKey: '',
14
15
systemMessage: 'You are a helpful assistant.',
15
16
showTokensPerSecond: false,
@@ -36,6 +37,8 @@ export const CONFIG_DEFAULT = {
36
37
dry_penalty_last_n: -1,
37
38
max_tokens: -1,
38
39
custom: '',// custom json-stringified object
40
+
// experimental features
41
+
pyIntepreterEnabled: false,
39
42
};
40
43
exportconstCONFIG_INFO: Record<string,string>={
41
44
apiKey: 'Set the API Key if you are using --api-key option for the server.',
0 commit comments