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.
- package/README.md +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
|
+
[](https://www.npmjs.com/package/monacopilot)
|
|
2
|
+
[](https://github.com/arshad-yaseen/monacopilot/blob/main/LICENSE)
|
|
3
|
+
|
|
1
4
|

|
|
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
|

|
|
@@ -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/
|
|
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
|
|