banko-ai-assistant 1.0.4__py3-none-any.whl → 1.0.5__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/web/app.py +15 -0
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/METADATA +1 -1
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/RECORD +7 -7
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/WHEEL +0 -0
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/entry_points.txt +0 -0
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/licenses/LICENSE +0 -0
- {banko_ai_assistant-1.0.4.dist-info → banko_ai_assistant-1.0.5.dist-info}/top_level.txt +0 -0
banko_ai/web/app.py
CHANGED
@@ -438,6 +438,21 @@ def create_app() -> Flask:
|
|
438
438
|
print(f"Error with {provider_info['name']}: {str(e)}")
|
439
439
|
session['chat'].append({'text': error_message, 'class': 'Assistant'})
|
440
440
|
|
441
|
+
# Return JSON response for POST requests (AJAX)
|
442
|
+
if request.method == 'POST':
|
443
|
+
if session['chat']:
|
444
|
+
return jsonify({
|
445
|
+
'response': session['chat'][-1]['text'],
|
446
|
+
'success': True
|
447
|
+
})
|
448
|
+
else:
|
449
|
+
return jsonify({
|
450
|
+
'response': 'No response generated - session chat is empty',
|
451
|
+
'success': False,
|
452
|
+
'error': 'Session chat not initialized'
|
453
|
+
})
|
454
|
+
|
455
|
+
# Return HTML template for GET requests
|
441
456
|
return render_template('index.html',
|
442
457
|
chat=session['chat'],
|
443
458
|
ai_provider=ai_provider_display,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: banko-ai-assistant
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
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
|
@@ -154,11 +154,11 @@ banko_ai/vector_search/enrichment.py,sha256=sRnFLNG9WGfq8j44T7krxHI-Lc2RSH68mt0I
|
|
154
154
|
banko_ai/vector_search/generator.py,sha256=b2yFIZRVkeGXOvsQmrqvLG7EygQ5RS4c6EakeYCZeMM,13439
|
155
155
|
banko_ai/vector_search/search.py,sha256=k3wo3zFJH9o-kBc-vAS-bdmM3LGX2vIk3u4cRA5QPXo,16915
|
156
156
|
banko_ai/web/__init__.py,sha256=hjWVVxYpIZhOAN1qBf4xTd36a5AUHM03Q8BF8pykhJQ,363
|
157
|
-
banko_ai/web/app.py,sha256=
|
157
|
+
banko_ai/web/app.py,sha256=18oH-fcGamDxe-6F3lgW4G9J3OocFlWrT4QnxqWaC4U,27131
|
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.5.dist-info/licenses/LICENSE,sha256=skG0LkywIClj8fgSIXiG6o9vUDJ678BKBObIyJ19OMw,1075
|
160
|
+
banko_ai_assistant-1.0.5.dist-info/METADATA,sha256=Urkr_PkkMr3NMdNcyHXJ_khVsPKCBXSkXxFt-645IIY,13243
|
161
|
+
banko_ai_assistant-1.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
162
|
+
banko_ai_assistant-1.0.5.dist-info/entry_points.txt,sha256=IxPjBjMvbpCp-ikCA43bOSbYboTGPX4HYcZlvu2_vcA,47
|
163
|
+
banko_ai_assistant-1.0.5.dist-info/top_level.txt,sha256=xNMa9Z67UssefOQ2ubFObtqUYIfYmCIclfz0xdo5OPE,9
|
164
|
+
banko_ai_assistant-1.0.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|