Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 870 Bytes

File metadata and controls

39 lines (27 loc) · 870 Bytes

Neural HackPad - Developer Assistant API 💻🧠

Neural HackPad is a memory-enhanced, GPT-4 powered developer assistant designed to help you with code problems, architecture, documentation, and design decisions — all while keeping your session history organized by user.

Features

  • Per-user memory across sessions
  • Real-time programming Q&A
  • Lightweight Flask API
  • Stores and retrieves conversation history

Setup

pip install -r requirements.txt
export OPENAI_API_KEY=your-key-here
python main.py

API Usage

POST /ask

{
  "user_id": "john@example.com",
  "query": "How do I implement a thread-safe queue in Python?"
}

GET /history/<user_id>

Returns last 10+ interactions for that user.

Use Cases

  • Coding assistant for teams
  • Technical documentation Q&A bot
  • Custom AI developer with persistent memory