-
Notifications
You must be signed in to change notification settings - Fork 9
refactor: gha #33
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
Merged
Merged
refactor: gha #33
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
3394920
ci: update GitHub Actions workflow for monorepo structure
a-klos 912dae7
ci: align GitHub Actions with Tiltfile patterns
a-klos ebf4629
Merge branch 'fix/migration-issues' into refactor/gha
a-klos df2fcfb
fix: rename document_reference_id_get method to document_reference (#40)
a-klos 01227cb
refactor: clean up imports and fix minor issues in chat-related compo…
a-klos 9d392c5
fix: update default model and base URL in StackitVllmSettings (#44)
a-klos d198ea4
chore: adjust README.md and add dot env example (#42)
a-klos 8c2e541
chore: enhance CI workflows for semantic release and linting processes
a-klos fe7a905
refactor: update module type and file extensions in configuration fil…
a-klos 027bb4e
fix: update semantic-release workflow to trigger on push events and m…
a-klos 6e77100
refactor: update launch.json and Tiltfile for service paths (#43)
a-klos 842091d
chore: update semantic release configuration and dependencies (#35)
a-klos 432b36c
refactor: update model provider (#45)
a-klos c991e52
chore: remove unnecessary triggers and output display in workflows
a-klos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| # RAG Template Environment Variables | ||
| # Copy this file to .env and fill in your actual values | ||
|
|
||
| # ============================================================================= | ||
| # S3 Object Storage Configuration (Required) | ||
| # ============================================================================= | ||
| S3_ACCESS_KEY_ID=your_s3_access_key_here | ||
| S3_SECRET_ACCESS_KEY=your_s3_secret_key_here | ||
|
|
||
| # ============================================================================= | ||
| # Basic Authentication (Required) | ||
| # ============================================================================= | ||
| BASIC_AUTH="foo:$apr1$ryE0iE7H$F2SlPDNoFdGoaHrcla2HL/" | ||
|
|
||
| # ============================================================================= | ||
| # Langfuse Configuration (Required for observability) | ||
| # ============================================================================= | ||
| LANGFUSE_PUBLIC_KEY=pk-lf-your-public-key-here | ||
| LANGFUSE_SECRET_KEY=sk-lf-your-secret-key-here | ||
|
|
||
| # Langfuse Initialization (Optional - for pre-creating organization/project) | ||
| LANGFUSE_INIT_ORG_ID="my-org" | ||
| LANGFUSE_INIT_PROJECT_ID="my-project" | ||
| LANGFUSE_INIT_PROJECT_PUBLIC_KEY=pk-lf-your-public-key-here | ||
| LANGFUSE_INIT_PROJECT_SECRET_KEY=sk-lf-your-secret-key-here | ||
| LANGFUSE_INIT_USER_EMAIL="user@stackit.cloud" | ||
| LANGFUSE_INIT_USER_NAME="stackiteer" | ||
| LANGFUSE_INIT_USER_PASSWORD="stackit123" | ||
|
|
||
| # ============================================================================= | ||
| # Frontend Authentication (Required) | ||
| # ============================================================================= | ||
| VITE_AUTH_USERNAME=foo | ||
| VITE_AUTH_PASSWORD=bar | ||
|
|
||
| # ============================================================================= | ||
| # LLM Provider API Keys (Choose one or more) | ||
| # ============================================================================= | ||
|
|
||
| # STACKIT AI Model Serving as provider (Recommended) | ||
| # A guide how to get your API key by using the STACKIT portal UI: https://docs.stackit.cloud/stackit/en/getting-started-with-the-stackit-portal-ui-319914591.html | ||
| # A guide how to get your API key by using the Product API: https://docs.stackit.cloud/stackit/en/getting-started-with-the-product-api-319914605.html | ||
| STACKIT_VLLM_API_KEY=your-stackit-vllm-api-key | ||
| STACKIT_EMBEDDER_API_KEY=your-stackit-embedder-api-key | ||
|
|
||
| # OpenAI (For RAGAS evaluation - Optional) | ||
| RAGAS_OPENAI_API_KEY=sk-your-openai-api-key-here | ||
|
|
||
| # ============================================================================= | ||
| # Confluence Integration (Optional) | ||
| # ============================================================================= | ||
| CONFLUENCE_TOKEN="your-confluence-api-token,your-confluence-api-token" | ||
| CONFLUENCE_URL="https://your-company.atlassian.net,https://your-company.atlassian.net" | ||
| CONFLUENCE_SPACE_KEY="YOUR_SPACE_KEY_1,YOUR_SPACE_KEY_2" | ||
| CONFLUENCE_VERIFY_SSL="True,True" | ||
| CONFLUENCE_DOCUMENT_NAME="document1,document2" | ||
|
|
||
| # ============================================================================= | ||
| # Additional Notes: | ||
| # ============================================================================= | ||
| # 1. Required variables must be set for the system to work properly | ||
| # 2. S3-compatible storage is required for document storage | ||
| # 3. Choose either STACKIT or configure Ollama for LLM providers | ||
| # 4. Confluence integration is optional but enables document ingestion from Confluence | ||
| # 5. For production deployment, see infrastructure/README.md for additional configuration | ||
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.