iatoolkit 0.3.2__tar.gz → 0.3.3__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.
Potentially problematic release.
This version of iatoolkit might be problematic. Click here for more details.
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/PKG-INFO +45 -1
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/pyproject.toml +2 -2
- iatoolkit-0.3.3/readme.md +43 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit.egg-info/PKG-INFO +45 -1
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit.egg-info/SOURCES.txt +1 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/requirements.txt +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/setup.cfg +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit/__init__.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit/base_company.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit/company_registry.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit/iatoolkit.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit.egg-info/dependency_links.txt +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit.egg-info/requires.txt +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/iatoolkit.egg-info/top_level.txt +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/__init__.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/api_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/benchmark_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/dispatcher_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/document_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/excel_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/file_processor_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/history_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/jwt_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/load_documents_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/mail_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/profile_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/prompt_manager_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/query_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/search_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/sql_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/tasks_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/user_feedback_service.py +0 -0
- {iatoolkit-0.3.2 → iatoolkit-0.3.3}/src/services/user_session_context_service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iatoolkit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: IAToolkit
|
|
5
5
|
Author: Fernando Libedinsky
|
|
6
6
|
License-Expression: MIT
|
|
@@ -206,3 +206,47 @@ Requires-Dist: wrapt==1.17.0
|
|
|
206
206
|
Requires-Dist: yarl==1.18.3
|
|
207
207
|
Requires-Dist: zipp==3.21.0
|
|
208
208
|
Requires-Dist: zstandard==0.23.0
|
|
209
|
+
|
|
210
|
+
# iatoolkit
|
|
211
|
+
|
|
212
|
+
IAToolkit is a comprehensive, open-source framework designed for building enterprise-grade
|
|
213
|
+
AI chatbots and conversational applications.
|
|
214
|
+
Built on Flask with dependency injection, it provides a robust foundation for scalable AI solutions.
|
|
215
|
+
|
|
216
|
+
## 🚀 Key Features
|
|
217
|
+
- **Universal LLM Integration**: OpenAI GPT, Google Gemini
|
|
218
|
+
- **Template System**: Jinja2-powered prompt templates with variables
|
|
219
|
+
- **Context Management**: Maintain conversation context across sessions
|
|
220
|
+
|
|
221
|
+
### 🔒 **Enterprise Security**
|
|
222
|
+
- **JWT Authentication**: Secure token-based authentication
|
|
223
|
+
- **Session Management**: Redis-backed secure sessions
|
|
224
|
+
- **CORS Configuration**: Flexible cross-origin resource sharing
|
|
225
|
+
|
|
226
|
+
### 🛠 **Function Calling & Tools**
|
|
227
|
+
- **Native Function Calls**: Direct integration with LLM function calling
|
|
228
|
+
- **Custom Tools**: Build and register custom tools for your chatbot
|
|
229
|
+
- **SQL Query Generation**: Natural language to SQL conversion
|
|
230
|
+
- **API Integrations**: Connect to external services and APIs
|
|
231
|
+
|
|
232
|
+
### 🗄 **Database & Storage**
|
|
233
|
+
- **Multi-Database Support**: PostgreSQL, MySQL, SQLite via SQLAlchemy
|
|
234
|
+
- **Vector Store Integration**: Semantic search and retrieval
|
|
235
|
+
- **Document Processing**: PDF, Word, Excel, and text file handling
|
|
236
|
+
|
|
237
|
+
### 📊 **Analytics & Monitoring**
|
|
238
|
+
- **Query Logging**: Track all LLM interactions
|
|
239
|
+
- **Performance Metrics**: Response times, token usage, costs
|
|
240
|
+
- **Benchmarking**: Compare model performance
|
|
241
|
+
- **Task Management**: Async task processing with status tracking
|
|
242
|
+
|
|
243
|
+
### 🔧 **Developer Experience**
|
|
244
|
+
- **Dependency Injection**: Clean, testable architecture
|
|
245
|
+
- **CLI Tools**: Command-line interface for common tasks
|
|
246
|
+
- **Hot Reloading**: Development-friendly configuration
|
|
247
|
+
- **Comprehensive Logging**: Debug and monitor easily
|
|
248
|
+
|
|
249
|
+
## License
|
|
250
|
+
MIT License
|
|
251
|
+
|
|
252
|
+
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "iatoolkit"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.3"
|
|
8
8
|
requires-python = ">=3.10"
|
|
9
9
|
description = "IAToolkit"
|
|
10
|
-
readme = "
|
|
10
|
+
readme = "readme.md"
|
|
11
11
|
license = "MIT"
|
|
12
12
|
authors = [{ name = "Fernando Libedinsky" }]
|
|
13
13
|
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# iatoolkit
|
|
2
|
+
|
|
3
|
+
IAToolkit is a comprehensive, open-source framework designed for building enterprise-grade
|
|
4
|
+
AI chatbots and conversational applications.
|
|
5
|
+
Built on Flask with dependency injection, it provides a robust foundation for scalable AI solutions.
|
|
6
|
+
|
|
7
|
+
## 🚀 Key Features
|
|
8
|
+
- **Universal LLM Integration**: OpenAI GPT, Google Gemini
|
|
9
|
+
- **Template System**: Jinja2-powered prompt templates with variables
|
|
10
|
+
- **Context Management**: Maintain conversation context across sessions
|
|
11
|
+
|
|
12
|
+
### 🔒 **Enterprise Security**
|
|
13
|
+
- **JWT Authentication**: Secure token-based authentication
|
|
14
|
+
- **Session Management**: Redis-backed secure sessions
|
|
15
|
+
- **CORS Configuration**: Flexible cross-origin resource sharing
|
|
16
|
+
|
|
17
|
+
### 🛠 **Function Calling & Tools**
|
|
18
|
+
- **Native Function Calls**: Direct integration with LLM function calling
|
|
19
|
+
- **Custom Tools**: Build and register custom tools for your chatbot
|
|
20
|
+
- **SQL Query Generation**: Natural language to SQL conversion
|
|
21
|
+
- **API Integrations**: Connect to external services and APIs
|
|
22
|
+
|
|
23
|
+
### 🗄 **Database & Storage**
|
|
24
|
+
- **Multi-Database Support**: PostgreSQL, MySQL, SQLite via SQLAlchemy
|
|
25
|
+
- **Vector Store Integration**: Semantic search and retrieval
|
|
26
|
+
- **Document Processing**: PDF, Word, Excel, and text file handling
|
|
27
|
+
|
|
28
|
+
### 📊 **Analytics & Monitoring**
|
|
29
|
+
- **Query Logging**: Track all LLM interactions
|
|
30
|
+
- **Performance Metrics**: Response times, token usage, costs
|
|
31
|
+
- **Benchmarking**: Compare model performance
|
|
32
|
+
- **Task Management**: Async task processing with status tracking
|
|
33
|
+
|
|
34
|
+
### 🔧 **Developer Experience**
|
|
35
|
+
- **Dependency Injection**: Clean, testable architecture
|
|
36
|
+
- **CLI Tools**: Command-line interface for common tasks
|
|
37
|
+
- **Hot Reloading**: Development-friendly configuration
|
|
38
|
+
- **Comprehensive Logging**: Debug and monitor easily
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
MIT License
|
|
42
|
+
|
|
43
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iatoolkit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: IAToolkit
|
|
5
5
|
Author: Fernando Libedinsky
|
|
6
6
|
License-Expression: MIT
|
|
@@ -206,3 +206,47 @@ Requires-Dist: wrapt==1.17.0
|
|
|
206
206
|
Requires-Dist: yarl==1.18.3
|
|
207
207
|
Requires-Dist: zipp==3.21.0
|
|
208
208
|
Requires-Dist: zstandard==0.23.0
|
|
209
|
+
|
|
210
|
+
# iatoolkit
|
|
211
|
+
|
|
212
|
+
IAToolkit is a comprehensive, open-source framework designed for building enterprise-grade
|
|
213
|
+
AI chatbots and conversational applications.
|
|
214
|
+
Built on Flask with dependency injection, it provides a robust foundation for scalable AI solutions.
|
|
215
|
+
|
|
216
|
+
## 🚀 Key Features
|
|
217
|
+
- **Universal LLM Integration**: OpenAI GPT, Google Gemini
|
|
218
|
+
- **Template System**: Jinja2-powered prompt templates with variables
|
|
219
|
+
- **Context Management**: Maintain conversation context across sessions
|
|
220
|
+
|
|
221
|
+
### 🔒 **Enterprise Security**
|
|
222
|
+
- **JWT Authentication**: Secure token-based authentication
|
|
223
|
+
- **Session Management**: Redis-backed secure sessions
|
|
224
|
+
- **CORS Configuration**: Flexible cross-origin resource sharing
|
|
225
|
+
|
|
226
|
+
### 🛠 **Function Calling & Tools**
|
|
227
|
+
- **Native Function Calls**: Direct integration with LLM function calling
|
|
228
|
+
- **Custom Tools**: Build and register custom tools for your chatbot
|
|
229
|
+
- **SQL Query Generation**: Natural language to SQL conversion
|
|
230
|
+
- **API Integrations**: Connect to external services and APIs
|
|
231
|
+
|
|
232
|
+
### 🗄 **Database & Storage**
|
|
233
|
+
- **Multi-Database Support**: PostgreSQL, MySQL, SQLite via SQLAlchemy
|
|
234
|
+
- **Vector Store Integration**: Semantic search and retrieval
|
|
235
|
+
- **Document Processing**: PDF, Word, Excel, and text file handling
|
|
236
|
+
|
|
237
|
+
### 📊 **Analytics & Monitoring**
|
|
238
|
+
- **Query Logging**: Track all LLM interactions
|
|
239
|
+
- **Performance Metrics**: Response times, token usage, costs
|
|
240
|
+
- **Benchmarking**: Compare model performance
|
|
241
|
+
- **Task Management**: Async task processing with status tracking
|
|
242
|
+
|
|
243
|
+
### 🔧 **Developer Experience**
|
|
244
|
+
- **Dependency Injection**: Clean, testable architecture
|
|
245
|
+
- **CLI Tools**: Command-line interface for common tasks
|
|
246
|
+
- **Hot Reloading**: Development-friendly configuration
|
|
247
|
+
- **Comprehensive Logging**: Debug and monitor easily
|
|
248
|
+
|
|
249
|
+
## License
|
|
250
|
+
MIT License
|
|
251
|
+
|
|
252
|
+
|
|
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
|