usecortex-ai 0.1.0__py3-none-any.whl → 0.1.1__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.
Files changed (35) hide show
  1. cortex_ai/__init__.py +6 -4
  2. cortex_ai/client.py +4 -4
  3. cortex_ai/embeddings/client.py +8 -8
  4. cortex_ai/fetch/client.py +2 -2
  5. cortex_ai/search/client.py +15 -16
  6. cortex_ai/search/raw_client.py +17 -18
  7. cortex_ai/sources/client.py +4 -4
  8. cortex_ai/tenant/client.py +2 -2
  9. cortex_ai/types/__init__.py +6 -4
  10. cortex_ai/types/app_sources_upload_data.py +1 -1
  11. cortex_ai/types/batch_upload_data.py +1 -1
  12. cortex_ai/types/{search_data.py → body_scrape_webpage_upload_scrape_webpage_post.py} +2 -5
  13. cortex_ai/types/{full_text_search_data.py → body_update_scrape_job_upload_update_webpage_patch.py} +2 -5
  14. cortex_ai/types/embeddings_create_collection_data.py +1 -1
  15. cortex_ai/types/embeddings_delete_data.py +1 -1
  16. cortex_ai/types/embeddings_get_data.py +1 -1
  17. cortex_ai/types/embeddings_search_data.py +1 -1
  18. cortex_ai/types/error_response.py +1 -1
  19. cortex_ai/types/extended_context.py +1 -1
  20. cortex_ai/types/fetch_content_data.py +1 -1
  21. cortex_ai/types/list_sources_response.py +1 -1
  22. cortex_ai/types/processing_status.py +1 -1
  23. cortex_ai/types/relations.py +27 -0
  24. cortex_ai/types/single_upload_data.py +1 -1
  25. cortex_ai/types/tenant_create_data.py +1 -1
  26. cortex_ai/types/tenant_stats.py +1 -1
  27. cortex_ai/upload/client.py +138 -120
  28. cortex_ai/upload/raw_client.py +154 -80
  29. cortex_ai/user/client.py +2 -2
  30. cortex_ai/user_memory/client.py +10 -10
  31. {usecortex_ai-0.1.0.dist-info → usecortex_ai-0.1.1.dist-info}/METADATA +1 -1
  32. {usecortex_ai-0.1.0.dist-info → usecortex_ai-0.1.1.dist-info}/RECORD +35 -34
  33. {usecortex_ai-0.1.0.dist-info → usecortex_ai-0.1.1.dist-info}/WHEEL +0 -0
  34. {usecortex_ai-0.1.0.dist-info → usecortex_ai-0.1.1.dist-info}/licenses/LICENSE +0 -0
  35. {usecortex_ai-0.1.0.dist-info → usecortex_ai-0.1.1.dist-info}/top_level.txt +0 -0
cortex_ai/user/client.py CHANGED
@@ -55,7 +55,7 @@ class UserClient:
55
55
 
56
56
  Examples
57
57
  --------
58
- from cortex-ai import CortexAI
58
+ from usecortex-ai import CortexAI
59
59
 
60
60
  client = CortexAI(token="YOUR_TOKEN", )
61
61
  client.user.create_tenant()
@@ -112,7 +112,7 @@ class AsyncUserClient:
112
112
  --------
113
113
  import asyncio
114
114
 
115
- from cortex-ai import AsyncCortexAI
115
+ from usecortex-ai import AsyncCortexAI
116
116
 
117
117
  client = AsyncCortexAI(token="YOUR_TOKEN", )
118
118
  async def main() -> None:
@@ -42,7 +42,7 @@ class UserMemoryClient:
42
42
 
43
43
  Examples
44
44
  --------
45
- from cortex-ai import CortexAI
45
+ from usecortex-ai import CortexAI
46
46
 
47
47
  client = CortexAI(token="YOUR_TOKEN", )
48
48
  client.user_memory.list_user_memories(tenant_id='tenant_id', sub_tenant_id='sub_tenant_id', )
@@ -79,7 +79,7 @@ class UserMemoryClient:
79
79
 
80
80
  Examples
81
81
  --------
82
- from cortex-ai import CortexAI
82
+ from usecortex-ai import CortexAI
83
83
 
84
84
  client = CortexAI(token="YOUR_TOKEN", )
85
85
  client.user_memory.delete_user_memory(tenant_id='tenant_id', memory_id='memory_id', sub_tenant_id='sub_tenant_id', )
@@ -119,7 +119,7 @@ class UserMemoryClient:
119
119
 
120
120
  Examples
121
121
  --------
122
- from cortex-ai import CortexAI
122
+ from usecortex-ai import CortexAI
123
123
 
124
124
  client = CortexAI(token="YOUR_TOKEN", )
125
125
  client.user_memory.retrieve_user_memory(tenant_id='tenant_id', query='query', sub_tenant_id='sub_tenant_id', )
@@ -163,7 +163,7 @@ class UserMemoryClient:
163
163
 
164
164
  Examples
165
165
  --------
166
- from cortex-ai import CortexAI
166
+ from usecortex-ai import CortexAI
167
167
 
168
168
  client = CortexAI(token="YOUR_TOKEN", )
169
169
  client.user_memory.generate_user_memory(tenant_id='tenant_id', user_query='user_query', user_name='user_name', sub_tenant_id='sub_tenant_id', )
@@ -204,7 +204,7 @@ class UserMemoryClient:
204
204
 
205
205
  Examples
206
206
  --------
207
- from cortex-ai import CortexAI
207
+ from usecortex-ai import CortexAI
208
208
 
209
209
  client = CortexAI(token="YOUR_TOKEN", )
210
210
  client.user_memory.add_user_memory(tenant_id='tenant_id', user_memory='user_memory', sub_tenant_id='sub_tenant_id', )
@@ -252,7 +252,7 @@ class AsyncUserMemoryClient:
252
252
  --------
253
253
  import asyncio
254
254
 
255
- from cortex-ai import AsyncCortexAI
255
+ from usecortex-ai import AsyncCortexAI
256
256
 
257
257
  client = AsyncCortexAI(token="YOUR_TOKEN", )
258
258
  async def main() -> None:
@@ -293,7 +293,7 @@ class AsyncUserMemoryClient:
293
293
  --------
294
294
  import asyncio
295
295
 
296
- from cortex-ai import AsyncCortexAI
296
+ from usecortex-ai import AsyncCortexAI
297
297
 
298
298
  client = AsyncCortexAI(token="YOUR_TOKEN", )
299
299
  async def main() -> None:
@@ -337,7 +337,7 @@ class AsyncUserMemoryClient:
337
337
  --------
338
338
  import asyncio
339
339
 
340
- from cortex-ai import AsyncCortexAI
340
+ from usecortex-ai import AsyncCortexAI
341
341
 
342
342
  client = AsyncCortexAI(token="YOUR_TOKEN", )
343
343
  async def main() -> None:
@@ -385,7 +385,7 @@ class AsyncUserMemoryClient:
385
385
  --------
386
386
  import asyncio
387
387
 
388
- from cortex-ai import AsyncCortexAI
388
+ from usecortex-ai import AsyncCortexAI
389
389
 
390
390
  client = AsyncCortexAI(token="YOUR_TOKEN", )
391
391
  async def main() -> None:
@@ -430,7 +430,7 @@ class AsyncUserMemoryClient:
430
430
  --------
431
431
  import asyncio
432
432
 
433
- from cortex-ai import AsyncCortexAI
433
+ from usecortex-ai import AsyncCortexAI
434
434
 
435
435
  client = AsyncCortexAI(token="YOUR_TOKEN", )
436
436
  async def main() -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: usecortex-ai
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: The official Python SDK for the Cortex AI platform.
5
5
  Author-email: Nishkarsh Shrivastava <nishkarsh@usecortex.ai>
6
6
  License: Copyright (c) 2024 Cortex AI
@@ -1,5 +1,5 @@
1
- cortex_ai/__init__.py,sha256=p-4QnrL0d4xdGsJWsWB1To0yG0JsTHp9OjJi4SbDQXQ,2322
2
- cortex_ai/client.py,sha256=nqvsaL4k3xOHqhz9YA7W2FDxcKeBHMEtZo6vJ4PfP6c,9631
1
+ cortex_ai/__init__.py,sha256=BxQ61yUqhklAXM8-k4DyRgJm2L1BjEgQKnOFukzDFS8,2464
2
+ cortex_ai/client.py,sha256=v7QxZaGTwNrfxXWnSMk90TYJuWh9RIzxqX8308bUBhc,9643
3
3
  cortex_ai/environment.py,sha256=IZ0X7CTz4V0TzNaMrw6E5GJklcTLxGJmrWEyH-LtYsc,162
4
4
  cortex_ai/raw_client.py,sha256=Z2zedJhFwHoO_Zmm2enC_s-gd8SM_itaWZOfL0rSobE,3532
5
5
  cortex_ai/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
@@ -17,7 +17,7 @@ cortex_ai/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd
17
17
  cortex_ai/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
18
18
  cortex_ai/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
19
19
  cortex_ai/embeddings/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
20
- cortex_ai/embeddings/client.py,sha256=1RXdhrsKMJdr3_W5X711o7XB9U6iPF_h5CqeToMlgug,14335
20
+ cortex_ai/embeddings/client.py,sha256=Dk9w852J2Hc6rIcp-w26enSikU-REF3stAYI8bdldLI,14359
21
21
  cortex_ai/embeddings/raw_client.py,sha256=05od3BJChCSAnNdQ_ZjSRJhB_V8RD92e8yU9oEiF7sU,45532
22
22
  cortex_ai/errors/__init__.py,sha256=PS842uUNhpA1vS6eb6QYEAPq3tbg4_pLujUebJu3dLk,648
23
23
  cortex_ai/errors/bad_request_error.py,sha256=VdKbyoKQhQoaKa0UvQz-9_xMvvI1wVgpghH975VS0Tk,392
@@ -28,62 +28,63 @@ cortex_ai/errors/service_unavailable_error.py,sha256=SPY3eX47JsLLSrYse65vxdYgpc0
28
28
  cortex_ai/errors/unauthorized_error.py,sha256=bWAey6G90kY_sxDwz39g6z293zRKW_gAVOjQLlfcn-M,394
29
29
  cortex_ai/errors/unprocessable_entity_error.py,sha256=JqxtzIhvjkpQDqbT9Q-go1n-gyv9PsYqq0ng_ZYyBMo,347
30
30
  cortex_ai/fetch/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
31
- cortex_ai/fetch/client.py,sha256=YGwMoKhVJnXGJQHSzz9XbgZfLslhff-cEFlbSiEGAY0,3944
31
+ cortex_ai/fetch/client.py,sha256=Xn0U4LmPH2AdBegLdr1EHi5HaQYF303-9aiwFRtdJmk,3950
32
32
  cortex_ai/fetch/raw_client.py,sha256=FCBFr34T4yIzudw3FBDWPZ2FdV1yWMsORrrjkLVyLTg,11734
33
33
  cortex_ai/search/__init__.py,sha256=iA8ksy3OzGPGNq_g8cVXsEiZuWyAEAnKI6fHUFWEE-A,131
34
- cortex_ai/search/client.py,sha256=omAU8wPy9rcOc0Xla6zJ2aHQyfB4Szt4CrsqXJofC6g,18778
35
- cortex_ai/search/raw_client.py,sha256=KCGydMXlQulg-6NP2VI-jXA-6TtIum_6kZ8TpEWn10A,42926
34
+ cortex_ai/search/client.py,sha256=RSu16NvOWlUeKQjDlECUARoJ3FEyoHYGQvFyEOOuBTQ,18817
35
+ cortex_ai/search/raw_client.py,sha256=8zTzuYt0jygo511bIZ7bL5s9b0Bc1c1pLa8cQYlR12g,43027
36
36
  cortex_ai/search/types/__init__.py,sha256=T0zQrrDzfvgmw2Deo_iYanUoxcVhZ9jDO_fS3CpSU9M,131
37
37
  cortex_ai/search/types/alpha.py,sha256=afIpOT9uMdYdUZB_biXoggzRnZlnr00miVPDgxDRFIA,113
38
38
  cortex_ai/sources/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
39
- cortex_ai/sources/client.py,sha256=viU6hVIAQw32pxZrP0Msvwn7gzR-Wf7UNCSyKKPYwA4,5168
39
+ cortex_ai/sources/client.py,sha256=mXw6PfnDfRaCp2oiUsTh3z4bFMEXyqvQH_aCp62a4gE,5180
40
40
  cortex_ai/sources/raw_client.py,sha256=_7ESuj9-_Zi2JMfSRoAgwL68OKUecCgSPs8yqzzcOKo,20639
41
41
  cortex_ai/tenant/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
42
- cortex_ai/tenant/client.py,sha256=B4o-awbREJ2lyW277aj-w_1FEh7aAB7h3-z36yx8J9s,3196
42
+ cortex_ai/tenant/client.py,sha256=-i5OxrQ4rU32nUTkTcV3LgKqwAhhDCv1HNNceHMspd0,3202
43
43
  cortex_ai/tenant/raw_client.py,sha256=-CE7jE7q-w2wWcpp7-WP0OsFcWv-uroBlcMWAJEF8zY,10844
44
- cortex_ai/types/__init__.py,sha256=SWTWqSVC7F1te8Ewg5nOUZ15tGXBLlZafdSe19sFhuY,2363
44
+ cortex_ai/types/__init__.py,sha256=PGWmYk6tDlv4jLUNkzwOnjrGDXumkH4jOSVkAZ_xHG4,2587
45
45
  cortex_ai/types/actual_error_response.py,sha256=EBit_JO3u0FQrVAXDg0UXQktlULLPLtX8FF8J9mZSvY,580
46
- cortex_ai/types/app_sources_upload_data.py,sha256=JfXzIEU7Da9KOYKst1pKmkHyfZh_NlWM8NNBPbjZd00,665
46
+ cortex_ai/types/app_sources_upload_data.py,sha256=WY1Gn5w5leyjKXEmxx6E7f4cJr6G11wFP5eD1yjJQKs,689
47
47
  cortex_ai/types/attachment_model.py,sha256=j_wRZSzZXpVDMFadagNwvN_K4aYlp29QyKcG00tt2X4,881
48
- cortex_ai/types/batch_upload_data.py,sha256=BYtRiPK5YiUWrqNBkDuS_vanDCMOxa_M4lp2IPTcMho,660
48
+ cortex_ai/types/batch_upload_data.py,sha256=0n7_Ab5g6cVccTcWAX1thVv4aSN2HloRAztoqkjtpyg,684
49
49
  cortex_ai/types/bm_25_operator_type.py,sha256=wiromvB4YjgxKQcS1-1BNBZ7MqKP1JzBEbY1R8K-wq4,153
50
+ cortex_ai/types/body_scrape_webpage_upload_scrape_webpage_post.py,sha256=rH1ec9ukeFTy_prVfX9Ziuw9sTJcHD2unJZJFktavGE,576
51
+ cortex_ai/types/body_update_scrape_job_upload_update_webpage_patch.py,sha256=KHiN56z8DMrF0pFQAgFMAaPyykyq4pksYzZYBpzBURQ,579
50
52
  cortex_ai/types/content_model.py,sha256=k9o8CBnCshunSPtE9a98DR2-L8oSq5egBYeJPKlEB0c,1066
51
53
  cortex_ai/types/delete_memory_request.py,sha256=M1WpkCJbp4wxP9ZfB6PZNkpEJNyWxkxfw7Jj_7phwfQ,611
52
- cortex_ai/types/embeddings_create_collection_data.py,sha256=5FdGkjDjgWgHBQ3PJw8crK-M7QZnI_BNJpYvor43H0k,624
53
- cortex_ai/types/embeddings_delete_data.py,sha256=zXKkrdAjaokriy-1vr8AM28VGEiDZmUyOBWaqmayNOA,630
54
- cortex_ai/types/embeddings_get_data.py,sha256=L9PkzpFjCaw2F3B0u8Tba2sCIFyJ9S6KVm4pyz24AC8,664
55
- cortex_ai/types/embeddings_search_data.py,sha256=EJoHGz1xV-zpFdzk7T6A6My4p3xFwg7_Nxj9PEjjKT4,635
56
- cortex_ai/types/error_response.py,sha256=yYlYOVZmje19jx6ob2H8izJgLVmn3MCWpq1FcaZL4bA,689
57
- cortex_ai/types/extended_context.py,sha256=Snfz8t2jzhub7YhDQrdL-xN2YLK6dOOXVd5ycDqi6jg,618
58
- cortex_ai/types/fetch_content_data.py,sha256=vVQxXsfm_XT9NnX0mH1N5gW86K4odl-t4sQCMScxVUg,644
54
+ cortex_ai/types/embeddings_create_collection_data.py,sha256=8SAq7FsgTD9wT3DMNrAnAcZNBecTf1Yw7xpAyOFoyao,648
55
+ cortex_ai/types/embeddings_delete_data.py,sha256=p9ELYPnza696owXz-dPMgqubUd5KE7TiqFAW_leHzoY,654
56
+ cortex_ai/types/embeddings_get_data.py,sha256=WTLLItlykbj1z37CKxxnCRc66e-FjG2PX0obX78QAAA,688
57
+ cortex_ai/types/embeddings_search_data.py,sha256=1nvJSlsWMInUWD23P3cEgPm3BaPDCZ0b-ZfTgFGORRA,659
58
+ cortex_ai/types/error_response.py,sha256=CM9yFFCayjBprEHEvXK9RvhntuBPhLxjQ_Vmgt8w_wo,713
59
+ cortex_ai/types/extended_context.py,sha256=yDKPhML8JrGShrjtYK8E44JIKPxLI16KXlYEb-3UTXw,613
60
+ cortex_ai/types/fetch_content_data.py,sha256=YpWsBl-1fAcKw4OhmXOT5iSKJk0uRzU9LKV0-JH__ic,668
59
61
  cortex_ai/types/file_upload_result.py,sha256=mTzHWoqTS4Go1anXycJ5uD052u1-Ba4a6sduEYHvvVQ,568
60
- cortex_ai/types/full_text_search_data.py,sha256=EQupxMccSA2wxCWBqBM8OwNiekLy4E-SBSQBe-2BU44,645
61
62
  cortex_ai/types/http_validation_error.py,sha256=NNTK9AbbHXm0n9m1YcsG5zEaSn1n6RghohUX5R8LGzw,623
62
- cortex_ai/types/list_sources_response.py,sha256=S3jblpKmayATyjhR6jYh6tkAfwTwb8-KvPQbS3mWIBk,648
63
+ cortex_ai/types/list_sources_response.py,sha256=FBwR2NT_roFftIMfmrCd3JkjfDmSfKffJ-BfjvcscPI,672
63
64
  cortex_ai/types/markdown_upload_request.py,sha256=l2lB6cn_MPpl0BLQLjnqgB3y1P0QIyI-dtP2ANAUQRs,715
64
- cortex_ai/types/processing_status.py,sha256=2zyIGBm5otiJTqh_hIV9fV6z_snezJ9u-v_FFa-8kp0,610
65
+ cortex_ai/types/processing_status.py,sha256=3uyVl8S4CqRz_sR2UyGg0BDjwSdX66aYdwvbUXdVg4A,634
65
66
  cortex_ai/types/related_chunk.py,sha256=Ed7pzlEbycX5kmjvzF5-c9QvwOzyGozTsX9uAQMsDCI,613
67
+ cortex_ai/types/relations.py,sha256=gH_UwgZMbsYAVxJu4FI3CURxSkHTKVzM0YfKx7qBxZ4,819
66
68
  cortex_ai/types/search_chunk.py,sha256=p1m7UZ9gTfqy4-yZgLGFzUaZDo8yOTCi4nxGxpoDPFg,1272
67
- cortex_ai/types/search_data.py,sha256=BtUCDCjW4nkDw9LEQkWR_yMZwV0PBuqI8jYcJlxe1nQ,637
68
- cortex_ai/types/single_upload_data.py,sha256=ZvrCgcKsS3TfhFjYnsWNV2wxcB5p8m3LYEG4HYE7bUo,585
69
+ cortex_ai/types/single_upload_data.py,sha256=OU4-spG_7Xrc9GjmDaEztP_PogZ2WICKDOJlfnxw8Gg,609
69
70
  cortex_ai/types/source.py,sha256=KEz7WEwo7PXBOnh9qWOPqFsclag56y-zjLN7oUNQlt4,1152
70
71
  cortex_ai/types/source_content.py,sha256=Ll6NrI2cIdAK5jM0274hi4Lu7hvWKNexXwYLswKlfNM,1007
71
72
  cortex_ai/types/source_model.py,sha256=Ez1oMLz6cpEFqdqFm-H2ABIL4MNfHT-vdfBZQ6vjnr8,1215
72
- cortex_ai/types/tenant_create_data.py,sha256=-3ALqBXjq1vFSH9hDteNMhH28uqbC_vkU0C588AzkMQ,603
73
- cortex_ai/types/tenant_stats.py,sha256=eubn9btftJUm5d_OWW8C52AhhdOFE35ztF9gTJvjJC8,656
73
+ cortex_ai/types/tenant_create_data.py,sha256=iQe-zI01xevwqG2kjxY0Xuwl3C5osks0ZUhlvuK_GQs,627
74
+ cortex_ai/types/tenant_stats.py,sha256=2r8kNssnj3nSTYeQ_QfQqwHK1ejuvESQ-e1s9u6kZwU,680
74
75
  cortex_ai/types/validation_error.py,sha256=Ou-GSQTdmDFWIFlP_y9ka_EUAavqFEFLonU9srAkJdc,642
75
76
  cortex_ai/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
76
77
  cortex_ai/upload/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
77
- cortex_ai/upload/client.py,sha256=Vnz85g1I9-vzkICY1xrxB8Ci-PDKM3_NbLPgMCt_22k,46349
78
- cortex_ai/upload/raw_client.py,sha256=BCOg4JMSzi_QKj0kofdrslI-wscb47ibsmSpFagG2iU,161269
78
+ cortex_ai/upload/client.py,sha256=_PsHNGhPE0RlsKzaVRVXg9T76dmZXQgGvKy9gwyGam4,46083
79
+ cortex_ai/upload/raw_client.py,sha256=rGetOIE-6IF7gXa23Ju1x-L495zZ7lGlKtAGkslER3k,163283
79
80
  cortex_ai/user/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
80
- cortex_ai/user/client.py,sha256=mP5uPZ_W9ttGRqWyFENsZV5vG0TzzC4BD8a1ighrnjY,3850
81
+ cortex_ai/user/client.py,sha256=dUnTvb8i5eozWg7NHeOvsmDla3qetp7-8j6goP7WzBQ,3856
81
82
  cortex_ai/user/raw_client.py,sha256=JKrPQG4-j-lZyAq-qMNIeB9WaaE-1xLal7GKapdf2Qs,11858
82
83
  cortex_ai/user_memory/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
83
- cortex_ai/user_memory/client.py,sha256=WTDfUHIu6ZouqBpP6AMfDax3jhqqRol07cjdb2s0QJY,12471
84
+ cortex_ai/user_memory/client.py,sha256=FlyahubwpgHaUU1FlPsBz7NnC0opHFM9xL8ofctSxpA,12501
84
85
  cortex_ai/user_memory/raw_client.py,sha256=4jmktMGuFivAmvOoC-1G3nhRsrdjhhwsCFqLRLlIWZ0,24010
85
- usecortex_ai-0.1.0.dist-info/licenses/LICENSE,sha256=ExSrDLXpv6Bq3AiBk9VwLfysI9Fj-L3LqJNGKqbxNzw,1256
86
- usecortex_ai-0.1.0.dist-info/METADATA,sha256=k2R5ykv3-gUhWFVkns3G1VmsB2v62lcFIbWJ9dH9SOk,6242
87
- usecortex_ai-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
88
- usecortex_ai-0.1.0.dist-info/top_level.txt,sha256=Jsal8Zjdf3N1PFK-9sZV2ZQyUeoZVZWHYk8DZ2Qvc1Y,10
89
- usecortex_ai-0.1.0.dist-info/RECORD,,
86
+ usecortex_ai-0.1.1.dist-info/licenses/LICENSE,sha256=ExSrDLXpv6Bq3AiBk9VwLfysI9Fj-L3LqJNGKqbxNzw,1256
87
+ usecortex_ai-0.1.1.dist-info/METADATA,sha256=S3nQNH-L5rBgLrU2P_GP776JCmg2jZ3EiqDdzq2zPZ0,6242
88
+ usecortex_ai-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ usecortex_ai-0.1.1.dist-info/top_level.txt,sha256=Jsal8Zjdf3N1PFK-9sZV2ZQyUeoZVZWHYk8DZ2Qvc1Y,10
90
+ usecortex_ai-0.1.1.dist-info/RECORD,,