2023-12-20 09:36:55 +00:00
{
2024-06-02 13:42:29 +00:00
"name" : "fabelous-autocoder" ,
"displayName" : "Fabelous Autocoder" ,
2023-12-21 00:30:34 +00:00
"description" : "A simple to use Ollama autocompletion engine with options exposed and streaming functionality" ,
2024-08-19 11:51:41 +00:00
"version" : "0.1.69" ,
2023-12-21 00:27:42 +00:00
"icon" : "icon.png" ,
2024-06-02 13:42:29 +00:00
"publisher" : "fabel" ,
"license" : "CC BY-ND 4.0" ,
2023-12-22 07:52:29 +00:00
"bugs" : {
2024-06-02 13:42:29 +00:00
"url" : "https://gitea.fabelous.app/fabel/Fabelous-Autocoder/issues"
2023-12-22 07:52:29 +00:00
} ,
"sponsor" : {
"url" : "https://ko-fi.com/natehedge"
} ,
2023-12-20 09:36:55 +00:00
"repository" : {
"type" : "git" ,
2024-06-02 13:42:29 +00:00
"url" : "https://gitea.fabelous.app/fabel/Fabelous-Autocoder"
2023-12-20 09:36:55 +00:00
} ,
"engines" : {
2024-06-02 13:42:29 +00:00
"vscode" : "^1.89.0"
2023-12-20 09:36:55 +00:00
} ,
"categories" : [
2023-12-21 00:27:42 +00:00
"Machine Learning" ,
"Snippets" ,
"Programming Languages"
] ,
"keywords" : [
"ollama" ,
"gpt" ,
"coding" ,
"autocomplete" ,
"open source" ,
"assistant" ,
"ai" ,
"llm"
2023-12-20 09:36:55 +00:00
] ,
2023-12-22 08:03:11 +00:00
"galleryBanner" : {
"color" : "#f5ead1"
} ,
2023-12-20 09:36:55 +00:00
"activationEvents" : [
2023-12-21 00:27:42 +00:00
"onStartupFinished"
2023-12-20 09:36:55 +00:00
] ,
"main" : "./out/extension.js" ,
"contributes" : {
"configuration" : {
2024-06-02 14:48:14 +00:00
"title" : "Fabelous Autocoder" ,
2023-12-21 00:27:42 +00:00
"properties" : {
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.endpoint" : {
2023-12-21 00:27:42 +00:00
"type" : "string" ,
"default" : "http://localhost:11434/api/generate" ,
"description" : "The endpoint of the ollama REST API"
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.authentication" : {
2024-06-02 13:42:29 +00:00
"type" : "string" ,
"default" : "" ,
"description" : "Authorization Token for Ollama"
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.model" : {
2023-12-21 00:27:42 +00:00
"type" : "string" ,
2024-06-02 14:48:14 +00:00
"default" : "" ,
2023-12-21 00:27:42 +00:00
"description" : "The model to use for generating completions"
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.message header" : {
2023-12-21 00:27:42 +00:00
"type" : "string" ,
2024-03-11 18:27:51 +00:00
"editPresentation" : "multilineText" ,
"default" : "The following is a complete {LANG} file named {FILE_NAME} in the project {PROJECT_NAME}. Anything NOT code is written as a CODE COMMENT. \n\n```\n" ,
"description" : "Pseudo-system prompt, optimized for code completion. It is recommended to keep the format the same if modified. Leave blank for no formatting (raw)."
2023-12-21 00:27:42 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.max tokens predicted" : {
2023-12-21 00:27:42 +00:00
"type" : "integer" ,
2024-03-11 18:27:51 +00:00
"default" : 1000 ,
2023-12-21 00:27:42 +00:00
"description" : "The maximum number of tokens generated by the model."
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.prompt window size" : {
2023-12-21 00:27:42 +00:00
"type" : "integer" ,
"default" : 2000 ,
"description" : "The size of the prompt in characters. NOT tokens, so can be set about 1.5-2x the max tokens of the model (varies)."
2024-01-06 21:49:41 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.completion keys" : {
2024-01-06 21:49:41 +00:00
"type" : "string" ,
"default" : " " ,
"description" : "Character that the autocompletion item provider appear on. Multiple characters will be treated as different entries. REQUIRES RELOAD"
2024-01-06 23:33:17 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.response preview" : {
2024-01-06 23:33:17 +00:00
"type" : "boolean" ,
"default" : true ,
"description" : "Inline completion label will be the first line of response. Max is 10 tokens, but this is unlikely to be reached. If the first line is empty, the default label will be used. Not streamable, disable on slow devices."
2024-01-09 02:21:32 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.preview max tokens" : {
2024-01-09 02:21:32 +00:00
"type" : "integer" ,
2024-03-11 18:27:51 +00:00
"default" : 50 ,
2024-01-09 02:21:32 +00:00
"description" : "The maximum number of tokens generated by the model for the response preview. Typically not reached as the preview stops on newline. Recommended to keep very low due to computational cost."
2024-01-28 02:22:47 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.preview delay" : {
2024-01-28 02:22:47 +00:00
"type" : "number" ,
"default" : 1 ,
"description" : "Time to wait in seconds before starting inline preview generation. Prevents Ollama server from running briefly every time the completion key is pressed, which causes unnecessary compute usage. If you are not on a battery powered device, set this to 0 for a more responsive experience."
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.continue inline" : {
2024-01-28 02:22:47 +00:00
"type" : "boolean" ,
"default" : true ,
"description" : "Ollama continues autocompletion after what is previewed inline. Disabling disables that feature as some may find it irritating. Multiline completion is still accessible through the shortcut even after disabling."
2024-06-02 13:42:29 +00:00
2024-03-11 18:27:51 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.temperature" : {
2024-03-11 18:27:51 +00:00
"type" : "number" ,
"default" : 0.5 ,
"description" : "Temperature of the model. It is recommended to set it lower than you would for dialogue."
2024-06-02 13:42:29 +00:00
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.keep alive" : {
2024-06-02 13:42:29 +00:00
"type" : "number" ,
"default" : 10 ,
"description" : "Time in minutes before Ollama unloads the model."
} ,
2024-06-02 14:48:14 +00:00
"fabelous-autocoder.top p" : {
2024-06-02 13:42:29 +00:00
"type" : "number" ,
"description" : "Top p sampling for the model."
2023-12-21 00:27:42 +00:00
}
}
2023-12-21 06:33:07 +00:00
} ,
"commands" : [
{
2024-06-02 13:42:29 +00:00
"command" : "fabelous-autocoder.autocomplete" ,
2024-06-02 14:56:10 +00:00
"title" : "Fabelous autocompletion"
2023-12-21 06:33:07 +00:00
}
]
2023-12-21 00:27:42 +00:00
} ,
2023-12-20 09:36:55 +00:00
"scripts" : {
"vscode:prepublish" : "npm run compile" ,
2024-06-02 13:42:29 +00:00
"compile" : "tsc --skipLibCheck -p ./" ,
"package" : "npm run compile && vsce package" ,
2023-12-20 09:36:55 +00:00
"lint" : "eslint \"src/**/*.ts\"" ,
2024-06-02 13:42:29 +00:00
"watch" : "tsc --skipLibCheck -watch -p ./"
2023-12-20 09:36:55 +00:00
} ,
"devDependencies" : {
2024-06-02 13:42:29 +00:00
"@types/node" : "^20.12.8" ,
"@types/vscode" : "^1.89.0" ,
"@typescript-eslint/eslint-plugin" : "^7.8.0" ,
"@typescript-eslint/parser" : "^7.8.0" ,
"eslint" : "^8.57.0" ,
"typescript" : "^5.4.5"
2023-12-20 09:36:55 +00:00
} ,
"dependencies" : {
2024-06-02 13:42:29 +00:00
"axios" : "^1.6.8"
2023-12-20 09:36:55 +00:00
}
2023-12-21 00:27:42 +00:00
}