athena-intelligence 0.1.90__py3-none-any.whl → 0.1.91__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.
@@ -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.90",
20
+ "X-Fern-SDK-Version": "0.1.91",
21
21
  }
22
22
  headers["X-API-KEY"] = self.api_key
23
23
  return headers
athena/types/tools.py CHANGED
@@ -20,6 +20,7 @@ class Tools(str, enum.Enum):
20
20
  ENRICH_PERSON = "enrich_person"
21
21
  ENRICH_COMPANY = "enrich_company"
22
22
  BROWSERBASE = "browserbase"
23
+ CODE_EXECUTION = "code_execution"
23
24
 
24
25
  def visit(
25
26
  self,
@@ -32,6 +33,7 @@ class Tools(str, enum.Enum):
32
33
  enrich_person: typing.Callable[[], T_Result],
33
34
  enrich_company: typing.Callable[[], T_Result],
34
35
  browserbase: typing.Callable[[], T_Result],
36
+ code_execution: typing.Callable[[], T_Result],
35
37
  ) -> T_Result:
36
38
  if self is Tools.SEARCH:
37
39
  return search()
@@ -51,3 +53,5 @@ class Tools(str, enum.Enum):
51
53
  return enrich_company()
52
54
  if self is Tools.BROWSERBASE:
53
55
  return browserbase()
56
+ if self is Tools.CODE_EXECUTION:
57
+ return code_execution()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.90
3
+ Version: 0.1.91
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -5,7 +5,7 @@ athena/chain/client.py,sha256=5YJJsXnXLFbPN1y0Qe__QWoQ2QOMp6zK_is_obk7Gg8,11105
5
5
  athena/client.py,sha256=piHOo-a8KiuQnBCsJ509zSRahXd6DCaxkzaqqTbNWME,9680
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=ADV3_Uf4JxBw9Vczm9GQW32We6mpjtI9ahr081hxo6g,1805
8
+ athena/core/client_wrapper.py,sha256=egc_IilwQq61eomt9x-Nh_1aoicHm41xMT3tqCy3ryQ,1805
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=Z4NuAsJD-51yqmoME17O5sxwx5orSp1wsnd6bPyKcgA,17768
@@ -76,7 +76,7 @@ athena/types/sql_results.py,sha256=ikxHio7BRnWqNIwdoZcoVOf3Un64Kn9qLAHiIjOVwiQ,1
76
76
  athena/types/status_enum.py,sha256=0UZbhdAx215GHC-U53RS98mYHtn1N3On4VBe4j02Qtc,672
77
77
  athena/types/structured_parse_result.py,sha256=BFjA9R20kTdiRaPpQd7tEmLuSCO9ux1SF7rDziq61nY,1148
78
78
  athena/types/time_dimension_model.py,sha256=Kp-s5Xd05JIyLzGG8X9eop5e0P3yi0S1bygW4BXApKI,1294
79
- athena/types/tools.py,sha256=W0ekZrKpwlf66HJC7kGLWYJE3C1agJRnmMbvfA4M93o,1577
79
+ athena/types/tools.py,sha256=OrWzaeeBEVk2qsttuRNaStPq7XhRuitydA1oJVqJqPE,1747
80
80
  athena/types/upload_documents_out.py,sha256=NObG9duFoIyCTPggNs_arCkNybEvlsmEFNkeGTcHH3s,1249
81
81
  athena/types/url_result.py,sha256=y_77BhRPQM7a1ugJpDHNDbNv1e2T79Evm9y-0Y4wrr8,1136
82
82
  athena/types/validation_error.py,sha256=zub9I6bl192KHCE8RA0pEkdaEODR3ktTFnZ7E1B7Eco,1235
@@ -87,6 +87,6 @@ athena/upload/client.py,sha256=Z44mBN3Vg_HG4uOqrzBkkNhCGETjsAlbU1RA50KDxkQ,3897
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=1WGH4MCnwae5Wgb7pGfiyZRr--HscVpdHxeouNSyPe0,4023
90
- athena_intelligence-0.1.90.dist-info/METADATA,sha256=0GdM4W4QOMBcDGBM97xrlEDacHScr7tDV2WgXEcwVFc,5273
91
- athena_intelligence-0.1.90.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
92
- athena_intelligence-0.1.90.dist-info/RECORD,,
90
+ athena_intelligence-0.1.91.dist-info/METADATA,sha256=G9U2BsE3RfOVpbkHUci319cHUTnnJTnr08n6pwB1uWY,5273
91
+ athena_intelligence-0.1.91.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
92
+ athena_intelligence-0.1.91.dist-info/RECORD,,