Rename project from any-llm to laravel-llm

- Remove old any-llm related files (Dockerfile, config.yml, web/, setup-laravel.sh)
- Update README.md with new Laravel LLM Gateway documentation
- Keep docker-compose.yml with laravel-llm container names
- Clean project structure for Laravel-only implementation
This commit is contained in:
wtrinkl
2025-11-18 22:05:05 +01:00
parent b1363aeab9
commit bef36c7ca2
33 changed files with 1341 additions and 2930 deletions

View File

@@ -2,8 +2,9 @@
namespace App\Services;
use App\Models\UsageLog;
use App\Models\GatewayUser;
use App\Models\LlmRequest;
use App\Models\User;
use App\Models\UserProviderCredential;
use Illuminate\Support\Facades\DB;
class StatisticsService
@@ -11,27 +12,34 @@ class StatisticsService
/**
* Get dashboard overview statistics
*/
public function getDashboardStats()
public function getDashboardStats(): array
{
return [
'total_users' => GatewayUser::count(),
'active_users' => GatewayUser::active()->count(),
'blocked_users' => GatewayUser::blocked()->count(),
'total_requests_today' => UsageLog::today()->count(),
'total_spend_today' => UsageLog::today()->sum('cost') ?? 0,
'total_tokens_today' => UsageLog::today()->sum('total_tokens') ?? 0,
'total_spend_month' => UsageLog::whereMonth('timestamp', now()->month)->sum('cost') ?? 0,
'total_requests_month' => UsageLog::whereMonth('timestamp', now()->month)->count(),
'total_users' => User::count(),
'active_credentials' => UserProviderCredential::where('is_active', true)->count(),
'total_requests_today' => LlmRequest::whereDate('created_at', today())->count(),
'total_spend_today' => LlmRequest::whereDate('created_at', today())->sum('total_cost') ?? 0,
'total_tokens_today' => LlmRequest::whereDate('created_at', today())->sum('total_tokens') ?? 0,
'total_spend_month' => LlmRequest::whereMonth('created_at', now()->month)
->whereYear('created_at', now()->year)
->sum('total_cost') ?? 0,
'total_requests_month' => LlmRequest::whereMonth('created_at', now()->month)
->whereYear('created_at', now()->year)
->count(),
'avg_cost_per_request' => LlmRequest::whereMonth('created_at', now()->month)
->whereYear('created_at', now()->year)
->avg('total_cost') ?? 0,
];
}
/**
* Get usage breakdown by provider
*/
public function getUsageByProvider($days = 30)
public function getUsageByProvider(int $days = 30)
{
return UsageLog::selectRaw('provider, COUNT(*) as count, SUM(cost) as total_cost')
->where('timestamp', '>=', now()->subDays($days))
return LlmRequest::selectRaw('provider, COUNT(*) as count, SUM(total_cost) as total_cost, SUM(total_tokens) as total_tokens')
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->groupBy('provider')
->orderByDesc('count')
->get();
@@ -40,11 +48,12 @@ class StatisticsService
/**
* Get usage breakdown by model
*/
public function getUsageByModel($days = 30)
public function getUsageByModel(int $days = 30)
{
return UsageLog::selectRaw('model, COUNT(*) as count, SUM(total_tokens) as tokens, SUM(cost) as total_cost')
->where('timestamp', '>=', now()->subDays($days))
->groupBy('model')
return LlmRequest::selectRaw('model, provider, COUNT(*) as count, SUM(total_tokens) as tokens, SUM(total_cost) as total_cost')
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->groupBy('model', 'provider')
->orderByDesc('count')
->limit(10)
->get();
@@ -53,10 +62,11 @@ class StatisticsService
/**
* Get daily usage chart data
*/
public function getDailyUsageChart($days = 30)
public function getDailyUsageChart(int $days = 30)
{
return UsageLog::selectRaw('DATE(timestamp) as date, COUNT(*) as requests, SUM(cost) as cost, SUM(total_tokens) as tokens')
->where('timestamp', '>=', now()->subDays($days))
return LlmRequest::selectRaw('DATE(created_at) as date, COUNT(*) as requests, SUM(total_cost) as cost, SUM(total_tokens) as tokens')
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->groupBy('date')
->orderBy('date')
->get();
@@ -65,11 +75,13 @@ class StatisticsService
/**
* Get top users by spend
*/
public function getTopUsers($limit = 10)
public function getTopUsers(int $limit = 10)
{
return GatewayUser::withCount('usageLogs')
->withSum('usageLogs', 'cost')
->orderByDesc('usage_logs_sum_cost')
return User::select('users.*')
->withCount('llmRequests')
->withSum('llmRequests as total_cost', 'total_cost')
->withSum('llmRequests as total_tokens', 'total_tokens')
->orderByDesc('total_cost')
->limit($limit)
->get();
}
@@ -77,10 +89,10 @@ class StatisticsService
/**
* Get recent activity
*/
public function getRecentActivity($limit = 20)
public function getRecentActivity(int $limit = 20)
{
return UsageLog::with(['gatewayUser', 'apiKey'])
->orderByDesc('timestamp')
return LlmRequest::with('user')
->orderByDesc('created_at')
->limit($limit)
->get();
}
@@ -88,18 +100,82 @@ class StatisticsService
/**
* Get user statistics
*/
public function getUserStatistics($userId, $days = 30)
public function getUserStatistics(int $userId, int $days = 30)
{
return UsageLog::where('user_id', $userId)
->where('timestamp', '>=', now()->subDays($days))
return LlmRequest::where('user_id', $userId)
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->selectRaw('
COUNT(*) as total_requests,
SUM(prompt_tokens) as total_prompt_tokens,
SUM(completion_tokens) as total_completion_tokens,
SUM(total_tokens) as total_tokens,
SUM(cost) as total_cost,
AVG(total_tokens) as avg_tokens_per_request
SUM(total_cost) as total_cost,
AVG(total_tokens) as avg_tokens_per_request,
AVG(total_cost) as avg_cost_per_request,
AVG(response_time_ms) as avg_response_time_ms
')
->first();
}
/**
* Get provider usage over time
*/
public function getProviderUsageOverTime(int $days = 30)
{
return LlmRequest::selectRaw('DATE(created_at) as date, provider, COUNT(*) as count, SUM(total_cost) as cost')
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->groupBy('date', 'provider')
->orderBy('date')
->get()
->groupBy('provider');
}
/**
* Get cost trends
*/
public function getCostTrends(int $days = 30)
{
$data = LlmRequest::selectRaw('
DATE(created_at) as date,
SUM(total_cost) as daily_cost,
AVG(total_cost) as avg_request_cost,
COUNT(*) as request_count
')
->where('created_at', '>=', now()->subDays($days))
->where('status', 'success')
->groupBy('date')
->orderBy('date')
->get();
return [
'daily_data' => $data,
'total_cost' => $data->sum('daily_cost'),
'avg_daily_cost' => $data->avg('daily_cost'),
'total_requests' => $data->sum('request_count'),
];
}
/**
* Get error statistics
*/
public function getErrorStats(int $days = 30)
{
return [
'total_errors' => LlmRequest::where('created_at', '>=', now()->subDays($days))
->where('status', '!=', 'success')
->count(),
'errors_by_status' => LlmRequest::selectRaw('status, COUNT(*) as count')
->where('created_at', '>=', now()->subDays($days))
->where('status', '!=', 'success')
->groupBy('status')
->get(),
'errors_by_provider' => LlmRequest::selectRaw('provider, COUNT(*) as count')
->where('created_at', '>=', now()->subDays($days))
->where('status', '!=', 'success')
->groupBy('provider')
->get(),
];
}
}