forked from 001000001/aics-columbia-s2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aics-swagger.yaml
83 lines (83 loc) · 1.95 KB
/
aics-swagger.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
swagger: '2.0'
info:
title: AI Customer Service API
description: 'AI Customer Service application, built during the Cloud and Big Data course at Columbia University.'
version: 1.0.0
schemes:
- https
basePath: /v1
produces:
- application/json
paths:
/chatbot:
post:
summary: The endpoint for the Natural Language Understanding API.
description: |
This API takes in one or more messages from the client and returns
one or more messages as a response. The API leverages the NLP
backend functionality, paired with state and profile information
and returns a context-aware reply.
tags:
- NLU
operationId: sendMessage
produces:
- application/json
parameters:
- name: body
in: body
required: true
schema:
$ref: '#/definitions/BotRequest'
responses:
'200':
description: A Chatbot response
schema:
$ref: '#/definitions/BotResponse'
'403':
description: Unauthorized
schema:
$ref: '#/definitions/Error'
'500':
description: Unexpected error
schema:
$ref: '#/definitions/Error'
definitions:
BotRequest:
type: object
properties:
messages:
type: array
items:
$ref: '#/definitions/Message'
BotResponse:
type: object
properties:
messages:
type: array
items:
$ref: '#/definitions/Message'
Message:
type: object
properties:
type:
type: string
unstructured:
$ref: '#/definitions/UnstructuredMessage'
UnstructuredMessage:
type: object
properties:
id:
type: string
text:
type: string
timestamp:
type: string
format: datetime
Error:
type: object
properties:
code:
type: integer
format: int32
message:
type: string