mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
# What does this PR do?
- Initialize route_impls to None in constructor to prevent
AttributeError
- Consolidate initialization checks to single point in request() method
- Improve error message to be more helpful ("Please call initialize()
first")
- Add comprehensive test suite to prevent regressions
The library client now has better error handling when users forget to
call initialize(), showing a clear ValueError instead of confusing
AttributeError. All initialization validation is now centralized in the
request() method, with internal methods (_call_non_streaming,
_call_streaming, _convert_body) relying on this single check for
cleaner, more maintainable code.
closes #2943
## Test Plan
`./scripts/unit-tests.sh`
|
||
|---|---|---|
| .. | ||
| routers | ||
| routing_tables | ||
| test_build_path.py | ||
| test_context.py | ||
| test_distribution.py | ||
| test_inference_recordings.py | ||
| test_library_client_initialization.py | ||