Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.textkernel</groupId>
<artifactId>tx-java</artifactId>

<version>3.0.3</version>
<version>3.0.4</version>

<packaging>jar</packaging>
<name>Textkernel Tx Java SDK</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,9 @@ public SkillsSimilarityScoreResponse skillsSimilarityScore(List<SkillScore> skil
* @param request The request body
* @return The API response body
* @throws TxException Thrown when an API error occurs
* @deprecated This feature is deprecated and will be discontinued on June 23, 2027.
*/
@Deprecated
public GenerateJobResponse generateJobDescription(GenerateJobRequest request) throws TxException {
RequestBody body = createJsonBody(request);
Request apiRequest = new Request.Builder()
Expand All @@ -874,7 +876,9 @@ public GenerateJobResponse generateJobDescription(GenerateJobRequest request) th
* @param limit Maximum number of skills to suggest. If not specified this parameter defaults to 10. This value cannot exceed 50.
* @return The API response body
* @throws TxException Thrown when an API error occurs
* @deprecated This feature is deprecated and will be discontinued on June 23, 2027.
*/
@Deprecated
public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTitle, String language, Integer limit) throws TxException {
SuggestSkillsFromJobTitleRequest request = new SuggestSkillsFromJobTitleRequest();
request.JobTitle = jobTitle;
Expand All @@ -896,7 +900,9 @@ public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTit
* @param jobTitle The title of the job for which skills are being suggested.
* @return The API response body
* @throws TxException Thrown when an API error occurs
* @deprecated This feature is deprecated and will be discontinued on June 23, 2027.
*/
@Deprecated
public SuggestSkillsFromJobTitleResponse suggestSkillsFromJobTitle(String jobTitle) throws TxException {
return suggestSkillsFromJobTitle(jobTitle, "en", null);
}
Expand Down
Loading