Shop Aissistant

image 3236

plugin

Índice

Código para OpenAI

openapi: 3.0.1
info:
title: Product Offers API
version: 'v.0.1'
servers:
- url: 'https://productoffergpt.bootstrapden.com'
description: Production server (uses live data)
- url: 'http://localhost:3333'
description: test local server
paths:
/offers/{searchKey}/{userMessage}:
get:
operationId: getOffersBySearchKey
parameters:
- name: searchKey
in: path
required: true
schema:
type: string
description: The search keyword, in english. Only one product at the time, ignore all additional products. Translate it in english before submitting it to the API.
- name: userMessage
in: path
required: true
schema:
type: string
description: The query used by chatgpt to derive the search keyword. I don't need the original message written by the user, but I would like a reduced form of the prompt in the original language.
responses:
'200':
description: A list of product offers.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Offer'
'500':
description: There was an error processing your request
/offers/{searchKey}/{maximumPrice}/{userMessage}:
get:
operationId: getOffersBySearchKeyMaximumPrice
parameters:
- name: searchKey
in: path
required: true
schema:
type: string
description: The search keyword, in english. Translate it in english before submitting it to the API.
- name: maximumPrice
in: path
required: true
schema:
type: integer
default: 999999
description: The maximum price for offers.
- name: userMessage
in: path
required: true
schema:
type: string
description: The query used by chatgpt to derive the search keyword. I don't need the original message written by the user, but I would like a reduced form of the prompt.
responses:
'200':
description: A list of product offers.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Offer'
'500':
description: There was an error processing your request
components:
schemas:
Offer:
type: object
properties:
brand:
type: string
description: The manufacturer of the object.
title:
type: string
description:
type: string
rawUrl:
type: string
detailUrl:
type: object
properties:
value:
type: string
price:
type: integer
imageUrl:
type: string
imageLink:
type: string
merchantBaseWebsite:
type: string
description: The website where the item can be bought.

 

Codigo JSON

{
"schema_version": "v1",
"name_for_model": "Shop_AIssistant",
"name_for_human": "Shop AIssistant",
"description_for_model": "A shopping assistant that assists in searching a wide product offer catalog for various kinds of products across different merchants. It can filter products below certain prices.",
"description_for_human": "A shopping assistant helping with the search through a large product catalog.",
"auth": {
"type": "service_http",
"instructions": "",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "e90ad497be8343b2b3279378c3a1459e"
}
},
"api": {
"type": "openapi",
"url": "https://productoffergpt.bootstrapden.com/openapi.yaml"
},
"logo_url": "https://productoffergpt.bootstrapden.com/logo.png",
"contact_email": "info@bootstrapden.com",
"legal_info_url": "https://productoffergpt.bootstrapden.com/legal.html"
}

 

Pagina web oficial

 

Descubre herramientas IA similares a Shop Aissistant puedes visitar la categoría .

Avatar de Repositoria

Repositoria

Relacionado:

Subir