ragflow-cli 0.25.5__tar.gz → 0.26.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/PKG-INFO +2 -2
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/README.md +1 -1
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/pyproject.toml +1 -1
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/PKG-INFO +2 -2
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/user.py +1 -1
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/http_client.py +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/parser.py +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/SOURCES.txt +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/dependency_links.txt +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/entry_points.txt +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/requires.txt +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.egg-info/top_level.txt +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_cli.py +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/ragflow_client.py +0 -0
- {ragflow_cli-0.25.5 → ragflow_cli-0.26.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragflow-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.26.0
|
|
4
4
|
Summary: Admin Service's client of [RAGFlow](https://github.com/infiniflow/ragflow). The Admin Service provides user management and system monitoring.
|
|
5
5
|
Author-email: Lynn <lynn_inf@hotmail.com>
|
|
6
6
|
License: Apache License, Version 2.0
|
|
@@ -62,7 +62,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
|
|
|
62
62
|
1. Ensure the Admin Service is running.
|
|
63
63
|
2. Install ragflow-cli.
|
|
64
64
|
```bash
|
|
65
|
-
pip install ragflow-cli==0.
|
|
65
|
+
pip install ragflow-cli==0.26.0
|
|
66
66
|
```
|
|
67
67
|
3. Launch the CLI client:
|
|
68
68
|
```bash
|
|
@@ -48,7 +48,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
|
|
|
48
48
|
1. Ensure the Admin Service is running.
|
|
49
49
|
2. Install ragflow-cli.
|
|
50
50
|
```bash
|
|
51
|
-
pip install ragflow-cli==0.
|
|
51
|
+
pip install ragflow-cli==0.26.0
|
|
52
52
|
```
|
|
53
53
|
3. Launch the CLI client:
|
|
54
54
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ragflow-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.26.0"
|
|
4
4
|
description = "Admin Service's client of [RAGFlow](https://github.com/infiniflow/ragflow). The Admin Service provides user management and system monitoring. "
|
|
5
5
|
authors = [{ name = "Lynn", email = "lynn_inf@hotmail.com" }]
|
|
6
6
|
license = { text = "Apache License, Version 2.0" }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragflow-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.26.0
|
|
4
4
|
Summary: Admin Service's client of [RAGFlow](https://github.com/infiniflow/ragflow). The Admin Service provides user management and system monitoring.
|
|
5
5
|
Author-email: Lynn <lynn_inf@hotmail.com>
|
|
6
6
|
License: Apache License, Version 2.0
|
|
@@ -62,7 +62,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
|
|
|
62
62
|
1. Ensure the Admin Service is running.
|
|
63
63
|
2. Install ragflow-cli.
|
|
64
64
|
```bash
|
|
65
|
-
pip install ragflow-cli==0.
|
|
65
|
+
pip install ragflow-cli==0.26.0
|
|
66
66
|
```
|
|
67
67
|
3. Launch the CLI client:
|
|
68
68
|
```bash
|
|
@@ -41,7 +41,7 @@ def encrypt_password(password_plain: str) -> str:
|
|
|
41
41
|
return base64.b64encode(encrypted_password).decode('utf-8')
|
|
42
42
|
except Exception as exc:
|
|
43
43
|
raise AuthException(
|
|
44
|
-
"Password encryption unavailable; install pycryptodomex (uv sync --python 3.
|
|
44
|
+
"Password encryption unavailable; install pycryptodomex (uv sync --python 3.13 --group test)."
|
|
45
45
|
) from exc
|
|
46
46
|
return crypt(password_plain)
|
|
47
47
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|