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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/lightspeed-core/lightspeed-stack/blob/main/LICENSE)
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![Required Python version](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Flightspeed-core%2Flightspeed-stack%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)](https://www.python.org/)
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.4.1)
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.4.2)

Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases.

Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "0.4.1"
"version": "0.4.2"
},
"servers": [
{
Expand Down Expand Up @@ -9854,4 +9854,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion docs/splunk.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Events follow the rlsapi telemetry format for consistency with existing analytic
"system_id": "abc-def-123",
"total_llm_tokens": 0,
"request_id": "req_xyz789",
"cla_version": "CLA/0.4.1",
"cla_version": "CLA/0.4.2",
"system_os": "RHEL",
"system_version": "9.3",
"system_arch": "x86_64"
Expand Down
2 changes: 1 addition & 1 deletion src/observability/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ event_data = InferenceEventData(
org_id="12345678",
system_id="abc-def-123",
request_id="req_xyz789",
cla_version="CLA/0.4.1",
cla_version="CLA/0.4.2",
system_os="RHEL",
system_version="9.3",
system_arch="x86_64",
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# [tool.pdm.version]
# source = "file"
# path = "src/version.py"
__version__ = "0.4.1"
__version__ = "0.4.2"
2 changes: 1 addition & 1 deletion tests/e2e/features/info.feature
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Feature: Info tests
Given The system is in default state
When I access REST API endpoint "info" using HTTP GET method
Then The status code of the response is 200
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.1
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.2
And The body of the response has llama-stack version 0.4.3

@skip-in-library-mode
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/endpoints/test_rlsapi_v1_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def _create_mock_request(mocker: MockerFixture) -> Any:
mock_request = mocker.Mock()
# Use spec=[] to create a Mock with no attributes, simulating absent rh_identity_data
mock_request.state = mocker.Mock(spec=[])
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
mock_request.headers = {"User-Agent": "CLA/0.4.2"}
return mock_request


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/app/endpoints/test_rlsapi_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _set(prompt: str) -> None:
def _create_mock_request(mocker: MockerFixture, rh_identity: Any = None) -> Any:
"""Create a mock FastAPI Request with optional RH Identity data."""
mock_request = mocker.Mock()
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
mock_request.headers = {"User-Agent": "CLA/0.4.2"}

if rh_identity is not None:
mock_request.state = mocker.Mock()
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/observability/formats/test_rlsapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def sample_event_data_fixture() -> InferenceEventData:
org_id="12345678",
system_id="abc-def-123",
request_id="req_xyz789",
cla_version="CLA/0.4.1",
cla_version="CLA/0.4.2",
system_os="RHEL",
system_version="9.3",
system_arch="x86_64",
Expand All @@ -40,7 +40,7 @@ def test_builds_event_with_all_fields(
assert event["org_id"] == "12345678"
assert event["system_id"] == "abc-def-123"
assert event["request_id"] == "req_xyz789"
assert event["cla_version"] == "CLA/0.4.1"
assert event["cla_version"] == "CLA/0.4.2"
assert event["system_os"] == "RHEL"
assert event["system_version"] == "9.3"
assert event["system_arch"] == "x86_64"
Expand Down
Loading