From b4531ba5337477d500d174e224587435d3ebc216 Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Fri, 16 Feb 2024 13:41:48 -0500 Subject: [PATCH] fix: add ada-2-v2 types --- instructor/_types/_alias.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/instructor/_types/_alias.py b/instructor/_types/_alias.py index 2f8c9ac..00f9d89 100644 --- a/instructor/_types/_alias.py +++ b/instructor/_types/_alias.py @@ -21,7 +21,8 @@ ModelNames: TypeAlias = Literal[ "gpt-3.5-turbo-0125", "gpt-3.5-turbo-16k-0613", "gpt-3.5-turbo-instruct", - "text-embedding-ada-002", - "text-embedding-3-small", - "text-embedding-3-large" + "text-embedding-ada-002", + "text-embedding-ada-002-v2", + "text-embedding-3-small", + "text-embedding-3-large", ]