This repository contains a full-stack AI Code Assistant with:
- Located in
/backend - Run with
uvicorn main:app --reload - Uses HuggingFace Transformers to serve AI completions
- Located in
/frontend - Run with
npm install && npm run dev - Connects to the backend API
- Located in
/vscode-extension - Provides an editor integration to send code to backend and view suggestions
cd backend
pip install -r requirements.txt
uvicorn main:app --reloadcd frontend
npm install
npm run devcd vscode-extension
npm install
code .
# Press F5 to launch Extension HostTo deploy:
- Use Render for backend
- Use Vercel for frontend (set
REACT_APP_API_URL) - Publish the VS Code extension with
vsce