You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested the notebook, and was able to run it after removing the package versions in the pip install cel.
Now I tested using the following versions of the depencencies:
llama-index==0.12.20
llama-index-llms-mistralai==0.3.3
mistralai==1.5.0
So you can test using !pip install llama-index==0.12.20 llama-index-llms-mistralai==0.3.3 mistralai==1.5.0
I get this error and i cannot figure out how to get rid of it for the llama-index part of the example:
ImportError Traceback (most recent call last)
in <cell line: 3>()
1 import os
2 from llama_index.core import Settings, SimpleDirectoryReader, VectorStoreIndex
----> 3 from llama_index.llms.mistralai import MistralAI
4 from llama_index.embeddings.mistralai import MistralAIEmbedding
5
2 frames
/usr/local/lib/python3.10/dist-packages/mistralai/async_client.py in
21 MistralException,
22 )
---> 23 from mistralai.files import FilesAsyncClient
24 from mistralai.jobs import JobsAsyncClient
25 from mistralai.models.chat_completion import (
ImportError: cannot import name 'FilesAsyncClient' from 'mistralai.files' (/usr/local/lib/python3.10/dist-packages/mistralai/files.py)
The text was updated successfully, but these errors were encountered: