Interface SkillServiceAsync
-
- All Implemented Interfaces:
public interface SkillServiceAsyncSearch and read legal AI skills for agents
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSkillServiceAsync.WithRawResponseA view of SkillServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract SkillServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract SkillServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
custom
abstract CustomServiceAsync custom()
Search and read legal AI skills for agents
-
create
CompletableFuture<SkillCreateResponse> create(SkillCreateParams params)
Create an org-scoped custom skill. The skill will be searchable via /skills/resolve alongside curated skills.
-
create
abstract CompletableFuture<SkillCreateResponse> create(SkillCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<SkillUpdateResponse> update(String pathSlug)
Update an org-scoped custom skill by slug. Only provided fields are updated. Version is auto-incremented.
-
update
CompletableFuture<SkillUpdateResponse> update(String pathSlug, SkillUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<SkillUpdateResponse> update(String pathSlug, SkillUpdateParams params)
-
update
abstract CompletableFuture<SkillUpdateResponse> update(SkillUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<SkillUpdateResponse> update(SkillUpdateParams params)
-
update
CompletableFuture<SkillUpdateResponse> update(String pathSlug, RequestOptions requestOptions)
-
delete
CompletableFuture<SkillDeleteResponse> delete(String slug)
Soft-delete an org-scoped custom skill by slug. The skill will no longer appear in search results.
-
delete
CompletableFuture<SkillDeleteResponse> delete(String slug, SkillDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<SkillDeleteResponse> delete(String slug, SkillDeleteParams params)
-
delete
abstract CompletableFuture<SkillDeleteResponse> delete(SkillDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<SkillDeleteResponse> delete(SkillDeleteParams params)
-
delete
CompletableFuture<SkillDeleteResponse> delete(String slug, RequestOptions requestOptions)
-
read
CompletableFuture<SkillReadResponse> read(String slug)
Read the full content of a legal skill by its slug. Returns markdown content, tags, and metadata.
-
read
CompletableFuture<SkillReadResponse> read(String slug, SkillReadParams params, RequestOptions requestOptions)
-
read
CompletableFuture<SkillReadResponse> read(String slug, SkillReadParams params)
-
read
abstract CompletableFuture<SkillReadResponse> read(SkillReadParams params, RequestOptions requestOptions)
-
read
CompletableFuture<SkillReadResponse> read(SkillReadParams params)
-
read
CompletableFuture<SkillReadResponse> read(String slug, RequestOptions requestOptions)
-
resolve
CompletableFuture<SkillResolveResponse> resolve(SkillResolveParams params)
Search the Legal Skills Store using hybrid search (text + tag + semantic). Returns ranked results with relevance scores.
-
resolve
abstract CompletableFuture<SkillResolveResponse> resolve(SkillResolveParams params, RequestOptions requestOptions)
-
-
-
-