chatbotai-gui 1.0.1b1__tar.gz → 1.0.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- chatbotai_gui-1.0.2/PKG-INFO +16 -0
- chatbotai_gui-1.0.2/README.rst +43 -0
- chatbotai_gui-1.0.2/chatai/__main__.py +2 -0
- chatbotai_gui-1.0.2/chatbotai_gui.egg-info/PKG-INFO +16 -0
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/chatbotai_gui.egg-info/SOURCES.txt +2 -1
- chatbotai_gui-1.0.2/chatbotai_gui.egg-info/requires.txt +11 -0
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/chatbotai_gui.egg-info/top_level.txt +0 -1
- chatbotai_gui-1.0.2/pyproject.toml +32 -0
- chatbotai_gui-1.0.1b1/PKG-INFO +0 -6
- chatbotai_gui-1.0.1b1/chatai/__main__.py +0 -2
- chatbotai_gui-1.0.1b1/chatbotai_gui.egg-info/PKG-INFO +0 -6
- chatbotai_gui-1.0.1b1/pyproject.toml +0 -15
- chatbotai_gui-1.0.1b1/setup.py +0 -32
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/chatai/__init__.py +0 -0
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/chatai/chatbotgui.py +0 -0
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/chatbotai_gui.egg-info/dependency_links.txt +0 -0
- {chatbotai_gui-1.0.1b1 → chatbotai_gui-1.0.2}/setup.cfg +0 -0
@@ -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,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,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"]
|
chatbotai_gui-1.0.1b1/PKG-INFO
DELETED
@@ -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
|
chatbotai_gui-1.0.1b1/setup.py
DELETED
@@ -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
|
File without changes
|
File without changes
|
File without changes
|