You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a POST API endpoint called chat that accepts a text string, sends an API request to OpenAI Ada to convert into vector embeddings, and return the vector embeddings as a response (for now)
Take the OpenAi key from the environment with the name OPENAI_API_KEY. Edit core/settings/base.py to include the Environment variable. Default it to a blank string
Create a POST API endpoint called
chat
that accepts a text string, sends an API request to OpenAI Ada to convert into vector embeddings, and return the vector embeddings as a response (for now)Take the OpenAi key from the environment with the name
OPENAI_API_KEY
. Editcore/settings/base.py
to include the Environment variable. Default it to a blank stringFor reference: https://platform.openai.com/docs/guides/embeddings/what-are-embeddings
The text was updated successfully, but these errors were encountered: