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

@@ -35,6 +35,9 @@
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Provider
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Model
</th>
@@ -44,6 +47,9 @@
<th class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider">
Output Price
</th>
<th class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">
Status
</th>
<th class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider">
Actions
</th>
@@ -53,7 +59,10 @@
@foreach($modelPricing as $model)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">
{{ $model->model_key }}
{{ $model->provider }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $model->model }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-right text-blue-600 font-semibold">
{{ $model->input_price_formatted }}
@@ -61,10 +70,21 @@
<td class="px-6 py-4 whitespace-nowrap text-sm text-right text-green-600 font-semibold">
{{ $model->output_price_formatted }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-center">
@if($model->is_active)
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">
Active
</span>
@else
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-gray-100 text-gray-800">
Inactive
</span>
@endif
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<a href="{{ route('model-pricing.edit', $model->model_key) }}"
<a href="{{ route('model-pricing.edit', $model->id) }}"
class="text-indigo-600 hover:text-indigo-900 mr-3">Edit</a>
<form action="{{ route('model-pricing.destroy', $model->model_key) }}"
<form action="{{ route('model-pricing.destroy', $model->id) }}"
method="POST" class="inline"
onsubmit="return confirm('Are you sure?');">
@csrf