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
Running 05-memory-and-embeddings.ipynb, when I run cell
from semantic_kernel.connectors.in_memory import InMemoryStore
in_memory_store = InMemoryStore()
collection = in_memory_store.get_collection(record_type=SimpleModel)
await collection.ensure_collection_exists()
# Add records to the collection
await collection.upsert(records)
with text-embedding-ada-002 as my AZURE_OPENAI_EMBEDDING_DEPLOYMENT_NAME I get
BadRequestError: Error code: 400 - {'error': {'message': 'This model does not support specifying dimensions.', 'type': 'invalid_request_error', 'param': None, 'code': None}}