chatbotai-gui 1.0.3a0.dev3223__tar.gz → 1.0.4.post2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: chatbotai-gui
3
- Version: 1.0.3a0.dev3223
3
+ Version: 1.0.4.post2
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
- 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.
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 the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
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
- 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.
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 the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
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.3a0.dev3223
3
+ Version: 1.0.4.post2
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
- 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.
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 the **AGPL-3.0-or-later**. See the `LICENSE` file for more details.
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.3a0-dev-3223"
7
+ version = "1.0.4-r2"
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`