gabrielchua commited on
Commit
cadf0f0
·
verified ·
1 Parent(s): dcb9a89

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -65,7 +65,7 @@ client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
65
  response = client.embeddings.create(
66
  input="Hello, world!", # users to input their own text
67
  model="text-embedding-3-large",
68
- dimensions=1536 # dimensions of the embedding
69
  )
70
  embeddings = np.array([data.embedding for data in response.data])
71
 
 
65
  response = client.embeddings.create(
66
  input="Hello, world!", # users to input their own text
67
  model="text-embedding-3-large",
68
+ dimensions=3072 # dimensions of the embedding
69
  )
70
  embeddings = np.array([data.embedding for data in response.data])
71