This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LiteLLM & Langfuse İzlenebilirlik Sistemi Kurulum Rehberi | |
| Bu rehber; yerel dil modellerini (LM Studio) merkezi bir proxy (LiteLLM) üzerinden yönetmeyi ve tüm trafiği bir izleme paneli (Langfuse) üzerinden takip etmeyi sağlar. | |
| 1. Mimari Yapı | |
| Sistem, Docker üzerinde izole bir ağda (litellm-net) çalışan üç ana bileşenden oluşur: | |
| PostgreSQL 16: Veritabanı katmanı. | |
| Langfuse: İzleme ve analiz arayüzü. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| IP=$(hostname -I) | |
| echo "Installation started" | |
| install_node(){ | |
| sudo apt update -y | |
| sudo apt upgrade -y | |
| sudo apt install -y chromium-browser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| currentVersion="v2.0.0" | |
| repositoryName="weather-app" | |
| githubUserName="isakulaksiz" | |
| nameOfInstallFile="install.sh" | |
| getConfiguredClient() | |
| { | |
| if command -v curl &>/dev/null; then |