Skip to content

Commit 701f48f

Browse files
committed
Minor fixed on GH pages
1 parent eb13e53 commit 701f48f

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

docs/index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
layout: default
33
nav_order: 1
44
---
5-
# Lightspeed core service
5+
6+
# Lightspeed core stack
7+
8+
About The Project
9+
10+
Lightspeed Core Stack (LCS) is an AI powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases.
611

docs/installation_linux.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Lightspeed-stack service installation on Linux
1+
# Lightspeed Core Stack installation on Linux
22

33
## Prerequisities
44

@@ -8,10 +8,10 @@
88

99
## Installation steps
1010

11-
1. `pip install --user pdm`
12-
1. `pdm --version` -- should return no error
11+
1. `pip install --user uv`
12+
1. `uv --version` -- should return no error
1313
1. Clone the repo to the current dir:
1414
`git clone https://github.com/lightspeed-core/lightspeed-stack`
1515
1. `cd service`
16-
1. `pdm info` -- should return no error
17-
1. `pdm install`
16+
1. `uv info` -- should return no error
17+
1. `uv install`

docs/installation_macos.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Lightspeed-stack service installation on macOS
1+
# Lightspeed Core Stack installation on MacOS
22

33
## Prerequisities
44

@@ -9,15 +9,15 @@
99

1010
## Installation steps
1111

12-
1. `brew install pdm`
13-
1. `pdm --version` -- should return no error
12+
1. `brew install uv`
13+
1. `uv --version` -- should return no error
1414
1. Clone the repo to the current dir:
1515
`git clone https://github.com/lightspeed-core/lightspeed-stack`
1616
1. `cd service`
17-
1. `pdm info` -- should return no error
18-
1. `pdm install` -- if it fails (for example because you ran `pdm install` before changing `pyproject.toml`) run:
17+
1. `uv info` -- should return no error
18+
1. `uv install` -- if it fails (for example because you ran `uv install` before changing `pyproject.toml`) run:
1919
```sh
20-
pdm update
21-
pdm install
20+
uv update
21+
uv install
2222
```
2323

0 commit comments

Comments
 (0)