Skip to content
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
dded13b
feat(api): add Gemini Flash 2.0 Multimodal Live API support
fern-api[bot] Jan 8, 2025
bf46e67
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 9, 2025
acaa203
feat(openapi): Add new credential types and Azure blob storage
fern-api[bot] Jan 9, 2025
f8083b0
feat(openapi): update OpenAPI spec to support multiple providers for …
fern-api[bot] Jan 11, 2025
554a319
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 12, 2025
c9712d5
feat(openapi): add new tool types and improve tool configuration
fern-api[bot] Jan 12, 2025
336612c
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 15, 2025
ff1f9c2
feat(openapi.json): added ClientInboundMessageEndCall object and EndC…
fern-api[bot] Jan 15, 2025
134157d
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 16, 2025
27e9efa
fix(openapi): remove orgId from logsQuery and logsDelete parameters a…
fern-api[bot] Jan 16, 2025
0ec07d1
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 20, 2025
67f773f
fix(openapi): update OpenAPI specification for knowledge base and wor…
fern-api[bot] Jan 20, 2025
a462605
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 22, 2025
c87f546
fix(openapi.json): update region enum and add UpdateWorkflowDTO schema
fern-api[bot] Jan 22, 2025
fa694b6
Merge remote-tracking branch 'origin/main' into fern/update-api-specs
fern-api[bot] Jan 23, 2025
58be5cf
fix(openapi): add ToolCall schema and update transcript enum
fern-api[bot] Jan 23, 2025
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
105 changes: 57 additions & 48 deletions fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6869,6 +6869,10 @@
"$ref": "#/components/schemas/Gather",
"title": "Gather"
},
{
"$ref": "#/components/schemas/ToolCall",
"title": "ToolCall"
},
{
"$ref": "#/components/schemas/Hangup",
"title": "Hangup"
Expand Down Expand Up @@ -11412,6 +11416,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -11444,6 +11449,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -11980,6 +11986,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -12012,6 +12019,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -13594,6 +13602,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -13626,6 +13635,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -14186,6 +14196,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -14218,6 +14229,7 @@
"speech-update",
"status-update",
"transcript",
"transcript[transcriptType=\"final\"]",
"tool-calls",
"transfer-destination-request",
"transfer-update",
Expand Down Expand Up @@ -23333,6 +23345,39 @@
"name"
]
},
"ToolCall": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"tool_call"
]
},
"tool": {
"description": "The core properties of the tool call.",
"allOf": [
{
"$ref": "#/components/schemas/CreateFunctionToolDTO"
}
]
},
"toolBody": {
"type": "object",
"description": "This defined the JSON body of your tool call. For example, if `body_schema`\nincluded \"my_field\": \"my_gather_statement.user_age\", then the json body sent to the server would have that particular value assign to it.\nRight now, only data from gather statements are supported."
},
"name": {
"type": "string",
"maxLength": 40
}
},
"required": [
"type",
"tool",
"toolBody",
"name"
]
},
"CreateWorkflowDTO": {
"type": "object",
"properties": {
Expand All @@ -23354,6 +23399,10 @@
"$ref": "#/components/schemas/Gather",
"title": "Gather"
},
{
"$ref": "#/components/schemas/ToolCall",
"title": "ToolCall"
},
{
"$ref": "#/components/schemas/Hangup",
"title": "Hangup"
Expand Down Expand Up @@ -23398,6 +23447,10 @@
"$ref": "#/components/schemas/Gather",
"title": "Gather"
},
{
"$ref": "#/components/schemas/ToolCall",
"title": "ToolCall"
},
{
"$ref": "#/components/schemas/Hangup",
"title": "Hangup"
Expand Down Expand Up @@ -23567,7 +23620,8 @@
"type": "string",
"description": "This is the type of the message. \"transcript\" is sent as transcriber outputs partial or final transcript.",
"enum": [
"transcript"
"transcript",
"transcript[transcriptType=\"final\"]"
]
},
"role": {
Expand Down Expand Up @@ -23598,52 +23652,6 @@
"transcript"
]
},
"ToolCallFunction": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "This is the name of the function the model called."
},
"arguments": {
"type": "object",
"description": "These are the arguments that the function was called with."
}
},
"required": [
"name",
"arguments"
]
},
"ToolCall": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "This is the type of tool the model called.",
"enum": [
"function"
]
},
"function": {
"description": "This is the function the model called.",
"allOf": [
{
"$ref": "#/components/schemas/ToolCallFunction"
}
]
},
"id": {
"type": "string",
"description": "This is the unique identifier for the tool call."
}
},
"required": [
"type",
"function",
"id"
]
},
"ClientMessageToolCalls": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -25546,7 +25554,8 @@
"type": "string",
"description": "This is the type of the message. \"transcript\" is sent as transcriber outputs partial or final transcript.",
"enum": [
"transcript"
"transcript",
"transcript[transcriptType=\"final\"]"
]
},
"timestamp": {
Expand Down
Loading