schift-cli 0.1.0__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.
- schift_cli/__init__.py +1 -0
- schift_cli/client.py +119 -0
- schift_cli/commands/__init__.py +0 -0
- schift_cli/commands/auth.py +68 -0
- schift_cli/commands/bench.py +65 -0
- schift_cli/commands/catalog.py +74 -0
- schift_cli/commands/db.py +96 -0
- schift_cli/commands/embed.py +104 -0
- schift_cli/commands/migrate.py +127 -0
- schift_cli/commands/query.py +66 -0
- schift_cli/commands/skill.py +110 -0
- schift_cli/commands/usage.py +50 -0
- schift_cli/config.py +58 -0
- schift_cli/data/schift-best-practices/AGENTS.md +77 -0
- schift_cli/data/schift-best-practices/CLAUDE.md +77 -0
- schift_cli/data/schift-best-practices/SKILL.md +89 -0
- schift_cli/data/schift-best-practices/references/bucket-organization.md +126 -0
- schift_cli/data/schift-best-practices/references/bucket-upload.md +116 -0
- schift_cli/data/schift-best-practices/references/chatbot-widget.md +238 -0
- schift_cli/data/schift-best-practices/references/cost-batching.md +179 -0
- schift_cli/data/schift-best-practices/references/cost-storage-tiers.md +183 -0
- schift_cli/data/schift-best-practices/references/deploy-cloudrun.md +140 -0
- schift_cli/data/schift-best-practices/references/embed-batch-processing.md +86 -0
- schift_cli/data/schift-best-practices/references/embed-error-handling.md +155 -0
- schift_cli/data/schift-best-practices/references/embed-multimodal.md +100 -0
- schift_cli/data/schift-best-practices/references/embed-task-types.md +135 -0
- schift_cli/data/schift-best-practices/references/rag-chunking.md +173 -0
- schift_cli/data/schift-best-practices/references/rag-workflow-builder.md +205 -0
- schift_cli/data/schift-best-practices/references/sdk-async-patterns.md +103 -0
- schift_cli/data/schift-best-practices/references/sdk-auth-patterns.md +76 -0
- schift_cli/data/schift-best-practices/references/search-collection-design.md +229 -0
- schift_cli/data/schift-best-practices/references/search-hybrid.md +163 -0
- schift_cli/data/schift-best-practices/references/search-similarity-tuning.md +134 -0
- schift_cli/display.py +85 -0
- schift_cli/main.py +39 -0
- schift_cli-0.1.0.dist-info/METADATA +12 -0
- schift_cli-0.1.0.dist-info/RECORD +40 -0
- schift_cli-0.1.0.dist-info/WHEEL +5 -0
- schift_cli-0.1.0.dist-info/entry_points.txt +2 -0
- schift_cli-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
schift_cli/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
|
|
2
|
+
schift_cli/client.py,sha256=GWIZcLjutNLdYXiLNRPpAa5-iCFkVo7gNWsa5oLxUVE,3848
|
|
3
|
+
schift_cli/config.py,sha256=kXPIJqhNN_iHDrHO5wPYi453J7GGC8ffYKJm_n2ucqY,1362
|
|
4
|
+
schift_cli/display.py,sha256=6J1wg9atB-WZs-90ykIFP0_5ovbw0Y9rGGSjrawln9o,2254
|
|
5
|
+
schift_cli/main.py,sha256=a2BjVKRQt6i8QXLirbulDTKfPhxfdT4GDCg6oK-mYQA,977
|
|
6
|
+
schift_cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
schift_cli/commands/auth.py,sha256=cfSgmHUsDji8WOUAlOxSKP1LZM-Hi38qKyZDH7KfJV8,1882
|
|
8
|
+
schift_cli/commands/bench.py,sha256=M7o3ilneEZeAXyCUjKaL5YKyEfLtVubBCcsJEvLaaG4,2655
|
|
9
|
+
schift_cli/commands/catalog.py,sha256=fZBAQPGWx-GC0trebr_Ro1Mr2vcP5-rM2_MMr2e0_rw,2057
|
|
10
|
+
schift_cli/commands/db.py,sha256=-x2Ok25y2DP6_cME6PiYIjcTLP8pclPZJkQEGjjq-nQ,2924
|
|
11
|
+
schift_cli/commands/embed.py,sha256=ry40H6wF6s0nJ_0bkLd-YmDC_4iy7Lh_ahG5in8hUR0,3609
|
|
12
|
+
schift_cli/commands/migrate.py,sha256=3D9RBv7t6YWtamrUYNFn9D4IODreesf5NgEVmQQ5AiI,4730
|
|
13
|
+
schift_cli/commands/query.py,sha256=2pztsEZKgBF-gx3xXGksfyuUXM3HSDOBHISYTZVb_KM,1999
|
|
14
|
+
schift_cli/commands/skill.py,sha256=2h1Lip27vsp-HPz3i3iyvxxNgI0yrZ6gZaWXrSYxw8M,3240
|
|
15
|
+
schift_cli/commands/usage.py,sha256=-nq-EIOibp2Fh58cPuQzbohW4yPksm76DZuwd_d27S8,1616
|
|
16
|
+
schift_cli/data/schift-best-practices/AGENTS.md,sha256=AhYONmUtGTFhgadFIGre67pi4W-pQrcR7t_gTMp8jtQ,2227
|
|
17
|
+
schift_cli/data/schift-best-practices/CLAUDE.md,sha256=AhYONmUtGTFhgadFIGre67pi4W-pQrcR7t_gTMp8jtQ,2227
|
|
18
|
+
schift_cli/data/schift-best-practices/SKILL.md,sha256=v7X7D2RoePHXBl8cLdIoMs5GkplYY7uqlHCkkpKNLwQ,3248
|
|
19
|
+
schift_cli/data/schift-best-practices/references/bucket-organization.md,sha256=_of4-ImywTmVOeEViq4nTl4JTnGwOwug-b9ofpWNF-Q,4375
|
|
20
|
+
schift_cli/data/schift-best-practices/references/bucket-upload.md,sha256=ViuLefrGjBtlQ16aAwgSGsFqyeNrYfKBvJgRh92HBVY,4404
|
|
21
|
+
schift_cli/data/schift-best-practices/references/chatbot-widget.md,sha256=yQtQKYL6Uarv-SnNjTQ_V9QU5ZspQol2rt7DouEAirk,8030
|
|
22
|
+
schift_cli/data/schift-best-practices/references/cost-batching.md,sha256=g1jW2VAr6YH2bCj7-MW6sC3GhVm0bcBskJWkSTio9KA,5864
|
|
23
|
+
schift_cli/data/schift-best-practices/references/cost-storage-tiers.md,sha256=iGG6Byfc_8TTOiwr62KVkrLTiAWI1aXXzjPrOWQ1Wwg,6961
|
|
24
|
+
schift_cli/data/schift-best-practices/references/deploy-cloudrun.md,sha256=vq1SFdd3jmocr1rkP-etpdstqFA9pKQLLOmMSbH_gLo,4675
|
|
25
|
+
schift_cli/data/schift-best-practices/references/embed-batch-processing.md,sha256=jMzvq-GWLJnZbiSQyZ2kkRtQ6triUwsHEK-ghaOxBc0,2812
|
|
26
|
+
schift_cli/data/schift-best-practices/references/embed-error-handling.md,sha256=LAXsVC9gpnd8gUfNXmn3WgL0p_FNOu3-H1HA_hW-90w,5415
|
|
27
|
+
schift_cli/data/schift-best-practices/references/embed-multimodal.md,sha256=_R8FH1hFWAO5JDg3eUb_-zAw-8IoCRab0bmNpmp1tyY,3658
|
|
28
|
+
schift_cli/data/schift-best-practices/references/embed-task-types.md,sha256=jxNjU8lqB0YDJcWuPJ36RR3QBR796t4w9CPAVqfosoo,4337
|
|
29
|
+
schift_cli/data/schift-best-practices/references/rag-chunking.md,sha256=6_mmTY1pIL9vzxaBbtiTvZ4dd3nk1b6vujmCjRsPyS4,6128
|
|
30
|
+
schift_cli/data/schift-best-practices/references/rag-workflow-builder.md,sha256=DzIjx1f8KwfBHQa7jSGSJrS6EEKDjFdJ0Ql-f6binxU,7445
|
|
31
|
+
schift_cli/data/schift-best-practices/references/sdk-async-patterns.md,sha256=78uH3gYJCZpk-znRZ7lQ4lW_SQBrRDxmv_sBXEZlA4I,3380
|
|
32
|
+
schift_cli/data/schift-best-practices/references/sdk-auth-patterns.md,sha256=g-FD-W-vSiRoTKH9g1iDHyR5pTagIOyCFyPFMbyMsbI,2648
|
|
33
|
+
schift_cli/data/schift-best-practices/references/search-collection-design.md,sha256=PuuVbOF-ycIQUpvXX8wwwT0GKVfw5MEiITlByGx8ttg,8106
|
|
34
|
+
schift_cli/data/schift-best-practices/references/search-hybrid.md,sha256=8a0TVACbxI_1OhZ9KFYG-qX9uQFR3ugZEucrmvzt4yM,4956
|
|
35
|
+
schift_cli/data/schift-best-practices/references/search-similarity-tuning.md,sha256=JMs-dFrCCGYZlSiPZd6-_nSvRoF3fFRN5nyheQOt7B0,4185
|
|
36
|
+
schift_cli-0.1.0.dist-info/METADATA,sha256=v49cWXa3dDt-RFDBmoUdrHZ4unWdoAPh_NAc_0QfE7k,354
|
|
37
|
+
schift_cli-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
38
|
+
schift_cli-0.1.0.dist-info/entry_points.txt,sha256=IOa07CCIGmsIz_SCudYskuvO8GNXHsUj6vj_riyUrwQ,47
|
|
39
|
+
schift_cli-0.1.0.dist-info/top_level.txt,sha256=EXyfvhtvkxhPM4-CHYYXPrsUbFtgMKhZXIGBocXH47I,11
|
|
40
|
+
schift_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
schift_cli
|