q-bot 2.0.0.dev3__tar.gz → 2.0.0.dev4__tar.gz
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.
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/PKG-INFO +7 -7
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/pyproject.toml +6 -6
- q_bot-2.0.0.dev4/q/__init__.py +1 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/anthropic.py +1 -1
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/PKG-INFO +7 -7
- q_bot-2.0.0.dev4/q_bot.egg-info/requires.txt +9 -0
- q_bot-2.0.0.dev3/q/__init__.py +0 -1
- q_bot-2.0.0.dev3/q_bot.egg-info/requires.txt +0 -9
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/README.md +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/agents.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/commands.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/main.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/models.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/parser.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/session.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/terminal.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/client.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/message.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/__init__.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/openai.py +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/SOURCES.txt +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/dependency_links.txt +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/entry_points.txt +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/top_level.txt +0 -0
- {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/setup.cfg +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: q-bot
|
|
3
|
-
Version: 2.0.0.
|
|
3
|
+
Version: 2.0.0.dev4
|
|
4
4
|
Summary: A provider-agnostic command-line agent and LLM framework.
|
|
5
5
|
Author-email: Tushar Khan <dev@tusharkhan.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Repository, https://github.com/tk755/q
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
Requires-Dist: anthropic==0.
|
|
10
|
+
Requires-Dist: anthropic==0.111.0
|
|
11
11
|
Requires-Dist: colorama==0.4.6
|
|
12
12
|
Requires-Dist: distro==1.9.0
|
|
13
|
-
Requires-Dist: openai==2.
|
|
14
|
-
Requires-Dist: psutil==7.2.
|
|
15
|
-
Requires-Dist: pydantic==2.
|
|
13
|
+
Requires-Dist: openai==2.43.0
|
|
14
|
+
Requires-Dist: psutil==7.2.2
|
|
15
|
+
Requires-Dist: pydantic==2.13.4
|
|
16
16
|
Requires-Dist: pyperclip==1.11.0
|
|
17
|
-
Requires-Dist: python-dotenv==1.2.
|
|
18
|
-
Requires-Dist: termcolor==3.
|
|
17
|
+
Requires-Dist: python-dotenv==1.2.2
|
|
18
|
+
Requires-Dist: termcolor==3.3.0
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
21
21
|
|
|
@@ -8,15 +8,15 @@ dynamic = ["version"]
|
|
|
8
8
|
description = "A provider-agnostic command-line agent and LLM framework."
|
|
9
9
|
requires-python = ">=3.12"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"anthropic==0.
|
|
11
|
+
"anthropic==0.111.0",
|
|
12
12
|
"colorama==0.4.6",
|
|
13
13
|
"distro==1.9.0",
|
|
14
|
-
"openai==2.
|
|
15
|
-
"psutil==7.2.
|
|
16
|
-
"pydantic==2.
|
|
14
|
+
"openai==2.43.0",
|
|
15
|
+
"psutil==7.2.2",
|
|
16
|
+
"pydantic==2.13.4",
|
|
17
17
|
"pyperclip==1.11.0",
|
|
18
|
-
"python-dotenv==1.2.
|
|
19
|
-
"termcolor==3.
|
|
18
|
+
"python-dotenv==1.2.2",
|
|
19
|
+
"termcolor==3.3.0",
|
|
20
20
|
]
|
|
21
21
|
authors = [
|
|
22
22
|
{name = "Tushar Khan", email = "dev@tusharkhan.com"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.0.0.dev4"
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: q-bot
|
|
3
|
-
Version: 2.0.0.
|
|
3
|
+
Version: 2.0.0.dev4
|
|
4
4
|
Summary: A provider-agnostic command-line agent and LLM framework.
|
|
5
5
|
Author-email: Tushar Khan <dev@tusharkhan.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Repository, https://github.com/tk755/q
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
Requires-Dist: anthropic==0.
|
|
10
|
+
Requires-Dist: anthropic==0.111.0
|
|
11
11
|
Requires-Dist: colorama==0.4.6
|
|
12
12
|
Requires-Dist: distro==1.9.0
|
|
13
|
-
Requires-Dist: openai==2.
|
|
14
|
-
Requires-Dist: psutil==7.2.
|
|
15
|
-
Requires-Dist: pydantic==2.
|
|
13
|
+
Requires-Dist: openai==2.43.0
|
|
14
|
+
Requires-Dist: psutil==7.2.2
|
|
15
|
+
Requires-Dist: pydantic==2.13.4
|
|
16
16
|
Requires-Dist: pyperclip==1.11.0
|
|
17
|
-
Requires-Dist: python-dotenv==1.2.
|
|
18
|
-
Requires-Dist: termcolor==3.
|
|
17
|
+
Requires-Dist: python-dotenv==1.2.2
|
|
18
|
+
Requires-Dist: termcolor==3.3.0
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
21
21
|
|
q_bot-2.0.0.dev3/q/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.0.0.dev3"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|