Authentication

To use the FastVecAI service, you'll first need to authenticate your application. You can do this using the API key provided when you signed up for our service:

import jwt
from fastvec_api import FastVecAPI

api_key = "your-api-key"
api = FastVecAPI(api_key)

Remember to replace "your-api-key" with your actual API key.