Files
langchain/tests/unit_tests/examples/test_specs/slack/apispec.json
T
Yaroslav Halchenko 0d92a7f357 codespell: workflow, config + some (quite a few) typos fixed (#6785)
Probably the most  boring PR to review ;)

Individual commits might be easier to digest

---------

Co-authored-by: Bagatur <baskaryan@gmail.com>
Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
2023-07-12 16:20:08 -04:00

86 lines
2.4 KiB
JSON

{
"openapi": "3.0.1",
"info": {
"title": "Slack AI Plugin",
"description": "A plugin that allows users to interact with Slack using ChatGPT",
"version": "v1"
},
"servers": [
{
"url": "https://slack.com/api"
}
],
"components": {
"schemas": {
"searchRequest": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query",
"required": true
}
}
},
"Result": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"permalink": {
"type": "string"
}
}
}
}
},
"paths": {
"/ai.alpha.search.messages": {
"post": {
"operationId": "ai_alpha_search_messages",
"description": "Search for messages matching a query",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/searchRequest"
}
}
}
},
"responses": {
"200": {
"description": "Success response",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Boolean indicating whether or not the request was successful"
},
"results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Result"
}
}
}
}
}
}
}
}
}
}
}
}