File size: 1,111 Bytes
44a80a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
---
tags:
- job-recommendation
- machine-learning
- api
model-type: text-recommendation
language: python
license: MIT
---
openapi: 3.0.0
info:
title: Job Recommender API
version: "1.0.0"
servers:
- url: https://api-inference.huggingface.co/models/trangannh/ptit-job-recommendation
description: Production server
paths:
/recommend:
post:
summary: Get job recommendations
operationId: recommend
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
input_hard_skills:
type: string
input_soft_skills:
type: string
input_major:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
recommendations:
type: array
items:
type: string
|