forked from phoenix-oss/llama-stack-mirror
fix: resolve type hint issues and import dependencies (#1176)
# What does this PR do? - Fixed type hinting and missing imports across multiple modules. - Improved compatibility by using `TYPE_CHECKING` for conditional imports. - Updated `pyproject.toml` to enforce stricter linting. Signed-off-by: Sébastien Han <seb@redhat.com> Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
1a044ef894
commit
c223b1862b
7 changed files with 14 additions and 5 deletions
|
@ -73,7 +73,10 @@ def show():
|
|||
image_data.append({"image_base64": image_base64})
|
||||
buf.close()
|
||||
|
||||
req_con, resp_con = _open_connections()
|
||||
# The _open_connections method is dynamically made available to
|
||||
# the interpreter by bundling code from "code_env_prefix.py" -- by literally prefixing it -- and
|
||||
# then "eval"ing it within a sandboxed interpreter.
|
||||
req_con, resp_con = _open_connections() # noqa: F821
|
||||
|
||||
_json_dump = _json.dumps(
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue