Release v3.1: Repository Intelligence

- Repository indexing (Python, C++, Arduino, JS, HTML, CSS)
- Semantic code search with natural language
- Style signature scanning and application
- Shadow suggestion engine (proactive hints)
- Web interface with live code workspace
- Dark/Light theme support
- Session management (rename/delete)
- Forge Theory mode selector
- 11/11 tests passing (100%)
- Comprehensive documentation
This commit is contained in:
JamesTheGiblet 2025-12-29 14:03:42 +00:00
parent 2b775903a6
commit d28a737c15
6 changed files with 829 additions and 224 deletions

1037
README.md

File diff suppressed because it is too large Load diff

View file

@ -965,6 +965,18 @@ if SERVER_AVAILABLE:
async def favicon():
return FileResponse(Path(__file__).parent / "icons" / "icon.png")
@app.get("/favicon-16x16.png", include_in_schema=False)
async def favicon_16():
return FileResponse(Path(__file__).parent / "icons" / "favicon-16x16.png")
@app.get("/favicon-32x32.png", include_in_schema=False)
async def favicon_32():
return FileResponse(Path(__file__).parent / "icons" / "favicon-32x32.png")
@app.get("/favicon-192x192.png", include_in_schema=False)
async def favicon_192():
return FileResponse(Path(__file__).parent / "icons" / "favicon-192x192.png")
@app.post("/api/chat")
async def chat_endpoint(request: ChatRequest):
response = server_buddai.chat(request.message, force_model=request.model, forge_mode=request.forge_mode)

View file

@ -4,6 +4,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="192x192" href="/favicon-192x192.png">
<meta name="theme-color" content="#1e1e1e">
<title>BuddAI Web</title>
<script src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>

BIN
icons/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

BIN
icons/favicon-192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
icons/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,017 B