Skip to content

Commit be835dc

Browse files
committed
👌 IMPROVE: Readme
1 parent 4bfade1 commit be835dc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The SDK uses pytest for testing. To run the tests:
5252
pytest
5353

5454
# Run specific tests
55-
pytest tests/test_client.py
55+
pytest tests/test_langbase.py
5656

5757
# Run with coverage
5858
pytest --cov=langbase
@@ -173,17 +173,19 @@ The project follows this structure:
173173
langbase-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

0 commit comments

Comments
 (0)