HTTP server that enhances vague prompts using AI with codebase context.
Install the auggie CLI and authenticate:
npm install -g @augmentcode/auggie@prerelease
auggie login# Start server with workspace directory (from the context directory)
cd examples/python-sdk/context
python -m prompt_enhancer_server .
# Or run directly
python prompt_enhancer_server/main.py .curl -X POST http://localhost:3001/enhance \
-H "Content-Type: application/json" \
-d '{"prompt": "fix the bug"}'Response:
{
"original": "fix the bug",
"enhanced": "Fix the bug in the authentication system. Specifically, investigate the login function..."
}curl "http://localhost:3001/health"