Skip to content

Commit fbb8078

Browse files
authored
Merge pull request #38 from iamboyoungkim/feature/eks-llm-examples
Feature/eks llm examples
2 parents 0189157 + 5e352eb commit fbb8078

39 files changed

Lines changed: 2570 additions & 0 deletions
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# =============================================================================
2+
# Agentic AI Platform — 앱 환경 설정 템플릿
3+
# cp .env.example .env 후 실제 값으로 수정하세요.
4+
# ⚠️ .env 파일은 .gitignore에 포함되어 있습니다. 절대 커밋하지 마세요.
5+
# =============================================================================
6+
7+
# --- Bifrost Gateway ---
8+
BIFROST_ENDPOINT=http://bifrost.ai-inference.svc.cluster.local:8080/v1
9+
BIFROST_API_KEY=test-1234
10+
11+
# --- Model names (Bifrost provider/model 형식) ---
12+
MODEL_SIMPLE=self-hosted-vllm/qwen3-8b
13+
MODEL_COMPLEX=bedrock/global.anthropic.claude-haiku-4-5-20251001-v1:0
14+
MODEL_DOCUMENT=self-hosted-vllm/qwen3-8b
15+
MODEL_CLASSIFIER=self-hosted-vllm/qwen3-8b
16+
MODEL_EVALUATOR=self-hosted-vllm/qwen3-8b
17+
18+
# --- Langfuse (leave empty to disable tracing) ---
19+
LANGFUSE_SECRET_KEY=sk-lf-your-secret-key
20+
LANGFUSE_PUBLIC_KEY=pk-lf-your-public-key
21+
LANGFUSE_HOST=http://langfuse.observability.svc.cluster.local:3000

eks-agentic-ai-platform/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.env
2+
.env.production
3+
.venv/
4+
.kiro/
5+
__pycache__/
6+
source.zip
7+
draft.md
8+
draft.txt
9+
diagrams/

0 commit comments

Comments
 (0)