diff --git a/README.md b/README.md index 3aa10ce3..cef88f30 100644 --- a/README.md +++ b/README.md @@ -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.1.2) +[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.1.3) Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases. diff --git a/docs/getting_started.md b/docs/getting_started.md index 1ea6e58c..e75690a0 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -687,7 +687,7 @@ It is possible to run Lightspeed Core Stack service with Llama Stack "embedded" + greenlet==3.2.3 + grpcio==1.74.0 + httpx-sse==0.4.1 - ~ lightspeed-stack==0.1.2 (from file:///tmp/ramdisk/lightspeed-stack) + ~ lightspeed-stack==0.1.3 (from file:///tmp/ramdisk/lightspeed-stack) + litellm==1.74.9.post1 + lxml==6.0.0 + mcp==1.12.2 @@ -1022,14 +1022,14 @@ Writing manifest to image destination 4468f475931a54ad1e5c26270ff4c3e55ec31444c1b0bf8fb77a576db7ab33f1 ``` -To retrieve stable version `0.1.2`, use the following command: +To retrieve stable version `0.1.3`, use the following command: ```bash -podman pull quay.io/lightspeed-core/lightspeed-stack:0.1.2 +podman pull quay.io/lightspeed-core/lightspeed-stack:0.1.3 ``` ```text -Trying to pull quay.io/lightspeed-core/lightspeed-stack:0.1.2... +Trying to pull quay.io/lightspeed-core/lightspeed-stack:0.1.3... Getting image source signatures Copying blob 7c9e86f872c9 done | Copying blob 455d71b0a12b skipped: already exists @@ -1745,7 +1745,7 @@ The response should look like: ```json { "name": "Lightspeed Core Service (LCS)", - "version": "0.1.2" + "version": "0.1.3" } ``` diff --git a/docs/openapi.json b/docs/openapi.json index 0fa403b7..2cac84a9 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -7,7 +7,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.1.2" + "version": "0.1.3" }, "paths": { "/": { @@ -1792,4 +1792,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/version.py b/src/version.py index 6867ac6f..2784a446 100644 --- a/src/version.py +++ b/src/version.py @@ -9,4 +9,4 @@ # [tool.pdm.version] # source = "file" # path = "src/version.py" -__version__ = "0.1.2" +__version__ = "0.1.3"