I’m trying the Azure AI search. the backend using python and run as linux web app. in parts of app/backend/approaches/charreadretrieveread.py
async def run_until_final_call(
self,
history: list[dict[str, str]],
overrides: dict[str, Any],
auth_claims: dict[str, Any],
should_stream: bool = False,
) -> tuple[dict[str, Any], Coroutine[Any, Any, Union[ChatCompletion, AsyncStream[ChatCompletionChunk]]]]:
#print("/chat user question: " , history[-1])
logging.basicConfig(level=logging.INFO)
logging.info('Hello, logging!')
Although no error raised in this moment, but In Azure protal, the ‘Hello, logging!’ is not showing at the backend -> streaming log.
in backend -> web service log, I have set
level: verbose
application logging: file system
quota: 35 mb
retention periods(days): 1
New contributor
aaa aaa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.