athena-intelligence 0.1.85__py3-none-any.whl → 0.1.86__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.85.dist-info → athena_intelligence-0.1.86.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.85.dist-info → athena_intelligence-0.1.86.dist-info}/RECORD +5 -5
- {athena_intelligence-0.1.85.dist-info → athena_intelligence-0.1.86.dist-info}/WHEEL +0 -0
athena/core/client_wrapper.py
CHANGED
@@ -17,7 +17,7 @@ class BaseClientWrapper:
|
|
17
17
|
headers: typing.Dict[str, str] = {
|
18
18
|
"X-Fern-Language": "Python",
|
19
19
|
"X-Fern-SDK-Name": "athena-intelligence",
|
20
|
-
"X-Fern-SDK-Version": "0.1.
|
20
|
+
"X-Fern-SDK-Version": "0.1.86",
|
21
21
|
}
|
22
22
|
headers["X-API-KEY"] = self.api_key
|
23
23
|
return headers
|
athena/types/model.py
CHANGED
@@ -27,6 +27,7 @@ class Model(str, enum.Enum):
|
|
27
27
|
CLAUDE_3_HAIKU_20240307 = "claude-3-haiku-20240307"
|
28
28
|
CLAUDE_35_SONNET_20240620 = "claude-3-5-sonnet-20240620"
|
29
29
|
GOOGLE_GEMINI_10_PRO_LATEST = "google-gemini-1.0-pro-latest"
|
30
|
+
GOOGLE_GEMINI_15_PRO_LATEST = "google-gemini-1.5-pro-latest"
|
30
31
|
DATABRICKS_DBRX = "databricks-dbrx"
|
31
32
|
|
32
33
|
def visit(
|
@@ -47,6 +48,7 @@ class Model(str, enum.Enum):
|
|
47
48
|
claude_3_haiku_20240307: typing.Callable[[], T_Result],
|
48
49
|
claude_35_sonnet_20240620: typing.Callable[[], T_Result],
|
49
50
|
google_gemini_10_pro_latest: typing.Callable[[], T_Result],
|
51
|
+
google_gemini_15_pro_latest: typing.Callable[[], T_Result],
|
50
52
|
databricks_dbrx: typing.Callable[[], T_Result],
|
51
53
|
) -> T_Result:
|
52
54
|
if self is Model.GPT_35_TURBO:
|
@@ -81,5 +83,7 @@ class Model(str, enum.Enum):
|
|
81
83
|
return claude_35_sonnet_20240620()
|
82
84
|
if self is Model.GOOGLE_GEMINI_10_PRO_LATEST:
|
83
85
|
return google_gemini_10_pro_latest()
|
86
|
+
if self is Model.GOOGLE_GEMINI_15_PRO_LATEST:
|
87
|
+
return google_gemini_15_pro_latest()
|
84
88
|
if self is Model.DATABRICKS_DBRX:
|
85
89
|
return databricks_dbrx()
|
@@ -5,7 +5,7 @@ athena/chain/client.py,sha256=3O5tTl9skrhNS--6Jt-Za7CmmBz1MQLiqeNK0Ewtup0,16977
|
|
5
5
|
athena/client.py,sha256=gVUvs9Wui80KKYfXOzWQjfcar98ijg8NzNaPLkULFFA,6757
|
6
6
|
athena/core/__init__.py,sha256=UFXpYzcGxWQUucU1TkjOQ9mGWN3A5JohluOIWVYKU4I,973
|
7
7
|
athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
8
|
-
athena/core/client_wrapper.py,sha256=
|
8
|
+
athena/core/client_wrapper.py,sha256=ujw-SZMlg7IKRB5rwW50cLXxVAMNLoMM7e6vQ-2Pcig,1495
|
9
9
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
10
10
|
athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
11
11
|
athena/core/http_client.py,sha256=5ok6hqgZDJhg57EHvMnr0BBaHdG50QxFPKaCZ9aVWTc,5059
|
@@ -65,7 +65,7 @@ athena/types/llm_model.py,sha256=kGCC7WEAe-Lq7r6kiXhy5UCn6vdSdb7ydbq5gIjeye0,666
|
|
65
65
|
athena/types/map_reduce_chain_out.py,sha256=p9rN21wMZaki_rpd1Z_0DM4tvlDdYG8gHE2Xg4TEAvE,1213
|
66
66
|
athena/types/message_out.py,sha256=Jli5sJBAtwOgkZjpx28kVHfBRoBLuINyNTm_9AXPuys,1108
|
67
67
|
athena/types/message_out_dto.py,sha256=iELbR1DZBrlSshzIdfpZ3ZR2V1fzAzVw4aprxcfzg38,1294
|
68
|
-
athena/types/model.py,sha256=
|
68
|
+
athena/types/model.py,sha256=2dpNftSHkrgeUl-00Zk3UZ1tSkeygOfimHFDu5mc3ek,3746
|
69
69
|
athena/types/publish_formats.py,sha256=1j2fgJo0MMaHzEEYxd9uCFq_Y7bFoQox0JgKCfcPXLo,1148
|
70
70
|
athena/types/query_model.py,sha256=F-HSvgcTys4hA3e7sYas_71APMZmAu_LOKqWVZ0-Jx4,1684
|
71
71
|
athena/types/report.py,sha256=Yr_Ph7BS-2QgMJ3az5GP_fwlRMl6i4-1MGWYcLPSPhY,1189
|
@@ -87,6 +87,6 @@ athena/upload/client.py,sha256=L66H0qFpFH1RYIfKJLQgPDZ3HK5ZagRwYQX5BIen1rc,6825
|
|
87
87
|
athena/version.py,sha256=8aYAOJtVLaJLpRp6mTiEIhnl8gXA7yE0aDtZ-3mKQ4k,87
|
88
88
|
athena/workflow/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
89
89
|
athena/workflow/client.py,sha256=3LCFYbAoOWcvzwME677syefoJ55ukdTUxiQ71jXw7so,6663
|
90
|
-
athena_intelligence-0.1.
|
91
|
-
athena_intelligence-0.1.
|
92
|
-
athena_intelligence-0.1.
|
90
|
+
athena_intelligence-0.1.86.dist-info/METADATA,sha256=oiAY6HrOZNxyXsjDtH8XB6QZkv5mgS77ouasBMLWlfQ,5273
|
91
|
+
athena_intelligence-0.1.86.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
92
|
+
athena_intelligence-0.1.86.dist-info/RECORD,,
|
File without changes
|