chatbotai-gui 1.0.2__tar.gz → 1.0.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- chatbotai_gui-1.0.3/PKG-INFO +61 -0
- chatbotai_gui-1.0.3/chatbotai_gui.egg-info/PKG-INFO +61 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/pyproject.toml +2 -1
- chatbotai_gui-1.0.2/PKG-INFO +0 -16
- chatbotai_gui-1.0.2/chatbotai_gui.egg-info/PKG-INFO +0 -16
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/README.rst +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatai/__init__.py +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatai/__main__.py +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatai/chatbotgui.py +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatbotai_gui.egg-info/SOURCES.txt +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatbotai_gui.egg-info/dependency_links.txt +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatbotai_gui.egg-info/requires.txt +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/chatbotai_gui.egg-info/top_level.txt +0 -0
- {chatbotai_gui-1.0.2 → chatbotai_gui-1.0.3}/setup.cfg +0 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: chatbotai-gui
|
3
|
+
Version: 1.0.3
|
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
|
+
Description-Content-Type: text/x-rst
|
8
|
+
Requires-Dist: openai
|
9
|
+
Requires-Dist: meta_ai_api
|
10
|
+
Requires-Dist: google-generativeai
|
11
|
+
Provides-Extra: dev
|
12
|
+
Requires-Dist: pytest; extra == "dev"
|
13
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
14
|
+
Requires-Dist: coverage; extra == "dev"
|
15
|
+
Requires-Dist: flake8; extra == "dev"
|
16
|
+
Requires-Dist: black; extra == "dev"
|
17
|
+
Requires-Dist: isort; extra == "dev"
|
18
|
+
|
19
|
+
ChatbotAI-GUI
|
20
|
+
=============
|
21
|
+
|
22
|
+
**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.
|
23
|
+
|
24
|
+
✨ Features
|
25
|
+
------------
|
26
|
+
- Supports **OpenAI**, **Meta AI API**, and **Google Generative AI**.
|
27
|
+
- Simple and intuitive GUI for easy interaction.
|
28
|
+
- Extensible and customizable for different chatbot implementations.
|
29
|
+
|
30
|
+
📦 Installation
|
31
|
+
----------------
|
32
|
+
Install the package using:
|
33
|
+
|
34
|
+
.. code-block:: sh
|
35
|
+
|
36
|
+
pip install chatbotai-gui
|
37
|
+
|
38
|
+
🚀 Usage
|
39
|
+
---------
|
40
|
+
After installation, you can launch the chatbot GUI using:
|
41
|
+
|
42
|
+
.. code-block:: sh
|
43
|
+
|
44
|
+
python -m chatai
|
45
|
+
|
46
|
+
Or in a Python script:
|
47
|
+
|
48
|
+
.. code-block:: python
|
49
|
+
|
50
|
+
from chatai.chatbotgui import ChatbotApp
|
51
|
+
|
52
|
+
app = ChatbotApp()
|
53
|
+
app.run()
|
54
|
+
|
55
|
+
📝 Configuration
|
56
|
+
----------------
|
57
|
+
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.
|
58
|
+
|
59
|
+
📜 License
|
60
|
+
-----------
|
61
|
+
This project is licensed under the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
|
@@ -0,0 +1,61 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: chatbotai-gui
|
3
|
+
Version: 1.0.3
|
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
|
+
Description-Content-Type: text/x-rst
|
8
|
+
Requires-Dist: openai
|
9
|
+
Requires-Dist: meta_ai_api
|
10
|
+
Requires-Dist: google-generativeai
|
11
|
+
Provides-Extra: dev
|
12
|
+
Requires-Dist: pytest; extra == "dev"
|
13
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
14
|
+
Requires-Dist: coverage; extra == "dev"
|
15
|
+
Requires-Dist: flake8; extra == "dev"
|
16
|
+
Requires-Dist: black; extra == "dev"
|
17
|
+
Requires-Dist: isort; extra == "dev"
|
18
|
+
|
19
|
+
ChatbotAI-GUI
|
20
|
+
=============
|
21
|
+
|
22
|
+
**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.
|
23
|
+
|
24
|
+
✨ Features
|
25
|
+
------------
|
26
|
+
- Supports **OpenAI**, **Meta AI API**, and **Google Generative AI**.
|
27
|
+
- Simple and intuitive GUI for easy interaction.
|
28
|
+
- Extensible and customizable for different chatbot implementations.
|
29
|
+
|
30
|
+
📦 Installation
|
31
|
+
----------------
|
32
|
+
Install the package using:
|
33
|
+
|
34
|
+
.. code-block:: sh
|
35
|
+
|
36
|
+
pip install chatbotai-gui
|
37
|
+
|
38
|
+
🚀 Usage
|
39
|
+
---------
|
40
|
+
After installation, you can launch the chatbot GUI using:
|
41
|
+
|
42
|
+
.. code-block:: sh
|
43
|
+
|
44
|
+
python -m chatai
|
45
|
+
|
46
|
+
Or in a Python script:
|
47
|
+
|
48
|
+
.. code-block:: python
|
49
|
+
|
50
|
+
from chatai.chatbotgui import ChatbotApp
|
51
|
+
|
52
|
+
app = ChatbotApp()
|
53
|
+
app.run()
|
54
|
+
|
55
|
+
📝 Configuration
|
56
|
+
----------------
|
57
|
+
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.
|
58
|
+
|
59
|
+
📜 License
|
60
|
+
-----------
|
61
|
+
This project is licensed under the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "chatbotai-gui"
|
7
|
-
version = "1.0.
|
7
|
+
version = "1.0.3"
|
8
8
|
description = "A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI."
|
9
9
|
authors = [{ name = "ProgMEM-CC" }]
|
10
10
|
license = { text = "AGPL-3.0-or-later" } # ✅ No `license-file`
|
@@ -13,6 +13,7 @@ dependencies = [
|
|
13
13
|
"meta_ai_api",
|
14
14
|
"google-generativeai"
|
15
15
|
]
|
16
|
+
readme = "README.rst"
|
16
17
|
|
17
18
|
[project.optional-dependencies]
|
18
19
|
dev = [
|
chatbotai_gui-1.0.2/PKG-INFO
DELETED
@@ -1,16 +0,0 @@
|
|
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,16 +0,0 @@
|
|
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"
|
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
|