reportify-cli 0.1.35__tar.gz → 0.1.37__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.
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/PKG-INFO +2 -2
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/pyproject.toml +2 -2
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/agent.py +2 -1
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/params.py +1 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/utils.py +10 -6
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/.gitignore +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/Makefile +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/README.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/scripts/README.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/scripts/bump_version.sh +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/scripts/publish.sh +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/skills/reportify-agent/SKILL.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/skills/reportify-ai/SKILL.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/skills/reportify-ai/references/API_REFERENCE.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/skills/reportify-ai/references/COMMANDS.md +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/__init__.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/client.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/__init__.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/channels.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/concepts.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/docs.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/following.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/kb.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/macro.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/quant.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/search.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/stock.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/timeline.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/commands/user.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/main.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/output.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/src/settings.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/__init__.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/integration/test_docs_integration.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/integration/test_stock_integration.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/test_commands/__init__.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/test_commands/test_docs.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/test_commands/test_quant.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/tests/test_commands/test_search.py +0 -0
- {reportify_cli-0.1.35 → reportify_cli-0.1.37}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: reportify-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.37
|
|
4
4
|
Summary: CLI wrapper for Reportify SDK - Access Reportify API through command line
|
|
5
5
|
Project-URL: Homepage, https://reportify.ai
|
|
6
6
|
Project-URL: Documentation, https://docs.reportify.ai
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
24
|
Requires-Dist: pandas>=2.0.0
|
|
25
25
|
Requires-Dist: python-dotenv>=1.2.1
|
|
26
|
-
Requires-Dist: reportify-sdk>=0.3.
|
|
26
|
+
Requires-Dist: reportify-sdk>=0.3.39
|
|
27
27
|
Requires-Dist: tabulate>=0.9.0
|
|
28
28
|
Requires-Dist: typer>=0.21.1
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "reportify-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.37"
|
|
4
4
|
description = "CLI wrapper for Reportify SDK - Access Reportify API through command line"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -30,7 +30,7 @@ classifiers = [
|
|
|
30
30
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
31
|
]
|
|
32
32
|
dependencies = [
|
|
33
|
-
"reportify-sdk>=0.3.
|
|
33
|
+
"reportify-sdk>=0.3.39",
|
|
34
34
|
"typer>=0.21.1",
|
|
35
35
|
"pandas>=2.0.0",
|
|
36
36
|
"python-dotenv>=1.2.1",
|
|
@@ -18,7 +18,7 @@ app = typer.Typer(help="Agent conversations", rich_markup_mode="rich")
|
|
|
18
18
|
params.AGENT_CREATE_CONVERSATION_PARAMS,
|
|
19
19
|
[
|
|
20
20
|
'reportify-cli agent create_conversation --input \'{"conversation_type": "bot_chat"}\'',
|
|
21
|
-
'reportify-cli agent create_conversation --input \'{"agent_id": 11887655289749510, "title": "NVIDIA analysis", "conversation_type": "agent_chat"}\'',
|
|
21
|
+
'reportify-cli agent create_conversation --input \'{"agent_id": 11887655289749510, "title": "NVIDIA analysis", "conversation_type": "agent_chat", "channel": "universal-bridge"}\'',
|
|
22
22
|
],
|
|
23
23
|
),
|
|
24
24
|
)
|
|
@@ -35,6 +35,7 @@ def create_conversation(
|
|
|
35
35
|
title=params_dict.get("title"),
|
|
36
36
|
conversation_type=params_dict.get("conversation_type"),
|
|
37
37
|
meta=params_dict.get("meta"),
|
|
38
|
+
channel=params_dict.get("channel"),
|
|
38
39
|
)
|
|
39
40
|
format_output(result, format)
|
|
40
41
|
except Exception as e:
|
|
@@ -560,6 +560,7 @@ AGENT_CREATE_CONVERSATION_PARAMS = [
|
|
|
560
560
|
"Conversation type: agent_chat, task_chat, debug_chat, bot_chat",
|
|
561
561
|
),
|
|
562
562
|
ParamDef("meta", "dict", "Metadata dict"),
|
|
563
|
+
ParamDef("channel", "string", "Source channel: universal-bridge, openclaw-weixin, telegram"),
|
|
563
564
|
]
|
|
564
565
|
|
|
565
566
|
AGENT_GET_CONVERSATION_PARAMS = [
|
|
@@ -15,11 +15,11 @@ def generate_epilog(params: list[ParamDef], examples: list[str]) -> str:
|
|
|
15
15
|
Returns:
|
|
16
16
|
str: Formatted epilog text
|
|
17
17
|
"""
|
|
18
|
-
|
|
18
|
+
sections = []
|
|
19
19
|
|
|
20
20
|
# Add parameter table
|
|
21
21
|
if params:
|
|
22
|
-
|
|
22
|
+
param_lines = ["[bold cyan]Input Parameters:[/bold cyan]"]
|
|
23
23
|
|
|
24
24
|
# Calculate column widths
|
|
25
25
|
max_name_len = max(len(p.name) for p in params) if params else 0
|
|
@@ -34,15 +34,19 @@ def generate_epilog(params: list[ParamDef], examples: list[str]) -> str:
|
|
|
34
34
|
if param.default is not None:
|
|
35
35
|
desc += f" [dim]\\[default: {param.default}][/dim]"
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
param_lines.append(f" {name_col} {type_col} {desc}")
|
|
38
|
+
|
|
39
|
+
sections.append("\n\n".join(param_lines))
|
|
38
40
|
|
|
39
41
|
# Add examples
|
|
40
42
|
if examples:
|
|
41
|
-
|
|
43
|
+
example_lines = ["[bold cyan]Examples:[/bold cyan]"]
|
|
42
44
|
for example in examples:
|
|
43
|
-
|
|
45
|
+
example_lines.append(f" {example}")
|
|
46
|
+
|
|
47
|
+
sections.append("\n\n".join(example_lines))
|
|
44
48
|
|
|
45
|
-
return "\n".join(
|
|
49
|
+
return "\n\n".join(sections)
|
|
46
50
|
|
|
47
51
|
|
|
48
52
|
def parse_json_input(input_str: str) -> dict:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{reportify_cli-0.1.35 → reportify_cli-0.1.37}/skills/reportify-ai/references/API_REFERENCE.md
RENAMED
|
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
|