We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bb6b39 commit 624e1d3Copy full SHA for 624e1d3
src/axiomatic/magic.py
@@ -13,11 +13,13 @@ class AXMagic:
13
Import with `%load_ext axiomatic.magic`."""
14
15
api_key: str
16
+ client: Axiomatic
17
18
def __init__(self, api_key: str = os.getenv("AXIOMATIC_API_KEY")):
19
self.folder = platformdirs.user_config_dir("axiomatic")
20
21
self.api_key = api_key
22
+ self.client = Axiomatic(api_key=api_key)
23
self.query = ""
24
25
def ax_api(self, query):
0 commit comments