chatbotai-gui 1.0.2__py3-none-any.whl → 1.0.3__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.
- chatbotai_gui-1.0.3.dist-info/METADATA +61 -0
- {chatbotai_gui-1.0.2.dist-info → chatbotai_gui-1.0.3.dist-info}/RECORD +4 -4
- chatbotai_gui-1.0.2.dist-info/METADATA +0 -16
- {chatbotai_gui-1.0.2.dist-info → chatbotai_gui-1.0.3.dist-info}/WHEEL +0 -0
- {chatbotai_gui-1.0.2.dist-info → chatbotai_gui-1.0.3.dist-info}/top_level.txt +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.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
chatai/__init__.py,sha256=2xKUBq0-tjLn88n92IOS0eNZIgywDxHfZTY9w-Zgxbo,3282
|
2
2
|
chatai/__main__.py,sha256=4tAOzUAJrsa3st202WTvfNPsKh0LVXs8BD-JA1ar_rA,168
|
3
3
|
chatai/chatbotgui.py,sha256=sU89yngl4Ejtyuq_r_k0nUrGB1u0gk37ZfKzH5AobLc,7527
|
4
|
-
chatbotai_gui-1.0.
|
5
|
-
chatbotai_gui-1.0.
|
6
|
-
chatbotai_gui-1.0.
|
7
|
-
chatbotai_gui-1.0.
|
4
|
+
chatbotai_gui-1.0.3.dist-info/METADATA,sha256=PWEb3LjbFrWKbe37pYPWMxjFktBfFn4Bfeu9YeNw9yU,1739
|
5
|
+
chatbotai_gui-1.0.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
+
chatbotai_gui-1.0.3.dist-info/top_level.txt,sha256=HDCQB7_6yio4QMbTcjAN9lFfqE3SGdOjJ-o7wtMtypM,7
|
7
|
+
chatbotai_gui-1.0.3.dist-info/RECORD,,
|
@@ -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
|