chatbotai-gui 1.0.1b1__tar.gz → 1.0.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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: chatbotai-gui
3
+ Version: 1.0.2
4
+ Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
+ Author: ProgMEM-CC
6
+ License: AGPL-3.0-or-later
7
+ Requires-Dist: openai
8
+ Requires-Dist: meta_ai_api
9
+ Requires-Dist: google-generativeai
10
+ Provides-Extra: dev
11
+ Requires-Dist: pytest; extra == "dev"
12
+ Requires-Dist: pytest-cov; extra == "dev"
13
+ Requires-Dist: coverage; extra == "dev"
14
+ Requires-Dist: flake8; extra == "dev"
15
+ Requires-Dist: black; extra == "dev"
16
+ Requires-Dist: isort; extra == "dev"
@@ -0,0 +1,43 @@
1
+ ChatbotAI-GUI
2
+ =============
3
+
4
+ **ChatbotAI-GUI** is a graphical user interface (GUI) chatbot that integrates multiple AI models, including OpenAI, Meta AI, and Google Generative AI. This package allows users to interact with different AI models seamlessly through a single application.
5
+
6
+ ✨ Features
7
+ ------------
8
+ - Supports **OpenAI**, **Meta AI API**, and **Google Generative AI**.
9
+ - Simple and intuitive GUI for easy interaction.
10
+ - Extensible and customizable for different chatbot implementations.
11
+
12
+ 📦 Installation
13
+ ----------------
14
+ Install the package using:
15
+
16
+ .. code-block:: sh
17
+
18
+ pip install chatbotai-gui
19
+
20
+ 🚀 Usage
21
+ ---------
22
+ After installation, you can launch the chatbot GUI using:
23
+
24
+ .. code-block:: sh
25
+
26
+ python -m chatai
27
+
28
+ Or in a Python script:
29
+
30
+ .. code-block:: python
31
+
32
+ from chatai.chatbotgui import ChatbotApp
33
+
34
+ app = ChatbotApp()
35
+ app.run()
36
+
37
+ 📝 Configuration
38
+ ----------------
39
+ The chatbot configuration is stored in `config.json` inside the `chatai` module. You can modify it to adjust settings such as API keys and model preferences.
40
+
41
+ 📜 License
42
+ -----------
43
+ This project is licensed under the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
@@ -0,0 +1,2 @@
1
+ from .chatbotgui import ChatbotApp # Import the ChatbotApp class from chatbotgui module
2
+ ChatbotApp().run() # Create an instance of ChatbotApp and run the GUI main loop
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: chatbotai-gui
3
+ Version: 1.0.2
4
+ Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
+ Author: ProgMEM-CC
6
+ License: AGPL-3.0-or-later
7
+ Requires-Dist: openai
8
+ Requires-Dist: meta_ai_api
9
+ Requires-Dist: google-generativeai
10
+ Provides-Extra: dev
11
+ Requires-Dist: pytest; extra == "dev"
12
+ Requires-Dist: pytest-cov; extra == "dev"
13
+ Requires-Dist: coverage; extra == "dev"
14
+ Requires-Dist: flake8; extra == "dev"
15
+ Requires-Dist: black; extra == "dev"
16
+ Requires-Dist: isort; extra == "dev"
@@ -1,9 +1,10 @@
1
+ README.rst
1
2
  pyproject.toml
2
- setup.py
3
3
  chatai/__init__.py
4
4
  chatai/__main__.py
5
5
  chatai/chatbotgui.py
6
6
  chatbotai_gui.egg-info/PKG-INFO
7
7
  chatbotai_gui.egg-info/SOURCES.txt
8
8
  chatbotai_gui.egg-info/dependency_links.txt
9
+ chatbotai_gui.egg-info/requires.txt
9
10
  chatbotai_gui.egg-info/top_level.txt
@@ -0,0 +1,11 @@
1
+ openai
2
+ meta_ai_api
3
+ google-generativeai
4
+
5
+ [dev]
6
+ pytest
7
+ pytest-cov
8
+ coverage
9
+ flake8
10
+ black
11
+ isort
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=66", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "chatbotai-gui"
7
+ version = "1.0.2"
8
+ description = "A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI."
9
+ authors = [{ name = "ProgMEM-CC" }]
10
+ license = { text = "AGPL-3.0-or-later" } # ✅ No `license-file`
11
+ dependencies = [
12
+ "openai",
13
+ "meta_ai_api",
14
+ "google-generativeai"
15
+ ]
16
+
17
+ [project.optional-dependencies]
18
+ dev = [
19
+ "pytest",
20
+ "pytest-cov",
21
+ "coverage",
22
+ "flake8",
23
+ "black",
24
+ "isort"
25
+ ]
26
+
27
+ [tool.setuptools]
28
+ packages = ["chatai"]
29
+ license-files = [] # ✅ Explicitly disable auto-detecting LICENSE file
30
+
31
+ [tool.setuptools.package-data]
32
+ "chatai" = ["*.txt", "*.md", "*.json"]
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: chatbotai-gui
3
- Version: 1.0.1b1
4
- Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
- Author: ProgMEM-CC
6
- License: AGPL-3.0-or-later
@@ -1,2 +0,0 @@
1
- from chatbotgui import ChatbotApp # Import the ChatbotApp class from chatbotgui module
2
- ChatbotApp().run() # Create an instance of ChatbotApp and run the GUI main loop
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: chatbotai-gui
3
- Version: 1.0.1b1
4
- Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
- Author: ProgMEM-CC
6
- License: AGPL-3.0-or-later
@@ -1,15 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=42", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "chatbotai-gui"
7
- version = "1.0.1b1"
8
- description = "A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI."
9
- license = { text = "AGPL-3.0-or-later" } # ⬅️ Set the license **statically**
10
- authors = [
11
- { name = "ProgMEM-CC" }
12
- ]
13
-
14
- [tool.setuptools.packages]
15
- find = {} # ⬅️ Automatically find packages
@@ -1,32 +0,0 @@
1
- from setuptools import setup
2
-
3
- setup(
4
- name='chatbotai-gui',
5
- version='1.0.1b1',
6
- packages=['chatai'],
7
- license='AGPL-3.0-or-later',
8
- description='A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.',
9
- # Metadata
10
- author='ProgMEM-CC',
11
-
12
- # Required dependencies
13
- install_requires=[
14
- 'openai',
15
- 'google.generativeai',
16
- 'meta_ai_api'
17
- ],
18
-
19
- # Optional dependencies
20
- extras_require={
21
- 'dev': [
22
- 'pytest',
23
- 'pytest-cov',
24
- 'coverage',
25
- 'flake8',
26
- 'black',
27
- 'isort'
28
- ]
29
- },
30
- include_package_data=True, # Ensures extra files like LICENSE are included
31
- license_files=[]
32
- )
File without changes