Skip to content

Commit c920265

Browse files
authored
Merge pull request #50 from RETR0-OS/copilot/update-documentation-for-modelforge
Complete documentation restructure for ModelForge v2.0 with Windows installation guides
2 parents efd284a + 0a81deb commit c920265

File tree

27 files changed

+5707
-1154
lines changed

27 files changed

+5707
-1154
lines changed

Frontend/README.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

ModelForge/app.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async def health_check():
166166
"""Health check endpoint."""
167167
return {
168168
"status": "healthy",
169-
"version": "2.0.0",
169+
"version": "2.0.1",
170170
"message": "ModelForge is running",
171171
}
172172

@@ -180,8 +180,8 @@ async def get_info():
180180

181181
return {
182182
"name": "ModelForge",
183-
"version": "2.0.0",
184-
"description": "Modular fine-tuning platform",
183+
"version": "2.0.1",
184+
"description": "No-code fine-tuning platform",
185185
"available_providers": ProviderFactory.get_available_providers(),
186186
"available_strategies": StrategyFactory.get_available_strategies(),
187187
"supported_tasks": [
@@ -197,7 +197,7 @@ async def get_info():
197197
async def root():
198198
"""Root API endpoint."""
199199
return {
200-
"message": "Welcome to ModelForge API v2.0",
200+
"message": "Welcome to ModelForge API v2",
201201
"docs": "/docs",
202202
"health": "/api/health",
203203
"info": "/api/info",

0 commit comments

Comments
 (0)