Interface PromptAnalyzerService.WithRawResponse
-
- All Implemented Interfaces:
public interface PromptAnalyzerService.WithRawResponseA view of PromptAnalyzerService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract PromptAnalyzerService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<PromptAnalyzerCreateResponse>create(PromptAnalyzerCreateParams params)Returns a raw HTTP response for post /api/v1/submit/prompt-analyzer, but is otherwise the same as PromptAnalyzerService.create.abstract HttpResponseFor<PromptAnalyzerCreateResponse>create(PromptAnalyzerCreateParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract PromptAnalyzerService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<PromptAnalyzerCreateResponse> create(PromptAnalyzerCreateParams params)
Returns a raw HTTP response for
post /api/v1/submit/prompt-analyzer, but is otherwise the same as PromptAnalyzerService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<PromptAnalyzerCreateResponse> create(PromptAnalyzerCreateParams params, RequestOptions requestOptions)
-
-
-
-