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.
- {vibe_client-0.1.0 → vibe_client-0.1.1}/PKG-INFO +6 -6
- {vibe_client-0.1.0 → vibe_client-0.1.1}/README.md +4 -4
- {vibe_client-0.1.0 → vibe_client-0.1.1}/pyproject.toml +2 -2
- {vibe_client-0.1.0 → vibe_client-0.1.1}/tests/test_vibe_client.py +2 -2
- {vibe_client-0.1.0 → vibe_client-0.1.1}/.gitignore +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/__init__.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/_private/__init__.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/_private/schemas.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/client.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/config.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/deserialize.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/models.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/src/vibe_client/serialize.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/tests/__init__.py +0 -0
- {vibe_client-0.1.0 → vibe_client-0.1.1}/tests/test_protocol.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
|
-
Name:
|
3
|
-
Version: 0.1.
|
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
|
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
|
51
|
-
from
|
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/
|
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
|
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
|
23
|
-
from
|
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/
|
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
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import os
|
2
2
|
import unittest
|
3
3
|
import asyncio
|
4
|
-
from
|
5
|
-
from
|
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
|
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
|