Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ See the full documentation at [`../README.md`](../README.md) or browse sub-pages

## Overview

[Overview](https://lightspeed-core.github.io/lightspeed-stack/overview.html)

[Architecture](https://lightspeed-core.github.io/lightspeed-stack/ARCHITECTURE.html)

[Architecture diagram](https://lightspeed-core.github.io/lightspeed-stack/architecture.svg)
Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ product questions using backend LLM services, agents, and RAG databases.

## Overview

[Overview](https://lightspeed-core.github.io/lightspeed-stack/overview.html)

[Architecture](https://lightspeed-core.github.io/lightspeed-stack/ARCHITECTURE.html)

[Architecture diagram](https://lightspeed-core.github.io/lightspeed-stack/architecture.svg)
Expand Down
27 changes: 27 additions & 0 deletions docs/overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Overview

## Introduction

### What is Lightspeed Core Stack?

**Lightspeed Core Stack (LCore)** is an enterprise-grade middleware service that provides a robust layer between client applications and AI Large Language Model (LLM) backends. It adds essential enterprise features such as authentication, authorization, quota management, caching, and observability to LLM interactions.

Current version of LCore is built on **Llama Stack** - open-source framework that provides standardized APIs for building LLM applications. Llama Stack offers a unified interface for models, RAG (vector stores), tools, and safety (shields) across different providers. LCore communicates with Llama Stack to orchestrate all LLM operations.

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.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Remove the time-sensitive “Current version” wording.

Use “LCore is built on Llama Stack” unless this statement is intentionally version-scoped; the current phrasing is awkward and will age unnecessarily.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/overview.md` at line 9, Update the introductory statement in the
overview documentation to remove the time-sensitive “Current version of”
wording, so it begins with “LCore is built on Llama Stack” while preserving the
remaining explanation.


To enhance LLM responses, LCore leverages **RAG (Retrieval-Augmented Generation)**, which retrieves relevant context from vector databases before generating answers. Llama Stack manages the vector stores, and LCore queries them to inject relevant documentation, knowledge bases, or previous conversations into the LLM prompt.

### Key Features

- **Multi-Provider Support**: Works with multiple LLM providers (Ollama, OpenAI, Watsonx, etc.)
- **Enterprise Security**: Authentication, authorization (RBAC), and secure credential management
- **Resource Management**: Token-based quota limits and usage tracking
- **Conversation Management**: Multi-turn conversations with history and caching
- **RAG Integration**: Retrieval-Augmented Generation for context-aware responses
- **Tool Orchestration**: Model Context Protocol (MCP) server integration
- **Observability**: Prometheus metrics, structured logging, and health checks
- **Agent-to-Agent**: A2A protocol support for multi-agent collaboration

### Components Overview

![Overview Stack as service](./overview.svg)

Loading
Loading