https://github.com/pinecone-io/pinecone-vision-server
https://github.com/pinecone-io/pinecone-vision-server
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pinecone-io/pinecone-vision-server
- Owner: pinecone-io
- Created: 2023-02-27T17:00:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-09T00:03:08.000Z (over 2 years ago)
- Last Synced: 2024-11-12T07:34:12.310Z (8 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pinecone Vision - Server
This is the server for the Pinecone Vision project.
## Installation
Install dependencies by running:
```bash
npm install
```## Create an `.env` file
Copy the `.env.example` file to `.env` and fill in the values.
```
PINECONE_API_KEY= // Your Pinecone API Key
PINECONE_ENVIRONMENT= // Your Pinecone Environment, e.g. us-east-1-aws
INFERENCE_ENDPOINT= // Your HuggingFace Inference Endpoint
INFERENCE_ENDPOINT_TOKEN= // Your HuggingFace Inference Endpoint Token
PORT=8080
INDEX_NAME=vision
```## Run the server
```bash
npm run start
```