-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathremixAIDektop.ts
120 lines (99 loc) · 3.82 KB
/
remixAIDektop.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { ElectronBasePlugin, ElectronBasePluginClient } from "@remixproject/plugin-electron"
import { Profile } from "@remixproject/plugin-utils"
// use remix ai core
import { InferenceManager } from "../lib/InferenceServerManager"
import { cacheDir } from "../utils/config"
import { RemoteInferencer } from "@remix/remix-ai-core"
// import { isE2E } from "../main";
const profile = {
name: 'remixAID',
displayName: 'RemixAI Desktop',
maintainedBy: 'Remix',
description: 'RemixAI provides AI services to Remix IDE Desktop.',
kind: '',
documentation: 'https://remix-ide.readthedocs.io/en/latest/ai.html',
}
export class RemixAIDesktopPlugin extends ElectronBasePlugin {
clients: RemixAIDesktopPluginClient[] = []
constructor() {
super(profile, clientProfile, RemixAIDesktopPluginClient)
this.methods = [...super.methods]
}
}
const clientProfile: Profile = {
name: 'remixAID',
displayName: 'RemixAI Desktop',
maintainedBy: 'Remix',
description: 'RemixAI provides AI services to Remix IDE Desktop.',
kind: '',
documentation: 'https://remix-ide.readthedocs.io/en/latest/ai.html',
methods: ['initializeModelBackend', 'code_completion', 'code_insertion', 'code_generation', 'code_explaining', 'error_explaining', 'solidity_answer', 'generate']
}
class RemixAIDesktopPluginClient extends ElectronBasePluginClient {
readonly modelCacheDir: string = cacheDir
desktopInferencer:InferenceManager | RemoteInferencer = null
constructor (webContentsId: number, profile: Profile){
super(webContentsId, profile)
}
async onActivation(): Promise<void> {
this.onload(() => {
this.emit('activated')
})
}
async enable (){
console.log('RemixAI desktop plugin enabled')
this.emit('enabled')
}
async initializeModelBackend(local, generalModel?, completionModel?){
if (!local){
this.desktopInferencer = new RemoteInferencer()
} else if (generalModel || completionModel){
if (!this.desktopInferencer){
this.desktopInferencer = InferenceManager.getInstance(this.modelCacheDir)
if (this.desktopInferencer instanceof InferenceManager && generalModel) await this.desktopInferencer.init(generalModel)
if (this.desktopInferencer instanceof InferenceManager && completionModel) await this.desktopInferencer.init(completionModel)
} else {
return false // do not set event listener twice
}
} else {
throw new Error('No model provided')
}
// set event listeners
this.desktopInferencer.event.on('onStreamResult', (data) => {
this.emit('onStreamResult', data)
})
this.desktopInferencer.event.on('onInference', () => {
this.emit('onInference')
})
this.desktopInferencer.event.on('onInferenceDone', () => {
this.emit('onInferenceDone')
})
return true
}
async code_completion(prompt: string, promptAfter: string, ctxFiles=[], fileName: string="") {
// use general purpose model
return this.desktopInferencer.code_completion(prompt, promptAfter, ctxFiles, fileName)
}
async code_insertion(msg_pfx: string, msg_sfx: string, ctxFiles=[], fileName: string="") {
return this.desktopInferencer.code_insertion(msg_pfx, msg_sfx, ctxFiles, fileName)
}
async code_generation(prompt: string) {
return this.desktopInferencer.code_generation(prompt)
}
async code_explaining(code:string, context?:string) {
return this.desktopInferencer.code_explaining(code, context)
}
async error_explaining(prompt: string) {
return this.desktopInferencer.error_explaining(prompt)
}
async solidity_answer(prompt: string) {
return this.desktopInferencer.solidity_answer(prompt)
}
async generate(userPrompt): Promise<any> {
return this.desktopInferencer.generate(userPrompt)
}
changemodel(newModel: any){
/// dereference the current static inference object
/// set new one
}
}