ragflow-cli 0.21.0.dev4__tar.gz → 0.21.0.dev6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragflow-cli
3
- Version: 0.21.0.dev4
3
+ Version: 0.21.0.dev6
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
@@ -39,7 +39,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
39
39
  2. Launch from source code:
40
40
 
41
41
  ```bash
42
- python admin/admin_server.py
42
+ python admin/server/admin_server.py
43
43
  ```
44
44
  The service will start and listen for incoming connections from the CLI on the configured port.
45
45
 
@@ -26,7 +26,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
26
26
  2. Launch from source code:
27
27
 
28
28
  ```bash
29
- python admin/admin_server.py
29
+ python admin/server/admin_server.py
30
30
  ```
31
31
  The service will start and listen for incoming connections from the CLI on the configured port.
32
32
 
@@ -440,7 +440,7 @@ class AdminCLI(Cmd):
440
440
  if response.status_code == 200:
441
441
  self._print_table_simple(res_json['data'])
442
442
  else:
443
- print(f"Fail to get all users, code: {res_json['code']}, message: {res_json['message']}")
443
+ print(f"Fail to get all services, code: {res_json['code']}, message: {res_json['message']}")
444
444
 
445
445
  def _handle_show_service(self, command):
446
446
  service_id: int = command['number']
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ragflow-cli"
3
- version = "0.21.0.dev4"
3
+ version = "0.21.0.dev6"
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.21.0.dev4
3
+ Version: 0.21.0.dev6
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
@@ -39,7 +39,7 @@ It consists of a server-side Service and a command-line client (CLI), both imple
39
39
  2. Launch from source code:
40
40
 
41
41
  ```bash
42
- python admin/admin_server.py
42
+ python admin/server/admin_server.py
43
43
  ```
44
44
  The service will start and listen for incoming connections from the CLI on the configured port.
45
45