Hello everyone.
I've upgraded llama index to the latest yesterday, moving from the 0.6.38 to 0.7.2.
I've migrated the code and everything seems to work except the langchain tooken counter and costs.
from langchain.callbacks import get_openai_callback
with get_openai_callback() as cb:
...../// llm stuff
print(cb.total_tokens)
Until yesterday this code was working fine, but from today I got always 0 as token counters and costs.
I'm currently using this as underlying LLM connector.
from llama_index.llms import AzureOpenAI
Did something change around it?