chatbotai-gui 1.0.3a0.dev3223__tar.gz → 1.0.4.post12908392988__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/PKG-INFO +16 -3
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/README.rst +15 -2
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatbotai_gui.egg-info/PKG-INFO +16 -3
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/pyproject.toml +1 -1
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatai/__init__.py +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatai/__main__.py +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatai/chatbotgui.py +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatbotai_gui.egg-info/SOURCES.txt +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatbotai_gui.egg-info/dependency_links.txt +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatbotai_gui.egg-info/requires.txt +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/chatbotai_gui.egg-info/top_level.txt +0 -0
- {chatbotai_gui-1.0.3a0.dev3223 → chatbotai_gui-1.0.4.post12908392988}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: chatbotai-gui
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.4.post12908392988
|
4
4
|
Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
|
5
5
|
Author: ProgMEM-CC
|
6
6
|
License: AGPL-3.0-or-later
|
@@ -54,8 +54,21 @@ Or in a Python script:
|
|
54
54
|
|
55
55
|
📝 Configuration
|
56
56
|
----------------
|
57
|
-
|
57
|
+
Using the software interpreter to process API keys and bot type on launch.
|
58
|
+
|
59
|
+
.. code-block:: python
|
60
|
+
|
61
|
+
from chatai.chatbotgui import ChatbotApp, SoftwareInterpreter
|
62
|
+
|
63
|
+
app = ChatbotApp()
|
64
|
+
app.chatbot = SoftwareInterpreter(
|
65
|
+
api_key="YOUR_API_KEY_HERE",
|
66
|
+
ai_type="GEMINI", # Choose from "GEMINI", "CHATGPT", "META"
|
67
|
+
font="Arial",
|
68
|
+
openai_maxtoken=250,
|
69
|
+
)
|
70
|
+
app.run()
|
58
71
|
|
59
72
|
📜 License
|
60
73
|
-----------
|
61
|
-
This project is licensed under
|
74
|
+
This project is licensed under **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
|
@@ -36,8 +36,21 @@ Or in a Python script:
|
|
36
36
|
|
37
37
|
📝 Configuration
|
38
38
|
----------------
|
39
|
-
|
39
|
+
Using the software interpreter to process API keys and bot type on launch.
|
40
|
+
|
41
|
+
.. code-block:: python
|
42
|
+
|
43
|
+
from chatai.chatbotgui import ChatbotApp, SoftwareInterpreter
|
44
|
+
|
45
|
+
app = ChatbotApp()
|
46
|
+
app.chatbot = SoftwareInterpreter(
|
47
|
+
api_key="YOUR_API_KEY_HERE",
|
48
|
+
ai_type="GEMINI", # Choose from "GEMINI", "CHATGPT", "META"
|
49
|
+
font="Arial",
|
50
|
+
openai_maxtoken=250,
|
51
|
+
)
|
52
|
+
app.run()
|
40
53
|
|
41
54
|
📜 License
|
42
55
|
-----------
|
43
|
-
This project is licensed under
|
56
|
+
This project is licensed under **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: chatbotai-gui
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.4.post12908392988
|
4
4
|
Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
|
5
5
|
Author: ProgMEM-CC
|
6
6
|
License: AGPL-3.0-or-later
|
@@ -54,8 +54,21 @@ Or in a Python script:
|
|
54
54
|
|
55
55
|
📝 Configuration
|
56
56
|
----------------
|
57
|
-
|
57
|
+
Using the software interpreter to process API keys and bot type on launch.
|
58
|
+
|
59
|
+
.. code-block:: python
|
60
|
+
|
61
|
+
from chatai.chatbotgui import ChatbotApp, SoftwareInterpreter
|
62
|
+
|
63
|
+
app = ChatbotApp()
|
64
|
+
app.chatbot = SoftwareInterpreter(
|
65
|
+
api_key="YOUR_API_KEY_HERE",
|
66
|
+
ai_type="GEMINI", # Choose from "GEMINI", "CHATGPT", "META"
|
67
|
+
font="Arial",
|
68
|
+
openai_maxtoken=250,
|
69
|
+
)
|
70
|
+
app.run()
|
58
71
|
|
59
72
|
📜 License
|
60
73
|
-----------
|
61
|
-
This project is licensed under
|
74
|
+
This project is licensed under **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.4-r-12908392988"
|
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`
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|