向量检索服务DashVector在设计上支持Schema Free,在插入Doc、更新Doc、插入或更新Doc时,可设置任意KeyValue结构的字段(Field),如下所示:Python示例: collection.insert( Doc( id='1', vector=np.random.rand(4), fields={ 'name': 'zhangsan', 'weight':70.0, 'age':30, 'anykey1': 'anyvalue', 'anykey2': 1, 'anykey3': True, 'anykey4': 3.1415926 ... ... } ) ) 说...