athena-intelligence 0.1.16__py3-none-any.whl → 0.1.17__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- athena/core/client_wrapper.py +1 -1
- athena/types/model.py +4 -0
- {athena_intelligence-0.1.16.dist-info → athena_intelligence-0.1.17.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.16.dist-info → athena_intelligence-0.1.17.dist-info}/RECORD +5 -5
- {athena_intelligence-0.1.16.dist-info → athena_intelligence-0.1.17.dist-info}/WHEEL +0 -0
athena/core/client_wrapper.py
CHANGED
@@ -14,7 +14,7 @@ class BaseClientWrapper:
|
|
14
14
|
headers: typing.Dict[str, str] = {
|
15
15
|
"X-Fern-Language": "Python",
|
16
16
|
"X-Fern-SDK-Name": "athena-intelligence",
|
17
|
-
"X-Fern-SDK-Version": "0.1.
|
17
|
+
"X-Fern-SDK-Version": "0.1.17",
|
18
18
|
}
|
19
19
|
headers["X-API-KEY"] = self.api_key
|
20
20
|
return headers
|
athena/types/model.py
CHANGED
@@ -14,12 +14,14 @@ class Model(str, enum.Enum):
|
|
14
14
|
GPT_35_TURBO = "gpt-3.5-turbo"
|
15
15
|
GPT_4_TURBO_PREVIEW = "gpt-4-turbo-preview"
|
16
16
|
MIXTRAL_SMALL_8_X_7_B_0211 = "mixtral-small-8x7b-0211"
|
17
|
+
MISTRAL_LARGE_0224 = "mistral-large-0224"
|
17
18
|
|
18
19
|
def visit(
|
19
20
|
self,
|
20
21
|
gpt_35_turbo: typing.Callable[[], T_Result],
|
21
22
|
gpt_4_turbo_preview: typing.Callable[[], T_Result],
|
22
23
|
mixtral_small_8_x_7_b_0211: typing.Callable[[], T_Result],
|
24
|
+
mistral_large_0224: typing.Callable[[], T_Result],
|
23
25
|
) -> T_Result:
|
24
26
|
if self is Model.GPT_35_TURBO:
|
25
27
|
return gpt_35_turbo()
|
@@ -27,3 +29,5 @@ class Model(str, enum.Enum):
|
|
27
29
|
return gpt_4_turbo_preview()
|
28
30
|
if self is Model.MIXTRAL_SMALL_8_X_7_B_0211:
|
29
31
|
return mixtral_small_8_x_7_b_0211()
|
32
|
+
if self is Model.MISTRAL_LARGE_0224:
|
33
|
+
return mistral_large_0224()
|
@@ -2,7 +2,7 @@ athena/__init__.py,sha256=Prn1DsBOMu9g_ClmWZR6GIfi_3F-tZJ317hdudgLrQc,595
|
|
2
2
|
athena/client.py,sha256=nFVJkayT6k0-DeqX-Ef7eVB-VHLHEq6wsqaZHy5Pp48,4004
|
3
3
|
athena/core/__init__.py,sha256=95onSWXymaL0iV-nBsuKNgjh1LbsymAkRkx7POn1nc0,696
|
4
4
|
athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
5
|
-
athena/core/client_wrapper.py,sha256=
|
5
|
+
athena/core/client_wrapper.py,sha256=nenzqERD-XkoSQKEVXB33q0zDcutfpvVbfYEdlSCsiA,1089
|
6
6
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
7
7
|
athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
8
8
|
athena/core/jsonable_encoder.py,sha256=MTYkDov2EryHgee4QM46uZiBOuOXK9KTHlBdBwU-CpU,3799
|
@@ -19,11 +19,11 @@ athena/types/__init__.py,sha256=tcRJeTt7Xlrribx1EwOB3mKiUsHUKFP0vojjIWYHE74,571
|
|
19
19
|
athena/types/http_validation_error.py,sha256=Fcv_CTMMrLvCeTHjF0n5xf5tskMDgt-J6H9gp654eQw,973
|
20
20
|
athena/types/message_out.py,sha256=uvZY_Podv2XccEk8CICug9I_S2hFJTSzCBwcHiauW7A,865
|
21
21
|
athena/types/message_out_dto.py,sha256=qgRibRbDNOWVnVGP7Rribh9WdoCT2CSiPUXeIWECqq4,1051
|
22
|
-
athena/types/model.py,sha256=
|
22
|
+
athena/types/model.py,sha256=yZyzOojHN4mRCd-ITHJNiKZDpQhy7LKZcM9_saJ0qy4,1020
|
23
23
|
athena/types/status_enum.py,sha256=0UZbhdAx215GHC-U53RS98mYHtn1N3On4VBe4j02Qtc,672
|
24
24
|
athena/types/tools.py,sha256=Vfb-D9CYcPZH6MBATNODgfXjFyBpCs4qbkqpCMl7eBM,1277
|
25
25
|
athena/types/validation_error.py,sha256=2JhGNJouo8QpfrMBoT_JCwYSn1nFN2Nnq0p9uPLDH-U,992
|
26
26
|
athena/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
27
|
-
athena_intelligence-0.1.
|
28
|
-
athena_intelligence-0.1.
|
29
|
-
athena_intelligence-0.1.
|
27
|
+
athena_intelligence-0.1.17.dist-info/METADATA,sha256=HcVpNxrLjXUYWCGsEofNrYTTBS-k0jl5amJKLzeYov4,4738
|
28
|
+
athena_intelligence-0.1.17.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
29
|
+
athena_intelligence-0.1.17.dist-info/RECORD,,
|
File without changes
|