vibe-client 0.1.0__tar.gz → 0.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
- Name: vibe-client
3
- Version: 0.1.0
2
+ Name: vibe_client
3
+ Version: 0.1.1
4
4
  Summary: vibe client
5
5
  License: Apache-2.0
6
6
  Keywords: smithy,vibe
@@ -33,7 +33,7 @@ A Python client for the Vibe API, enabling seamless interaction with Vibe agents
33
33
  ## Installation
34
34
 
35
35
  ```bash
36
- pip install vibe
36
+ pip install vibe_client
37
37
  ```
38
38
 
39
39
  ## Features
@@ -47,8 +47,8 @@ pip install vibe
47
47
 
48
48
  ```python
49
49
  import asyncio
50
- from vibe.models import QueryAgentInput, ObservationValueBox
51
- from vibe.client import VibeClient
50
+ from vibe_client.models import QueryAgentInput, ObservationValueBox
51
+ from vibe_client.client import VibeClient
52
52
 
53
53
  async def main():
54
54
  # Initialize the client with your API key
@@ -96,7 +96,7 @@ The built documentation will be available in `docs/build/html/index.html`.
96
96
 
97
97
  ```
98
98
  vibe/
99
- ├── src/vibe/ # Main package source code
99
+ ├── src/vibe_client/ # Main package source code
100
100
  │ ├── __init__.py # Package initialization
101
101
  │ ├── client.py # API client implementation
102
102
  │ ├── config.py # Configuration utilities
@@ -5,7 +5,7 @@ A Python client for the Vibe API, enabling seamless interaction with Vibe agents
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- pip install vibe
8
+ pip install vibe_client
9
9
  ```
10
10
 
11
11
  ## Features
@@ -19,8 +19,8 @@ pip install vibe
19
19
 
20
20
  ```python
21
21
  import asyncio
22
- from vibe.models import QueryAgentInput, ObservationValueBox
23
- from vibe.client import VibeClient
22
+ from vibe_client.models import QueryAgentInput, ObservationValueBox
23
+ from vibe_client.client import VibeClient
24
24
 
25
25
  async def main():
26
26
  # Initialize the client with your API key
@@ -68,7 +68,7 @@ The built documentation will be available in `docs/build/html/index.html`.
68
68
 
69
69
  ```
70
70
  vibe/
71
- ├── src/vibe/ # Main package source code
71
+ ├── src/vibe_client/ # Main package source code
72
72
  │ ├── __init__.py # Package initialization
73
73
  │ ├── client.py # API client implementation
74
74
  │ ├── config.py # Configuration utilities
@@ -2,8 +2,8 @@
2
2
 
3
3
 
4
4
  [project]
5
- name = "vibe-client"
6
- version = "0.1.0"
5
+ name = "vibe_client"
6
+ version = "0.1.1"
7
7
  description = "vibe client"
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.12"
@@ -1,8 +1,8 @@
1
1
  import os
2
2
  import unittest
3
3
  import asyncio
4
- from vibe.models import QueryAgentInput, ObservationValueBox
5
- from vibe.client import VibeClient
4
+ from vibe_client.models import QueryAgentInput, ObservationValueBox
5
+ from vibe_client.client import VibeClient
6
6
 
7
7
  class TestVibeClientQueryAgent(unittest.TestCase):
8
8
  """Test suite for the Vibe client query_agent functionality."""
File without changes