Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
muquifuler authored Apr 18, 2023
1 parent 22cb8e1 commit 1b0961d
Show file tree
Hide file tree
Showing 10 changed files with 2,721 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "iassistance" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
69 changes: 69 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<<<<<<< HEAD
# iassistance README

This is the README for your extension "iassistance". After writing up a brief description, we recommend including the following sections.

## Features

Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.

For example if there is an image subfolder under your extension project workspace:

\!\[feature X\]\(images/feature-x.png\)

> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
## Requirements

If you have any requirements or dependencies, add a section describing those and how to install and configure them.

## Extension Settings

Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.

For example:

This extension contributes the following settings:

* `myExtension.enable`: Enable/disable this extension.
* `myExtension.thing`: Set to `blah` to do something.

## Known Issues

Calling out known issues can help limit users opening duplicate issues against your extension.

## Release Notes

Users appreciate release notes as you update your extension.

### 1.0.0

Initial release of ...

### 1.0.1

Fixed issue #.

### 1.1.0

Added features X, Y, and Z.

---

## Working with Markdown

You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:

* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
* Toggle preview (`Shift+Cmd+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
* Press `Ctrl+Space` (Windows, Linux, macOS) to see a list of Markdown snippets

## For more information

* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)

**Enjoy!**
=======
# IAssistance
>>>>>>> 5cd039109f5a96db7e0672190d19defdde8e1fbe
185 changes: 185 additions & 0 deletions extension.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
/*
*
* Crea nuevo codigo en cualquier lenguaje, refactoriza, comenta, debuggea, crea proyectos con
* secuencias de comandos en terminal, y obten feedback con chatGPT.
*
*/


const vscode = require('vscode');
const os = require('os');
const { Configuration, OpenAIApi } = require("openai");

function generatePrompt(prompt) {
return `${prompt[0].toUpperCase() + prompt.slice(1).toLowerCase()}`;
}

async function openaiCon(prompt, max_tokens) {
const configuration = new Configuration({
apiKey,
});
const openai = new OpenAIApi(configuration);
try {
const completion = await openai.createCompletion({
model: "text-davinci-003",
prompt,
temperature: 0.2,
max_tokens,
});
return completion.data.choices[0].text;
} catch (error) {
console.log(error);
throw new Error(`OpenAI request failed with status code ${error.response.status}`);
}
}

function activate(context) {

console.log('Congratulations, your extension "iassistance" is now active!');

let disposables = [
vscode.commands.registerCommand('iassistance.Refactor', async function () {
vscode.window.showQuickPick(["Opción 1", "Opción 2", "Opción 3"]).then((opcion) => {
if (opcion) {
vscode.window.showInformationMessage("Has seleccionado: " + opcion);
}
});
}),

vscode.commands.registerCommand('iassistance.IAssistance', async function () {

const editor = vscode.window.activeTextEditor;
let res = await vscode.window.showInputBox();

const document = editor.document;
const selection = editor.selection;
let code = document.getText();
try {
if(res.substring(0,2) == "-R"){
// Refactor
if (editor) {
let range;
if(!selection.isEmpty){
code = document.getText(selection);
range = new vscode.Range(selection.start, selection.end);
}else{
range = new vscode.Range(0, 0, document.lineCount, 0);
}

let prompt = generatePrompt("MUESTRA SOLO CODIGO, ES OBLIGATORIO QUE INCLUYAS TODO EL CODIGO ORIGINAL MENOS EL QUE TIENES QUE CAMBIAR, Refactoriza y Arregla este codigo FIJATE INCLUSO EN LOS PEQUEÑOS DETALLES: "+code+" TEN EN CUENTA QUE DEBERAS: "+res+".");
const result = await openaiCon(prompt, 2048);


editor.edit(editBuilder => {
editBuilder.replace(range, result);
})
const explainPrompt = generatePrompt("No te extiendas en la respuesta mas de 150 tokens, ¿Que hay diferente entre este codigo y el otro? Codigo anterior: "+code+". Codigo nuevo: "+result);
const explain = await openaiCon(explainPrompt, 150);
vscode.window.showInformationMessage(`IAssistance: ${explain}`);
} else {
vscode.window.showErrorMessage('No se ha abierto un archivo');
}
}else if(res.substring(0,2) == "-C"){
// Comment
if (editor) {
if(!selection.isEmpty) code = document.getText(selection);

let prompt = generatePrompt("MUESTRA SOLO EL CODIGO y COMENTARIOS, NO USES NINGUN TOKEN PARA NADA QUE NO SEA CODIGO NI COMENTARIOS, Comenta este codigo: "+code+". RECUERDA: Incluye todo el codigo original, "+res.substring(2)+".");
const result = await openaiCon(prompt, 2048);
let range;

if(!selection.isEmpty){
range = new vscode.Range(selection.start, selection.end);
}else{
range = new vscode.Range(0, 0, document.lineCount, 0);
}

editor.edit(editBuilder => {
editBuilder.replace(range, result);
})
} else {
vscode.window.showErrorMessage('No se ha abierto un archivo');
}
}else if(res.substring(0,2) == "-D"){
// Debug
}else if(res.substring(0,2) == "-I"){
// Secuencias de comandos
/**
* Se recomienda poner la shell que se quiere
*/
let prompt = generatePrompt('MUESTRA SOLO LO QUE PIDO, NO USES NINGÚN TOKEN PARA NADA QUE NO SEA LO QUE PIDO. \
¿Qué lista de comandos se deben ejecutar en orden para (hacerlo todo en una nueva carpeta): '+res.substring(2)+'? \
LO QUE PIDO: \
1. Separa los comandos con punto y coma (;). \
2. Utiliza opciones. Por ejemplo, usa -y en npm init -y. \
3. Pon nombres con sentido a los archivos y carpetas. \
4. Si tienes que crear un archivo package.json, asegúrate de que ningún comando anterior o posterior lo cree.');
//5. Que el ultimo comando inicie la aplicacion, node no es npm start sino node index.js');
let result = await openaiCon(prompt, 1000);

let prompt2 = generatePrompt('Devuelve unicamente los comandos con los cambios aplicados pero respetando el formato. NO USES NINGÚN TOKEN PARA NADA QUE NO SEA LO QUE PIDO. \
Aplica lo que pido: '+result+' \
LO QUE PIDO: \
1. Utiliza el comando New-Item en vez de touch \
2. Recuerda que cuando utlizas un comando de un framework como react, vite, next no hay que crear un package.json \
3. Si hay algun comando mal, corrigelo \
5. No pongas un punto al final \
6. No pongas nada que no sean comandos ni comentarios ni nada ');
let result2 = await openaiCon(prompt2, 1000);

let commands = result2.split(';');

const terminal = vscode.window.createTerminal();

for (let i = 0; i < commands.length; i++) {
const command = commands[i].trim();
console.log(command);
terminal.sendText(command);
}

let prompt_ = generatePrompt("Solo un resumen, no vayas comando por comando ¿Que hacen estos comandos? "+commands);
let result_ = await openaiCon(prompt_, 200);
vscode.window.showInformationMessage('IAssistance: '+result_);

}else if(res.substring(0,2) == "-F"){
// Preguntar cualquier cosa teniendo como contexto el codigo
if(!selection.isEmpty) code = document.getText(selection);
let prompt = generatePrompt("cuentame, "+res.substring(2)+". CONTEXTO: "+code);
const result = await openaiCon(prompt, 200);
vscode.window.showInformationMessage('IAssistance: '+result);
}else if(res.substring(0,2) == "-H"){
// Off-Topic puedes preguntar cualquier cosa
let prompt = generatePrompt(res.substring(2));
const result = await openaiCon(prompt, 200);
vscode.window.showInformationMessage('IAssistance: '+result);
}else{
// Añadir codigo al final
const prompt = generatePrompt("MUESTRA SOLO EL CODIGO, NO USES NINGUN TOKEN PARA NADA QUE NO SEA CODIGO, CONTEXTO: "+code+" PETICION: "+res+". (No autocompletes esto) "+editor.document.languageId);
const result = await openaiCon(prompt, 2048);

const lastLine = editor.document.lineAt(editor.document.lineCount - 1);
const position = new vscode.Position(editor.document.lineCount - 1, lastLine.range.end.character);
editor.edit(editBuilder => {
editBuilder.insert(position, result);
})

const explainPrompt = generatePrompt("Hablame sobre este codigo, no te extiendas mas de 150 tokens: "+result);
const explain = await openaiCon(explainPrompt, 150);

vscode.window.showInformationMessage(`IAssistance: ${explain}`);
}
} catch (error) {
vscode.window.showErrorMessage(`Error: ${error.message}`);
}
})];

//context.subscriptions.push(disposable);
context.subscriptions.push(...disposables);
}

function deactivate() {}

module.exports = {
activate,
deactivate
}
13 changes: 13 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"checkJs": false, /* Typecheck .js files. */
"lib": [
"ES2020"
]
},
"exclude": [
"node_modules"
]
}
Loading

0 comments on commit 1b0961d

Please sign in to comment.