Created
July 21, 2023 13:01
-
-
Save davila7/d20c189b953ce9bb6536186b56634dbe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import openai | |
| from openai.embeddings_utils import get_embedding, cosine_similarity | |
| import streamlit as st | |
| import pandas as pd | |
| import numpy as np | |
| from ast import literal_eval | |
| import nomic | |
| from nomic import atlas | |
| MODEL = "text-embedding-ada-002" | |
| openai.api_key = "OPENAI_API_KEY" | |
| nomic.login("NOMIC_TOKEN") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment