monacopilot 0.11.6 → 0.11.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 +17 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,29 +11,28 @@
|
|
|
11
11
|
### Table of Contents
|
|
12
12
|
|
|
13
13
|
- [Examples](#examples)
|
|
14
|
-
- [
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
14
|
+
- [Demo](#demo)
|
|
15
|
+
- [Installation](#installation)
|
|
16
|
+
- [Usage](#usage)
|
|
17
|
+
- [API Handler](#api-handler)
|
|
18
|
+
- [Register Completion with the Monaco Editor](#register-completion-with-the-monaco-editor)
|
|
19
|
+
- [Register Completion Options](#register-completion-options)
|
|
20
|
+
- [Get Completions in Real-Time](#get-completions-in-real-time)
|
|
21
|
+
- [Manually Trigger Completions](#manually-trigger-completions)
|
|
22
|
+
- [Trigger Completions with a Keyboard Shortcut](#trigger-completions-with-a-keyboard-shortcut)
|
|
23
|
+
- [Trigger Completions with an Editor Action](#trigger-completions-with-an-editor-action)
|
|
24
|
+
- [Multi-File Context](#multi-file-context)
|
|
25
|
+
- [Filename](#filename)
|
|
26
|
+
- [Completions for Specific Technologies](#completions-for-specific-technologies)
|
|
27
|
+
- [Max Context Lines](#max-context-lines)
|
|
28
|
+
- [Handling Errors](#handling-errors)
|
|
29
|
+
- [Custom Request Handler](#custom-request-handler)
|
|
30
30
|
- [Copilot Options](#copilot-options)
|
|
31
31
|
- [Changing the Provider and Model](#changing-the-provider-and-model)
|
|
32
32
|
- [Custom Model](#custom-model)
|
|
33
33
|
- [Completion Request Options](#completion-request-options)
|
|
34
34
|
- [Custom Headers for AI Model Requests](#custom-headers-for-ai-model-requests)
|
|
35
35
|
- [Using a Different Language for the API Handler](#using-a-different-language-for-the-api-handler)
|
|
36
|
-
- [Select and Edit](#select-and-edit)
|
|
37
36
|
- [Contributing](#contributing)
|
|
38
37
|
|
|
39
38
|
### Examples
|
|
@@ -46,9 +45,7 @@ Here are some examples of how to integrate Monacopilot into your project:
|
|
|
46
45
|
- [Remix](https://github.com/arshad-yaseen/monacopilot/tree/main/examples/remix)
|
|
47
46
|
- [Vue](https://github.com/arshad-yaseen/monacopilot/tree/main/examples/vue)
|
|
48
47
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
Monacopilot provides inline completions, offering real-time, AI-powered, context-aware code suggestions as you type.
|
|
48
|
+
### Demo
|
|
52
49
|
|
|
53
50
|
[Inline Completions Demo Video](https://github.com/user-attachments/assets/f2ec4ae1-f658-4002-af9c-c6b1bbad70d9)
|
|
54
51
|
|
|
@@ -649,12 +646,6 @@ registerCompletion(monaco, editor, {
|
|
|
649
646
|
});
|
|
650
647
|
```
|
|
651
648
|
|
|
652
|
-
## Select and Edit
|
|
653
|
-
|
|
654
|
-
Select and Edit is a feature that allows you to select code from the editor and edit it inline with AI assistance.
|
|
655
|
-
|
|
656
|
-
This feature is coming soon™️.
|
|
657
|
-
|
|
658
649
|
## Contributing
|
|
659
650
|
|
|
660
651
|
For guidelines on contributing, please read the [contributing guide](https://github.com/arshad-yaseen/monacopilot/blob/main/CONTRIBUTING.md).
|