rosetta-cli 2.0.6__tar.gz → 2.0.8__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.
- {rosetta_cli-2.0.6/rosetta_cli.egg-info → rosetta_cli-2.0.8}/PKG-INFO +2 -2
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/pyproject.toml +2 -2
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8/rosetta_cli.egg-info}/PKG-INFO +2 -2
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/MANIFEST.in +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/README.md +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/env.template +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/__init__.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/__main__.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/cli.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/__init__.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/base_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/cleanup_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/list_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/parse_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/publish_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/commands/verify_command.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/ims_auth.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/ims_config.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/ims_publisher.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/ims_utils.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/ragflow_client.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/services/__init__.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/services/auth_service.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/services/dataset_service.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/services/document_data.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/services/document_service.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli/typing_utils.py +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli.egg-info/SOURCES.txt +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli.egg-info/dependency_links.txt +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli.egg-info/entry_points.txt +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli.egg-info/requires.txt +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/rosetta_cli.egg-info/top_level.txt +0 -0
- {rosetta_cli-2.0.6 → rosetta_cli-2.0.8}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rosetta-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Rosetta CLI for publishing knowledge base content to RAGFlow
|
|
5
|
-
Author:
|
|
5
|
+
Author-email: Rosetta Team <rosetta-support@griddynamics.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/griddynamics/rosetta
|
|
8
8
|
Project-URL: Discord, https://discord.gg/QzZ2cWg36g
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "rosetta-cli"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.8"
|
|
8
8
|
description = "Rosetta CLI for publishing knowledge base content to RAGFlow"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
11
11
|
license = "Apache-2.0"
|
|
12
12
|
authors = [
|
|
13
|
-
{
|
|
13
|
+
{name = "Rosetta Team", email = "rosetta-support@griddynamics.com"}
|
|
14
14
|
]
|
|
15
15
|
keywords = ["rosetta", "ragflow", "cli", "knowledge-base", "publishing"]
|
|
16
16
|
classifiers = [
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rosetta-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Rosetta CLI for publishing knowledge base content to RAGFlow
|
|
5
|
-
Author:
|
|
5
|
+
Author-email: Rosetta Team <rosetta-support@griddynamics.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/griddynamics/rosetta
|
|
8
8
|
Project-URL: Discord, https://discord.gg/QzZ2cWg36g
|
|
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
|
|
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
|
|
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
|