SightGo

Vand ID: vand-abee8d1b-8cc6-4442-b0fa-958245db3926

Learn how to easily use the SightGo tool with the OpenAI API.

Explore any location with a visual street view perspective.

OpenAI function calls:

{
  "name": "getStreetView",
  "description": "Fetch Street View Image",
  "parameters": {
    "type": "object",
    "properties": {
      "address": {
        "type": "string",
        "description": "The address of the location you want a street view of.",
        "example": "1600 Amphitheatre Parkway, Mountain View, CA"
      }
    },
    "required": [
      "address"
    ]
  }
}

Auth Type

none

Servers

https://sightgo-plugin.chatbot.so

OpenAPI:

{
  "openapi": "3.0.2",
  "info": {
    "title": "SightGo",
    "description": "Explore any location with a visual street view perspective.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://sightgo-plugin.chatbot.so"
    }
  ],
  "paths": {
    "/query": {
      "get": {
        "operationId": "getStreetView",
        "summary": "Fetch Street View Image",
        "parameters": [
          {
            "name": "address",
            "in": "query",
            "description": "The address of the location you want a street view of.",
            "required": true,
            "schema": {
              "type": "string",
              "example": "1600 Amphitheatre Parkway, Mountain View, CA"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {}
            }
          }
        }
      }
    }
  }
}