banko-ai-assistant 1.0.13__py3-none-any.whl → 1.0.14__py3-none-any.whl
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.
- banko_ai/cli.py +1 -1
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/METADATA +11 -5
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/RECORD +7 -7
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/WHEEL +0 -0
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/entry_points.txt +0 -0
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/licenses/LICENSE +0 -0
- {banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/top_level.txt +0 -0
banko_ai/cli.py
CHANGED
@@ -262,7 +262,7 @@ QUICK START:
|
|
262
262
|
-----------
|
263
263
|
1. Set up your environment variables:
|
264
264
|
export AI_SERVICE="watsonx" # or "openai", "aws", "gemini"
|
265
|
-
export DATABASE_URL="
|
265
|
+
export DATABASE_URL="cockroachdb://root@localhost:26257/defaultdb?sslmode=disable"
|
266
266
|
|
267
267
|
2. Configure your AI provider:
|
268
268
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: banko-ai-assistant
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.14
|
4
4
|
Summary: AI-powered expense analysis and RAG system with CockroachDB vector search and multi-provider AI support
|
5
5
|
Author-email: Virag Tripathi <virag.tripathi@gmail.com>
|
6
6
|
License-Expression: MIT
|
@@ -84,11 +84,17 @@ A modern AI-powered expense analysis application with Retrieval-Augmented Genera
|
|
84
84
|
|
85
85
|
#### Option 1: PyPI Installation (Recommended)
|
86
86
|
```bash
|
87
|
-
# Install from PyPI
|
87
|
+
# Install from PyPI
|
88
88
|
pip install banko-ai-assistant
|
89
89
|
|
90
|
+
# Set up environment variables
|
91
|
+
export WATSONX_API_KEY="your_watsonx_api_key_here"
|
92
|
+
export WATSONX_PROJECT_ID="your_watsonx_project_id_here"
|
93
|
+
export WATSONX_MODEL_ID="openai/gpt-oss-120b"
|
94
|
+
export DATABASE_URL="cockroachdb://root@localhost:26257/defaultdb?sslmode=disable"
|
95
|
+
|
90
96
|
# Run the application
|
91
|
-
|
97
|
+
python -m banko_ai
|
92
98
|
```
|
93
99
|
|
94
100
|
#### Option 2: Development Installation
|
@@ -119,7 +125,7 @@ Set up your environment variables:
|
|
119
125
|
|
120
126
|
```bash
|
121
127
|
# Required: Database connection
|
122
|
-
export DATABASE_URL="cockroachdb://root@localhost:26257/
|
128
|
+
export DATABASE_URL="cockroachdb://root@localhost:26257/defaultdb?sslmode=disable"
|
123
129
|
|
124
130
|
# Required: AI Service (choose one)
|
125
131
|
export AI_SERVICE="watsonx" # or "openai", "aws", "gemini"
|
@@ -366,7 +372,7 @@ banko_ai/
|
|
366
372
|
cockroach start --insecure --listen-addr=localhost:26257
|
367
373
|
|
368
374
|
# Verify database exists
|
369
|
-
cockroach sql --url="
|
375
|
+
cockroach sql --url="cockroachdb://root@localhost:26257/defaultdb?sslmode=disable" --execute "SHOW TABLES;"
|
370
376
|
```
|
371
377
|
|
372
378
|
**AI Provider Disconnected**
|
@@ -1,6 +1,6 @@
|
|
1
1
|
banko_ai/__init__.py,sha256=G1InyKemqQxP9xx6yGZgolBmrmOLSpBXqGYY8LaFOeo,568
|
2
2
|
banko_ai/__main__.py,sha256=U-KkrXtL8JNIyV25PE5v_eYhlhjR7jd6kG-txfYfs0M,709
|
3
|
-
banko_ai/cli.py,sha256=
|
3
|
+
banko_ai/cli.py,sha256=mInMRG4JK-iQoauNvJ8ZVzkWHemTW9GwC2xhXY_SX1g,13762
|
4
4
|
banko_ai/ai_providers/__init__.py,sha256=JdBgw5Mji2pe9nU-aiRYUmJuZk0q8KbcMtbpMJC5Dq8,483
|
5
5
|
banko_ai/ai_providers/aws_provider.py,sha256=-tR-8tlEeSL-Fspx05tTMFguvQylkW_pz0PI2XJEByM,13074
|
6
6
|
banko_ai/ai_providers/base.py,sha256=zbuAgkHIfJ0YkG83LXzieJuvXBcB2-nx7NhbL-I4Pf0,4725
|
@@ -156,9 +156,9 @@ banko_ai/vector_search/search.py,sha256=I-DgxTqib_VbRKX0Ttk9QmzGcAW2hLYm0_Y9HXSa
|
|
156
156
|
banko_ai/web/__init__.py,sha256=hjWVVxYpIZhOAN1qBf4xTd36a5AUHM03Q8BF8pykhJQ,363
|
157
157
|
banko_ai/web/app.py,sha256=Qdd9gIccFJ5NeEYFiwKS3evFNbba6t5LNs733isloWE,32127
|
158
158
|
banko_ai/web/auth.py,sha256=js6qIixSFHyLbETDm8GNLCPrDkCDcaQZPFOrqtZP1uw,2125
|
159
|
-
banko_ai_assistant-1.0.
|
160
|
-
banko_ai_assistant-1.0.
|
161
|
-
banko_ai_assistant-1.0.
|
162
|
-
banko_ai_assistant-1.0.
|
163
|
-
banko_ai_assistant-1.0.
|
164
|
-
banko_ai_assistant-1.0.
|
159
|
+
banko_ai_assistant-1.0.14.dist-info/licenses/LICENSE,sha256=skG0LkywIClj8fgSIXiG6o9vUDJ678BKBObIyJ19OMw,1075
|
160
|
+
banko_ai_assistant-1.0.14.dist-info/METADATA,sha256=9R77jDJBrhg4ZdOmhIA_C7Ep7IV23KhKAAuvXfN7YD4,13505
|
161
|
+
banko_ai_assistant-1.0.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
162
|
+
banko_ai_assistant-1.0.14.dist-info/entry_points.txt,sha256=IxPjBjMvbpCp-ikCA43bOSbYboTGPX4HYcZlvu2_vcA,47
|
163
|
+
banko_ai_assistant-1.0.14.dist-info/top_level.txt,sha256=xNMa9Z67UssefOQ2ubFObtqUYIfYmCIclfz0xdo5OPE,9
|
164
|
+
banko_ai_assistant-1.0.14.dist-info/RECORD,,
|
File without changes
|
{banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/entry_points.txt
RENAMED
File without changes
|
{banko_ai_assistant-1.0.13.dist-info → banko_ai_assistant-1.0.14.dist-info}/licenses/LICENSE
RENAMED
File without changes
|
File without changes
|