Kevin John
Kevin John
Hi @stevkan, Thanks for the quick reply. The documentation states that the delay and period properties take values in seconds as mentioned [here](https://github.com/microsoft/botbuilder-python/blob/main/libraries/botbuilder-core/botbuilder/core/show_typing_middleware.py), I had just used the default values...
Hi @stevkan No luck with `ShowTypingMiddleware(0.5, 1.0)` I'm getting the same infinite typing activities bug when it goes into on_error(). Were you able to reproduce this on your end?
Hi @anishprasad01, I have come up with a make-shift solution, can you confirm if this would work. ## botbuilder.core.ShowTypingMiddleware ### In on_turn() method I have changed all `timer` to `self.timer`...
Hi @tellarin, any update on this issue? It seems to still be there in the latest version.
Hi @Loprock I can see you're using version 4.11 where single-tenant Azure Bots are not compatible, only multi-tenant are. I have faced a similar issue in the past where I...
Hi @naarkhoo, the issue comes down to Ubuntu 20.04 not having a version of `sqlite3 >= 3.35.0` which is required for ChromaDB. They have raised a [PR](https://github.com/crewAIInc/crewAI/pull/2683) to import ChromaDB...
for context I am providing Embedder in Crew as such embedder={ "provider": "azure", "config": { "api_key": AZURE_OPENAI_EMBEDDINGS_API_KEY, "api_base": AZURE_OPENAI_EMBEDDINGS_ENDPOINT, "api_version": AZURE_OPENAI_EMBEDDINGS_API_VERSION, "model_name": AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT, "deployment_id": AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT, }, }
Hi @Vidit-Ostwal I'll try it out and let you know @lucasgomide Yes I am using FileReadTool and some CustomTools I have written. The text is large plain text which equates...
Hi I've installed the latest version on a brand new virtual environment with Python 3.11: crewai==0.119.0 crewai-tools==0.44.0 I seem to encounter a new issue when using memory with AzureOpenAI ...
@lorenzejay I'm using text-embedding-3-small from Azure OpenAI. I've attached a code sample above showing how I'm using it too.