File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ The SDK uses pytest for testing. To run the tests:
5252pytest
5353
5454# Run specific tests
55- pytest tests/test_client .py
55+ pytest tests/test_langbase .py
5656
5757# Run with coverage
5858pytest --cov=langbase
@@ -173,17 +173,19 @@ The project follows this structure:
173173langbase-python/
174174├── langbase/ # Main package
175175│ ├── __init__.py # Package initialization
176- │ ├── client .py # Main client implementation
176+ │ ├── langbase .py # Main client implementation
177177│ ├── request.py # HTTP request handling
178178│ ├── errors.py # Error classes
179- │ ├── types.py # Type definitions
179+ │ ├── types.py # Type definitions (not used)
180180│ └── utils.py # Utility functions
181+ │ └── workflow.py # Workflow implementation
181182├── tests/ # Test package
182183│ ├── __init__.py # Test package initialization
183184│ ├── test_client.py # Tests for the client
184185│ ├── test_request.py # Tests for request handling
185186│ ├── test_errors.py # Tests for error classes
186187│ └── test_utils.py # Tests for utility functions
188+ │ └── test_workflow.py # Tests for workflow
187189├── examples/ # Example scripts
188190├── setup.py # Package setup script
189191├── pyproject.toml # Project configuration
You can’t perform that action at this time.
0 commit comments