chatbotai-gui 1.0.1rc2__tar.gz → 1.0.3__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,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,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,3 +1,4 @@
1
+ README.rst
1
2
  pyproject.toml
2
3
  chatai/__init__.py
3
4
  chatai/__main__.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "chatbotai-gui"
7
- version = "1.0.1rc2"
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 = [
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: chatbotai-gui
3
- Version: 1.0.1rc2
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.1rc2
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"