aipa-cli 0.1.0__tar.gz → 0.1.2__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.
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/CHANGELOG.md +10 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/PKG-INFO +6 -2
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/README.md +4 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/pyproject.toml +2 -1
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/__init__.py +1 -1
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/.gitignore +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/LICENSE +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/__main__.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/actions.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/__init__.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/agent.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/callbacks.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/config.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/personas.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/agents/tools.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/app.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/bindings.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/chat.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/cli.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/cli_commands.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/settings_tab.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/theme.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/ticker_data.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/user_settings.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/utils.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/widgets/__init__.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/widgets/chat_input.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/widgets/ticker_select.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/src/aipriceaction_terminal/workflows.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/conftest.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/openrouter_responses.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_app.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_chat.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_integration.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_thinking.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_tool_call_streaming.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_utils.py +0 -0
- {aipa_cli-0.1.0 → aipa_cli-0.1.2}/tests/test_workflows.py +0 -0
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.2] - 2026-05-09
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Require `aipriceaction>=0.1.8` for `include_persona` parameter support
|
|
12
|
+
|
|
13
|
+
## [0.1.1] - 2026-05-09
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Add `aipa-cli` entry point alongside `aipa` for `uvx` compatibility
|
|
17
|
+
|
|
8
18
|
## [0.1.0] - 2026-05-09
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aipa-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Terminal TUI for AI-powered ticker analysis
|
|
5
5
|
Project-URL: Homepage, https://github.com/quanhua92/aipriceaction
|
|
6
6
|
Project-URL: Repository, https://github.com/quanhua92/aipriceaction
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
16
|
Classifier: Topic :: Office/Business :: Financial
|
|
17
17
|
Requires-Python: >=3.13
|
|
18
|
-
Requires-Dist: aipriceaction
|
|
18
|
+
Requires-Dist: aipriceaction>=0.1.8
|
|
19
19
|
Requires-Dist: langchain-core
|
|
20
20
|
Requires-Dist: langchain-openai
|
|
21
21
|
Requires-Dist: langgraph
|
|
@@ -37,6 +37,10 @@ uvx aipa-cli
|
|
|
37
37
|
|
|
38
38
|
# Or install as a standalone tool
|
|
39
39
|
uv tool install aipa-cli
|
|
40
|
+
|
|
41
|
+
# Use either command
|
|
42
|
+
aipa
|
|
43
|
+
aipa-cli
|
|
40
44
|
```
|
|
41
45
|
|
|
42
46
|
## Requirements
|
|
@@ -9,7 +9,7 @@ license = "MIT"
|
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.13"
|
|
11
11
|
dependencies = [
|
|
12
|
-
"aipriceaction",
|
|
12
|
+
"aipriceaction>=0.1.8",
|
|
13
13
|
"textual>=3.0.0",
|
|
14
14
|
"textual-autocomplete>=4.0.6",
|
|
15
15
|
"langchain-core",
|
|
@@ -32,6 +32,7 @@ Repository = "https://github.com/quanhua92/aipriceaction"
|
|
|
32
32
|
|
|
33
33
|
[project.scripts]
|
|
34
34
|
aipa = "aipriceaction_terminal.app:main"
|
|
35
|
+
aipa-cli = "aipriceaction_terminal.app:main"
|
|
35
36
|
|
|
36
37
|
[build-system]
|
|
37
38
|
requires = ["hatchling"]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|