Skip to content

Commit

Permalink
Python: slight mypy ini update (microsoft#7139)
Browse files Browse the repository at this point in the history
  • Loading branch information
eavanvalkenburg authored Jul 8, 2024
1 parent 5779b7d commit 2a3ba0c
Showing 1 changed file with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions python/mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,35 @@ no_implicit_reexport = true

[mypy-semantic_kernel.connectors.ai.open_ai.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7131

[mypy-semantic_kernel.connectors.ai.azure_ai_inference.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7132

[mypy-semantic_kernel.connectors.ai.hugging_face.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7133

[mypy-semantic_kernel.connectors.ai.ollama.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7134

[mypy-semantic_kernel.connectors.openapi_plugin.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7135

[mypy-semantic_kernel.connectors.utils.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7136

[mypy-semantic_kernel.connectors.search_engine.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7136

[mypy-semantic_kernel.connectors.ai.function_choice_behavior.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this: https://github.com/microsoft/semantic-kernel/issues/7137

[mypy-semantic_kernel.memory.*]
ignore_errors = true
Expand All @@ -44,10 +52,44 @@ ignore_errors = true

[mypy-semantic_kernel.planners.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this
# TODO (eavanvalkenburg): remove this after future of planner is decided
# https://github.com/microsoft/semantic-kernel/issues/6465

[mypy-semantic_kernel.connectors.memory.*]
[mypy-semantic_kernel.connectors.memory.astradb.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.azure_cognitive_search.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.azure_cosmosdb.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.azure_cosmosdb_no_sql.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.chroma.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.milvus.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.mongodb_atlas.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.pinecone.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.postgres.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.qdrant.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.redis.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.usearch.*]
ignore_errors = true

[mypy-semantic_kernel.connectors.memory.weaviate.*]
ignore_errors = true
# TODO (eavanvalkenburg): remove this
# https://github.com/microsoft/semantic-kernel/issues/6462

0 comments on commit 2a3ba0c

Please sign in to comment.