Spaces:
Running
Running
File size: 274 Bytes
d32424b |
1 2 3 4 5 6 7 8 9 10 11 12 |
from pydantic import Secret
from setup.easy_imports import OpenAIEmbeddings
from setup.tokens import openai_api_key
class EmbeddingClass:
def open_ai(self):
return OpenAIEmbeddings(api_key=Secret(openai_api_key)) # type: ignore
embedding = EmbeddingClass()
|