-
Notifications
You must be signed in to change notification settings - Fork 2
feat: update configuration files and improve type checking #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,11 +23,8 @@ OPENROUTER_API_KEY='your_openrouter_api_key_here' | |||||||||
| # AI Ga | ||||||||||
| AI_GATEWAY_API_KEY='your_api_key_here' | ||||||||||
|
|
||||||||||
| # Langfuse Configuration (optional, for monitoring and logging) | ||||||||||
| # Get your keys from https://langfuse.com | ||||||||||
| LANGFUSE_SECRET_KEY="sk-lf-your_secret_key_here" | ||||||||||
| LANGFUSE_PUBLIC_KEY="pk-lf-your_public_key_here" | ||||||||||
| LANGFUSE_BASE_URL="https://cloud.langfuse.com" | ||||||||||
| # Lamina Configuration | ||||||||||
| LMNR_PROJECT_API_KEY='your_project_api_key_here' | ||||||||||
|
Comment on lines
+26
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove quote characters from environment variable placeholder. The migration from Langfuse to Lamina configuration looks correct. However, environment variable values in Based on coding guidelines, environment variables should be stored without quotes. Apply this diff: # Lamina Configuration
-LMNR_PROJECT_API_KEY='your_project_api_key_here'
+LMNR_PROJECT_API_KEY=your_project_api_key_hereThis aligns with the pattern used by other variables in this file (e.g., lines 4-5, 24). 📝 Committable suggestion
Suggested change
🧰 Tools🪛 dotenv-linter (4.0.0)[warning] 27-27: [QuoteCharacter] The value has quote characters (', ") (QuoteCharacter) 🤖 Prompt for AI Agents |
||||||||||
|
|
||||||||||
| # Database (Postgres / PgVector) - Supabase Configuration | ||||||||||
| # Get from Supabase Dashboard > Project Settings > Database > Connection String (Session Pooler) | ||||||||||
|
|
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in comment: "Lamina" should be "Laminar". The correct product name is "Laminar", not "Lamina".