mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
# What does this PR do? The goal of this PR is code base modernization. Schema reflection code needed a minor adjustment to handle UnionTypes and collections.abc.AsyncIterator. (Both are preferred for latest Python releases.) Note to reviewers: almost all changes here are automatically generated by pyupgrade. Some additional unused imports were cleaned up. The only change worth of note can be found under `docs/openapi_generator` and `llama_stack/strong_typing/schema.py` where reflection code was updated to deal with "newer" types. Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
from collections.abc import AsyncGenerator
|
|
from contextvars import ContextVar
|
|
from typing import TypeVar
|
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
def preserve_contexts_async_generator(
|
|
gen: AsyncGenerator[T, None], context_vars: list[ContextVar]
|
|
) -> AsyncGenerator[T, None]:
|
|
"""
|
|
Wraps an async generator to preserve context variables across iterations.
|
|
This is needed because we start a new asyncio event loop for each streaming request,
|
|
and we need to preserve the context across the event loop boundary.
|
|
"""
|
|
# Capture initial context values
|
|
initial_context_values = {context_var.name: context_var.get() for context_var in context_vars}
|
|
|
|
async def wrapper() -> AsyncGenerator[T, None]:
|
|
while True:
|
|
try:
|
|
# Restore context values before any await
|
|
for context_var in context_vars:
|
|
context_var.set(initial_context_values[context_var.name])
|
|
|
|
item = await gen.__anext__()
|
|
|
|
# Update our tracked values with any changes made during this iteration
|
|
for context_var in context_vars:
|
|
initial_context_values[context_var.name] = context_var.get()
|
|
|
|
yield item
|
|
|
|
except StopAsyncIteration:
|
|
break
|
|
|
|
return wrapper()
|