Interface V1Service.WithRawResponse
-
- All Implemented Interfaces:
public interface V1Service.WithRawResponseA view of V1Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract V1Service.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
chat
abstract ChatService.WithRawResponse chat()
-
createEmbedding
@MustBeClosed() HttpResponseFor<V1CreateEmbeddingResponse> createEmbedding(V1CreateEmbeddingParams params)
Returns a raw HTTP response for
post /llm/v1/embeddings, but is otherwise the same as V1Service.createEmbedding.
-
createEmbedding
@MustBeClosed() abstract HttpResponseFor<V1CreateEmbeddingResponse> createEmbedding(V1CreateEmbeddingParams params, RequestOptions requestOptions)
-
listModels
@MustBeClosed() HttpResponseFor<V1ListModelsResponse> listModels()
Returns a raw HTTP response for
get /llm/v1/models, but is otherwise the same as V1Service.listModels.
-
listModels
@MustBeClosed() abstract HttpResponseFor<V1ListModelsResponse> listModels(V1ListModelsParams params, RequestOptions requestOptions)
-
listModels
@MustBeClosed() HttpResponseFor<V1ListModelsResponse> listModels(V1ListModelsParams params)
-
listModels
@MustBeClosed() HttpResponseFor<V1ListModelsResponse> listModels(RequestOptions requestOptions)
-
-
-
-