We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba2a78c commit 7db25a8Copy full SHA for 7db25a8
src/neo4j_graphrag/embeddings/mistral.py
@@ -27,7 +27,6 @@
27
# Define placeholder type for type checking
28
class Mistral: # type: ignore
29
pass
30
- Mistral = None # type: ignore
31
32
33
class MistralAIEmbeddings(Embedder):
src/neo4j_graphrag/llm/mistralai_llm.py
@@ -36,12 +36,13 @@
36
from mistralai.models.sdkerror import SDKError
37
except ImportError:
38
# Define placeholder types for type checking
39
+ Messages = None # type: ignore
40
+
41
42
43
44
class SDKError(Exception): # type: ignore
45
- SDKError = None # type: ignore
46
47
48
class MistralAILLM(LLMInterface):
0 commit comments