feat(ai): Integrate AI container deployment in Intel chart#93
Merged
danc094codetogether merged 3 commits intodevfrom Mar 11, 2025
Merged
feat(ai): Integrate AI container deployment in Intel chart#93danc094codetogether merged 3 commits intodevfrom
danc094codetogether merged 3 commits intodevfrom
Conversation
Added support for AI container deployment with bundled and external modes. Configured Helm values to allow users to specify AI providers (OpenAI or custom). Implemented environment variable injection for AI-related configurations. Ensured compatibility with existing Intel deployment. Fixed potential issues with missing secrets and resource allocation.
nmorenor
approved these changes
Mar 4, 2025
nmorenor
reviewed
Mar 4, 2025
Member
nmorenor
left a comment
There was a problem hiding this comment.
just need to define how ai keys will be consumed by spring backend.
- Included instructions for securely storing AI API keys using Kubernetes secrets. - Provided a command to create the `ai-secrets` secret for OpenAI and external AI providers. - Ensured secure key management by referencing secrets instead of storing keys in `values.yaml`.
patrick-codetogether
approved these changes
Mar 5, 2025
Contributor
patrick-codetogether
left a comment
There was a problem hiding this comment.
lgtm, thanks for the secret changes
- Integrated a **NON-OpenAI** bundled model using **Ollama**. - Added support for **Qwen2.5 Coder 3B** from LM Studio. - Updated **Dockerfile.ai** to dynamically pull models via `MODELS` build argument. - Modified **deployment.yaml** to pass `AI_BUNDLED_URL` dynamically from Helm. - Updated **values.yaml** to configure `ai.bundled_url` automatically. - Ensured **external AI mode** is handled via product portal (not Helm). - Verified deployment stability and resource usage. **Successfully tested bundled AI mode with Qwen2.5 Coder 3B.**
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added support for AI container deployment with bundled and external modes. Configured Helm values to allow users to specify AI providers (OpenAI or custom). Implemented environment variable injection for AI-related configurations. Ensured compatibility with existing Intel deployment. Fixed potential issues with missing secrets and resource allocation.
#3950