Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cron] Sync and update documentation #322

Merged
merged 1 commit into from
Dec 24, 2024
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
6 changes: 3 additions & 3 deletions website/docs/getstarted/build_from_source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ cmake --build . -t test_main

2. Install Python sdk of infinity:
```bash
pip install infinity-sdk==0.5.1
pip install infinity-sdk==0.5.2
```

3. Run the functional tests:
Expand All @@ -286,7 +286,7 @@ cmake --build . -t test_main

2. Install Python sdk of infinity:
```bash
pip install infinity-sdk==0.5.1
pip install infinity-sdk==0.5.2
```

3. Run the functional tests:
Expand All @@ -309,7 +309,7 @@ cmake --build . -t test_main

2. Install Python sdk of infinity:
```bash
pip install infinity-sdk==0.5.1
pip install infinity-sdk==0.5.2
```

3. Run the functional tests:
Expand Down
10 changes: 5 additions & 5 deletions website/docs/getstarted/deploy_infinity_server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This approach allows you to call Infinity as a Python module. To deploy Infinity
### Install Infinity as a module

```
pip install infinity-embedded-sdk==0.5.1
pip install infinity-embedded-sdk==0.5.2
```

### Create an Infinity object
Expand Down Expand Up @@ -101,7 +101,7 @@ If you are on Windows 10+, you must enable WSL or WSL2 to deploy Infinity using
### Install Infinity client

```
pip install infinity-sdk==0.5.1
pip install infinity-sdk==0.5.2
```

### Run a vector search
Expand Down Expand Up @@ -151,7 +151,7 @@ This section provides instructions on deploying Infinity using binary package on

Fedora/RHEL/CentOS/OpenSUSE
```bash
sudo rpm -i infinity-0.5.1-x86_64.rpm
sudo rpm -i infinity-0.5.2-x86_64.rpm
```

```bash
Expand All @@ -162,7 +162,7 @@ sudo systemctl start infinity
<TabItem value="ubuntu">

```bash
sudo dpkg -i infinity-0.5.1-x86_64.deb
sudo dpkg -i infinity-0.5.2-x86_64.deb
```

```bash
Expand All @@ -175,7 +175,7 @@ sudo systemctl start infinity
### Install Infinity client

```
pip install infinity-sdk==0.5.1
pip install infinity-sdk==0.5.2
```

### Run a vector search
Expand Down
2 changes: 1 addition & 1 deletion website/docs/getstarted/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you wish to embed Infinity into your Python application without the need for

1. Install the Infinity-embedded SDK:
```bash
pip install infinity-embedded-sdk==0.5.1
pip install infinity-embedded-sdk==0.5.2
```
2. Use Infinity to conduct a dense vector search:
```python
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "Get started",
"position": 0,
"link": {
"type": "generated-index",
"description": "quickstart and more"
}
}
Loading