@@ -5583,13 +5583,11 @@ public class VectorStoreClient {
55835583 public virtual ClientResult < VectorStoreFileAssociation > GetFileAssociation ( string vectorStoreId , string fileId , CancellationToken cancellationToken = default ) ;
55845584 public virtual Task < ClientResult > GetFileAssociationAsync ( string vectorStoreId , string fileId , RequestOptions options ) ;
55855585 public virtual Task < ClientResult < VectorStoreFileAssociation > > GetFileAssociationAsync ( string vectorStoreId , string fileId , CancellationToken cancellationToken = default ) ;
5586- public virtual CollectionResult < VectorStoreFileAssociation > GetFileAssociations ( ContinuationToken firstPageToken , CancellationToken cancellationToken = default ) ;
55875586 public virtual CollectionResult < VectorStoreFileAssociation > GetFileAssociations ( string vectorStoreId , VectorStoreFileAssociationCollectionOptions options = null , CancellationToken cancellationToken = default ) ;
55885587 public virtual CollectionResult GetFileAssociations ( string vectorStoreId , int ? limit , string order , string after , string before , string filter , RequestOptions options ) ;
55895588 public virtual CollectionResult < VectorStoreFileAssociation > GetFileAssociations ( string vectorStoreId , string batchJobId , VectorStoreFileAssociationCollectionOptions options = null , CancellationToken cancellationToken = default ) ;
55905589 public virtual CollectionResult < VectorStoreFileAssociation > GetFileAssociations ( string vectorStoreId , string batchJobId , ContinuationToken firstPageToken , CancellationToken cancellationToken = default ) ;
55915590 public virtual CollectionResult GetFileAssociations ( string vectorStoreId , string batchId , int ? limit , string order , string after , string before , string filter , RequestOptions options ) ;
5592- public virtual AsyncCollectionResult < VectorStoreFileAssociation > GetFileAssociationsAsync ( ContinuationToken firstPageToken , CancellationToken cancellationToken = default ) ;
55935591 public virtual AsyncCollectionResult < VectorStoreFileAssociation > GetFileAssociationsAsync ( string vectorStoreId , VectorStoreFileAssociationCollectionOptions options = null , CancellationToken cancellationToken = default ) ;
55945592 public virtual AsyncCollectionResult GetFileAssociationsAsync ( string vectorStoreId , int ? limit , string order , string after , string before , string filter , RequestOptions options ) ;
55955593 public virtual AsyncCollectionResult < VectorStoreFileAssociation > GetFileAssociationsAsync ( string vectorStoreId , string batchJobId , VectorStoreFileAssociationCollectionOptions options = null , CancellationToken cancellationToken = default ) ;
@@ -5697,27 +5695,16 @@ public class VectorStoreFileAssociation : IJsonModel<VectorStoreFileAssociation>
56975695 protected virtual BinaryData PersistableModelWriteCore ( ModelReaderWriterOptions options ) ;
56985696 }
56995697 [ Experimental ( "OPENAI001" ) ]
5700- public class VectorStoreFileAssociationCollectionOptions {
5698+ public class VectorStoreFileAssociationCollectionOptions : IJsonModel < VectorStoreFileAssociationCollectionOptions > , IPersistableModel < VectorStoreFileAssociationCollectionOptions > {
57015699 public string AfterId { get ; set ; }
57025700 public string BeforeId { get ; set ; }
57035701 public VectorStoreFileStatusFilter ? Filter { get ; set ; }
5704- public VectorStoreFileAssociationCollectionOrder ? Order { get ; set ; }
5702+ public VectorStoreCollectionOrder ? Order { get ; set ; }
57055703 public int ? PageSizeLimit { get ; set ; }
5706- }
5707- [ Experimental ( "OPENAI001" ) ]
5708- public readonly partial struct VectorStoreFileAssociationCollectionOrder : IEquatable < VectorStoreFileAssociationCollectionOrder > {
5709- public VectorStoreFileAssociationCollectionOrder ( string value ) ;
5710- public static VectorStoreFileAssociationCollectionOrder Ascending { get ; }
5711- public static VectorStoreFileAssociationCollectionOrder Descending { get ; }
5712- public readonly bool Equals ( VectorStoreFileAssociationCollectionOrder other ) ;
5713- [ EditorBrowsable ( EditorBrowsableState . Never ) ]
5714- public override readonly bool Equals ( object obj ) ;
5715- [ EditorBrowsable ( EditorBrowsableState . Never ) ]
5716- public override readonly int GetHashCode ( ) ;
5717- public static bool operator == ( VectorStoreFileAssociationCollectionOrder left , VectorStoreFileAssociationCollectionOrder right ) ;
5718- public static implicit operator VectorStoreFileAssociationCollectionOrder ( string value ) ;
5719- public static bool operator != ( VectorStoreFileAssociationCollectionOrder left , VectorStoreFileAssociationCollectionOrder right ) ;
5720- public override readonly string ToString ( ) ;
5704+ protected virtual VectorStoreFileAssociationCollectionOptions JsonModelCreateCore ( ref Utf8JsonReader reader , ModelReaderWriterOptions options ) ;
5705+ protected virtual void JsonModelWriteCore ( Utf8JsonWriter writer , ModelReaderWriterOptions options ) ;
5706+ protected virtual VectorStoreFileAssociationCollectionOptions PersistableModelCreateCore ( BinaryData data , ModelReaderWriterOptions options ) ;
5707+ protected virtual BinaryData PersistableModelWriteCore ( ModelReaderWriterOptions options ) ;
57215708 }
57225709 [ Experimental ( "OPENAI001" ) ]
57235710 public class VectorStoreFileAssociationError : IJsonModel < VectorStoreFileAssociationError > , IPersistableModel < VectorStoreFileAssociationError > {
0 commit comments