Skip to content

LCORE-1841: Added images to presentation#1578

Merged
tisnik merged 1 commit into
lightspeed-core:mainfrom
tisnik:lcore-1841-added-images
Apr 23, 2026
Merged

LCORE-1841: Added images to presentation#1578
tisnik merged 1 commit into
lightspeed-core:mainfrom
tisnik:lcore-1841-added-images

Conversation

@tisnik
Copy link
Copy Markdown
Contributor

@tisnik tisnik commented Apr 23, 2026

Description

LCORE-1841: Added images to presentation

Type of change

  • Refactor
  • New feature
  • Bug fix
  • CVE fix
  • Optimization
  • Documentation Update
  • Configuration Update
  • Bump-up service version
  • Bump-up dependent library
  • Bump-up library or tool used for development (does not change the final image)
  • CI configuration change
  • Konflux configuration change
  • Unit tests improvement
  • Integration tests improvement
  • End to end tests improvement
  • Benchmarks improvement

Tools used to create PR

  • Assisted-by: N/A
  • Generated by: N/A

Related Tickets & Documents

  • Related Issue #LCORE-1841

Summary by CodeRabbit

  • Documentation
    • Enhanced with new architecture visuals and detailed subsections covering three deployment modes: library, service, and container-based configurations
    • Q&A section updated with embedded animated graphics for improved visual clarity and user understanding

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 23, 2026

Walkthrough

Documentation file updated with new architecture visuals, sub-sections describing Llama Stack deployment modes (library, service, container), and an embedded animated SVG graphic in the Q&A section.

Changes

Cohort / File(s) Summary
Documentation Updates
docs/demos/lcore/LnL_2026.md
Added architecture visuals and deployment mode sub-sections; included animated SVG graphic in Q&A section.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The PR title 'Added images to presentation' is partially related to the changeset but overly vague and lacks specificity about what content is being illustrated. Consider a more descriptive title that specifies the presentation content, such as 'LCORE-1841: Added architecture visuals and deployment mode diagrams to Llama Stack documentation'.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
✨ Simplify code
  • Create PR with simplified code

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docs/demos/lcore/LnL_2026.md`:
- Around line 96-103: The rect element with x="320" is positioned at the viewBox
edge and gets clipped; update the rect's x attribute (the <rect ... x="320" ...>
element) to a value less than or equal to 300 (viewBox width 320 minus rect
width 20) so the full 20px-wide rectangle is visible (choose an appropriate x <
300 to place it where you want within the viewport).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro

Run ID: bef32edf-6370-42e9-8282-eb16df0b7875

📥 Commits

Reviewing files that changed from the base of the PR and between 4b84964 and 20aedfc.

⛔ Files ignored due to path filters (1)
  • docs/demos/lcore/images/llama_stack_arch.png is excluded by !**/*.png
📒 Files selected for processing (1)
  • docs/demos/lcore/LnL_2026.md
📜 Review details
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (9)
  • GitHub Check: build-pr
  • GitHub Check: Konflux kflux-prd-rh02 / lightspeed-stack-on-pull-request
  • GitHub Check: E2E: server mode / ci / group 1
  • GitHub Check: E2E: library mode / ci / group 1
  • GitHub Check: E2E: library mode / ci / group 3
  • GitHub Check: E2E Tests for Lightspeed Evaluation job
  • GitHub Check: E2E: server mode / ci / group 3
  • GitHub Check: E2E: server mode / ci / group 2
  • GitHub Check: E2E: library mode / ci / group 2
🧰 Additional context used
🧠 Learnings (1)
📚 Learning: 2026-04-19T15:40:25.624Z
Learnt from: CR
Repo: lightspeed-core/lightspeed-stack PR: 0
File: AGENTS.md:0-0
Timestamp: 2026-04-19T15:40:25.624Z
Learning: Applies to **/*.py : Import Llama Stack client with: `from llama_stack_client import AsyncLlamaStackClient`

Applied to files:

  • docs/demos/lcore/LnL_2026.md
🔇 Additional comments (2)
docs/demos/lcore/LnL_2026.md (2)

32-52: LGTM! Well-structured deployment mode documentation.

The architecture sections are clearly organized with appropriate subsections and consistent image references. The three deployment modes (library, service, container) provide good visual context for the presentation.


32-50: All referenced image files are present.

The image files at lines 32, 38, 44, and 50 (llama_stack_arch.png, llama_stack_as_library.svg, llama_stack_as_service.svg, and llama_stack_in_container.svg) exist at the expected paths in the repository.

Comment on lines +96 to +103
<rect x="320" y="300" width="20" height="20" fill="black" stroke="white">
<animate
attributeType="XML"
attributeName="fill"
values="black;black;white;white;black"
dur="0.5s"
repeatCount="indefinite"/>
</rect>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Fix SVG rectangle positioning - element is outside the visible viewport.

The rectangle is positioned at x="320" which places it at or beyond the right edge of the viewBox (which extends from 0 to 320). This means the animated rectangle will be clipped or completely invisible.

🎨 Proposed fix to position the rectangle within the visible area
-    <rect x="320" y="300" width="20" height="20" fill="black" stroke="white">
+    <rect x="0" y="0" width="20" height="20" fill="black" stroke="white">

If you want the rectangle in a different position, ensure the x-coordinate is less than 300 (to fit the 20px width within the 320px viewBox).

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<rect x="320" y="300" width="20" height="20" fill="black" stroke="white">
<animate
attributeType="XML"
attributeName="fill"
values="black;black;white;white;black"
dur="0.5s"
repeatCount="indefinite"/>
</rect>
<rect x="0" y="0" width="20" height="20" fill="black" stroke="white">
<animate
attributeType="XML"
attributeName="fill"
values="black;black;white;white;black"
dur="0.5s"
repeatCount="indefinite"/>
</rect>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/demos/lcore/LnL_2026.md` around lines 96 - 103, The rect element with
x="320" is positioned at the viewBox edge and gets clipped; update the rect's x
attribute (the <rect ... x="320" ...> element) to a value less than or equal to
300 (viewBox width 320 minus rect width 20) so the full 20px-wide rectangle is
visible (choose an appropriate x < 300 to place it where you want within the
viewport).

@tisnik tisnik merged commit d6ba6dd into lightspeed-core:main Apr 23, 2026
30 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant