monacopilot 0.15.6 → 0.15.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +15 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,23 @@
1
+ [![npm version](https://img.shields.io/npm/v/monacopilot.svg)](https://www.npmjs.com/package/monacopilot)
2
+ [![License](https://img.shields.io/npm/l/monacopilot.svg)](https://github.com/arshad-yaseen/monacopilot/blob/main/LICENSE)
3
+
1
4
  ![Monacopilot Banner](https://i.postimg.cc/GhpGVjVG/monacopilot-banner.png)
2
5
 
3
6
  # Monacopilot
4
7
 
5
8
  **Monacopilot** is a powerful and customizable AI auto-completion plugin for the Monaco Editor. Inspired by GitHub Copilot.
6
9
 
10
+ ### Features
11
+
12
+ - 🎯 Multiple AI Provider Support (Anthropic, OpenAI, Groq, Google)
13
+ - 🔄 Real-time Code Completions
14
+ - ⚡️ Efficient Caching System
15
+ - 🎨 Context-Aware Suggestions
16
+ - 🛠️ Customizable Completion Behavior
17
+ - 📦 Framework Agnostic
18
+ - 🔌 Custom Model Support
19
+ - 🎮 Manual Trigger Support
20
+
7
21
  ### Motivation
8
22
 
9
23
  ![Monacopilot Motivation](https://i.postimg.cc/c4GM7q3Z/motivation.png)
@@ -614,7 +628,7 @@ While the example in this documentation uses JavaScript/Node.js (which is recomm
614
628
  - The prompt should instruct the model to return only the completion text, without any additional formatting or explanations.
615
629
  - The completion text should be ready for direct insertion into the editor.
616
630
 
617
- Check out the [prompt.ts](https://github.com/arshad-yaseen/monacopilot/blob/main/src/helpers/completion/prompt.ts) file to see how Monacopilot generates the prompt. This will give you an idea of how to structure the prompt for your LLM to achieve the best completions.
631
+ Check out the [prompt.ts](https://github.com/arshad-yaseen/monacopilot/blob/main/src/helpers/prompt.ts) file to see how Monacopilot generates the prompt. This will give you an idea of how to structure the prompt for your LLM to achieve the best completions.
618
632
 
619
633
  ### Metadata Overview
620
634
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monacopilot",
3
- "version": "0.15.6",
3
+ "version": "0.15.8",
4
4
  "description": "AI auto-completion plugin for Monaco Editor",
5
5
  "main": "./build/index.js",
6
6
  "module": "./build/index.mjs",