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.
Files changed (25) hide show
  1. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/PKG-INFO +7 -7
  2. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/pyproject.toml +6 -6
  3. q_bot-2.0.0.dev4/q/__init__.py +1 -0
  4. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/anthropic.py +1 -1
  5. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/PKG-INFO +7 -7
  6. q_bot-2.0.0.dev4/q_bot.egg-info/requires.txt +9 -0
  7. q_bot-2.0.0.dev3/q/__init__.py +0 -1
  8. q_bot-2.0.0.dev3/q_bot.egg-info/requires.txt +0 -9
  9. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/README.md +0 -0
  10. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/agents.py +0 -0
  11. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/commands.py +0 -0
  12. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/main.py +0 -0
  13. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/models.py +0 -0
  14. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/parser.py +0 -0
  15. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/session.py +0 -0
  16. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/cli/terminal.py +0 -0
  17. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/client.py +0 -0
  18. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/message.py +0 -0
  19. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/__init__.py +0 -0
  20. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q/providers/openai.py +0 -0
  21. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/SOURCES.txt +0 -0
  22. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/dependency_links.txt +0 -0
  23. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/entry_points.txt +0 -0
  24. {q_bot-2.0.0.dev3 → q_bot-2.0.0.dev4}/q_bot.egg-info/top_level.txt +0 -0
  25. {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.dev3
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.75.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.9.0
14
- Requires-Dist: psutil==7.2.1
15
- Requires-Dist: pydantic==2.12.5
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.1
18
- Requires-Dist: termcolor==3.2.0
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.75.0",
11
+ "anthropic==0.111.0",
12
12
  "colorama==0.4.6",
13
13
  "distro==1.9.0",
14
- "openai==2.9.0",
15
- "psutil==7.2.1",
16
- "pydantic==2.12.5",
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.1",
19
- "termcolor==3.2.0",
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"
@@ -63,4 +63,4 @@ class TextClient(AnthropicClient[str]):
63
63
  kwargs["system"] = system_prompt
64
64
 
65
65
  response = await self._async_client.messages.create(**kwargs)
66
- return response.content[0].text
66
+ return "".join(block.text for block in response.content if block.type == "text")
@@ -1,21 +1,21 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: q-bot
3
- Version: 2.0.0.dev3
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.75.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.9.0
14
- Requires-Dist: psutil==7.2.1
15
- Requires-Dist: pydantic==2.12.5
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.1
18
- Requires-Dist: termcolor==3.2.0
17
+ Requires-Dist: python-dotenv==1.2.2
18
+ Requires-Dist: termcolor==3.3.0
19
19
 
20
20
  # Overview
21
21
 
@@ -0,0 +1,9 @@
1
+ anthropic==0.111.0
2
+ colorama==0.4.6
3
+ distro==1.9.0
4
+ openai==2.43.0
5
+ psutil==7.2.2
6
+ pydantic==2.13.4
7
+ pyperclip==1.11.0
8
+ python-dotenv==1.2.2
9
+ termcolor==3.3.0
@@ -1 +0,0 @@
1
- __version__ = "2.0.0.dev3"
@@ -1,9 +0,0 @@
1
- anthropic==0.75.0
2
- colorama==0.4.6
3
- distro==1.9.0
4
- openai==2.9.0
5
- psutil==7.2.1
6
- pydantic==2.12.5
7
- pyperclip==1.11.0
8
- python-dotenv==1.2.1
9
- termcolor==3.2.0
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