athena-intelligence 0.1.42__py3-none-any.whl → 0.1.44__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.42.dist-info → athena_intelligence-0.1.44.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.42.dist-info → athena_intelligence-0.1.44.dist-info}/RECORD +5 -5
- {athena_intelligence-0.1.42.dist-info → athena_intelligence-0.1.44.dist-info}/WHEEL +0 -0
athena/core/client_wrapper.py
CHANGED
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
17
17
|
"X-Fern-Language": "Python",
|
18
18
|
"X-Fern-SDK-Name": "athena-intelligence",
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
19
|
+
"X-Fern-SDK-Version": "0.1.44",
|
20
20
|
}
|
21
21
|
headers["X-API-KEY"] = self.api_key
|
22
22
|
return headers
|
athena/types/model.py
CHANGED
@@ -17,6 +17,7 @@ class Model(str, enum.Enum):
|
|
17
17
|
GPT_4 = "gpt-4"
|
18
18
|
MIXTRAL_SMALL_8_X_7_B_0211 = "mixtral-small-8x7b-0211"
|
19
19
|
MISTRAL_LARGE_0224 = "mistral-large-0224"
|
20
|
+
MIXTRAL_8_X_22_B_INSTRUCT = "mixtral-8x22b-instruct"
|
20
21
|
LLAMA_V_270_B_CHAT = "llama-v2-70b-chat"
|
21
22
|
CLAUDE_3_OPUS_20240229 = "claude-3-opus-20240229"
|
22
23
|
CLAUDE_3_SONNET_20240229 = "claude-3-sonnet-20240229"
|
@@ -32,6 +33,7 @@ class Model(str, enum.Enum):
|
|
32
33
|
gpt_4: typing.Callable[[], T_Result],
|
33
34
|
mixtral_small_8_x_7_b_0211: typing.Callable[[], T_Result],
|
34
35
|
mistral_large_0224: typing.Callable[[], T_Result],
|
36
|
+
mixtral_8_x_22_b_instruct: typing.Callable[[], T_Result],
|
35
37
|
llama_v_270_b_chat: typing.Callable[[], T_Result],
|
36
38
|
claude_3_opus_20240229: typing.Callable[[], T_Result],
|
37
39
|
claude_3_sonnet_20240229: typing.Callable[[], T_Result],
|
@@ -51,6 +53,8 @@ class Model(str, enum.Enum):
|
|
51
53
|
return mixtral_small_8_x_7_b_0211()
|
52
54
|
if self is Model.MISTRAL_LARGE_0224:
|
53
55
|
return mistral_large_0224()
|
56
|
+
if self is Model.MIXTRAL_8_X_22_B_INSTRUCT:
|
57
|
+
return mixtral_8_x_22_b_instruct()
|
54
58
|
if self is Model.LLAMA_V_270_B_CHAT:
|
55
59
|
return llama_v_270_b_chat()
|
56
60
|
if self is Model.CLAUDE_3_OPUS_20240229:
|
@@ -7,7 +7,7 @@ athena/chain/types/structured_parse_in_parsing_model.py,sha256=tr6DLP2v71IUScCOe
|
|
7
7
|
athena/client.py,sha256=8QypiDlbZ0C1YsJh6GzhylLVCZXDQc1MCJTURo2_vvI,3576
|
8
8
|
athena/core/__init__.py,sha256=RWfyDqkzWsf8e3VGc3NV60MovfJbg5XWzNFGB2DZ0hA,790
|
9
9
|
athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
10
|
-
athena/core/client_wrapper.py,sha256=
|
10
|
+
athena/core/client_wrapper.py,sha256=15m5fwIURafQfZVxHyxKo-vvt3iZJMX6qDgmiuw7doo,1198
|
11
11
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
12
12
|
athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
13
13
|
athena/core/http_client.py,sha256=LI0yP3jUyE0Ue7oyBcI9nyo1pljOwh9Y5ycTeIpKwOg,4882
|
@@ -45,7 +45,7 @@ athena/types/http_validation_error.py,sha256=Fcv_CTMMrLvCeTHjF0n5xf5tskMDgt-J6H9
|
|
45
45
|
athena/types/langchain_documents_request_out.py,sha256=P5Qq7BkCWILORC3yOkvt8pssdYgd_vnTTANNtrWF-l8,939
|
46
46
|
athena/types/message_out.py,sha256=uvZY_Podv2XccEk8CICug9I_S2hFJTSzCBwcHiauW7A,865
|
47
47
|
athena/types/message_out_dto.py,sha256=qgRibRbDNOWVnVGP7Rribh9WdoCT2CSiPUXeIWECqq4,1051
|
48
|
-
athena/types/model.py,sha256=
|
48
|
+
athena/types/model.py,sha256=TdhAC32eEgcMtb8sivMRZks2ipSphqndGWvINRRko04,2767
|
49
49
|
athena/types/report.py,sha256=QVaqVfHMAV3s9_V2CqjIEMcRrbJhD8zmi82vrk2A8x0,946
|
50
50
|
athena/types/snippet.py,sha256=POIVJNV9iQxiVegB_qwQx-PZPPSyoIPhyxTsueNVUGA,1126
|
51
51
|
athena/types/sql_results.py,sha256=pNH32nyf1bzoYJs3FgHctLdLO02oOjyGgLkHACACB6k,900
|
@@ -56,6 +56,6 @@ athena/types/tools.py,sha256=mhRkKAwlsDud-fFOhsx2T3hBD-FAtuCnGHyU9cLPcGU,1422
|
|
56
56
|
athena/types/url_result.py,sha256=zajsW46qJnD6GPimb5kHkUncjqBfzHUlGOcKuUGMX-E,893
|
57
57
|
athena/types/validation_error.py,sha256=2JhGNJouo8QpfrMBoT_JCwYSn1nFN2Nnq0p9uPLDH-U,992
|
58
58
|
athena/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
59
|
-
athena_intelligence-0.1.
|
60
|
-
athena_intelligence-0.1.
|
61
|
-
athena_intelligence-0.1.
|
59
|
+
athena_intelligence-0.1.44.dist-info/METADATA,sha256=6AFoZajcprTpBCgBPDpVMWHGDS2HsDYXZuG_RXQsks8,4738
|
60
|
+
athena_intelligence-0.1.44.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
61
|
+
athena_intelligence-0.1.44.dist-info/RECORD,,
|
File without changes
|