cat-stack 0.1.0__tar.gz

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 (39) hide show
  1. cat_stack-0.1.0/.gitignore +42 -0
  2. cat_stack-0.1.0/LICENSE +672 -0
  3. cat_stack-0.1.0/PKG-INFO +150 -0
  4. cat_stack-0.1.0/README.md +113 -0
  5. cat_stack-0.1.0/pyproject.toml +86 -0
  6. cat_stack-0.1.0/src/cat_stack/__about__.py +10 -0
  7. cat_stack-0.1.0/src/cat_stack/__init__.py +128 -0
  8. cat_stack-0.1.0/src/cat_stack/_batch.py +1388 -0
  9. cat_stack-0.1.0/src/cat_stack/_category_analysis.py +348 -0
  10. cat_stack-0.1.0/src/cat_stack/_chunked.py +424 -0
  11. cat_stack-0.1.0/src/cat_stack/_embeddings.py +189 -0
  12. cat_stack-0.1.0/src/cat_stack/_formatter.py +169 -0
  13. cat_stack-0.1.0/src/cat_stack/_providers.py +1048 -0
  14. cat_stack-0.1.0/src/cat_stack/_tiebreaker.py +277 -0
  15. cat_stack-0.1.0/src/cat_stack/_utils.py +512 -0
  16. cat_stack-0.1.0/src/cat_stack/_web_fetch.py +194 -0
  17. cat_stack-0.1.0/src/cat_stack/calls/CoVe.py +287 -0
  18. cat_stack-0.1.0/src/cat_stack/calls/__init__.py +25 -0
  19. cat_stack-0.1.0/src/cat_stack/calls/all_calls.py +622 -0
  20. cat_stack-0.1.0/src/cat_stack/calls/image_CoVe.py +386 -0
  21. cat_stack-0.1.0/src/cat_stack/calls/image_stepback.py +210 -0
  22. cat_stack-0.1.0/src/cat_stack/calls/pdf_CoVe.py +386 -0
  23. cat_stack-0.1.0/src/cat_stack/calls/pdf_stepback.py +210 -0
  24. cat_stack-0.1.0/src/cat_stack/calls/stepback.py +180 -0
  25. cat_stack-0.1.0/src/cat_stack/calls/top_n.py +217 -0
  26. cat_stack-0.1.0/src/cat_stack/classify.py +682 -0
  27. cat_stack-0.1.0/src/cat_stack/explore.py +111 -0
  28. cat_stack-0.1.0/src/cat_stack/extract.py +218 -0
  29. cat_stack-0.1.0/src/cat_stack/image_functions.py +2078 -0
  30. cat_stack-0.1.0/src/cat_stack/images/circle.png +0 -0
  31. cat_stack-0.1.0/src/cat_stack/images/cube.png +0 -0
  32. cat_stack-0.1.0/src/cat_stack/images/diamond.png +0 -0
  33. cat_stack-0.1.0/src/cat_stack/images/overlapping_pentagons.png +0 -0
  34. cat_stack-0.1.0/src/cat_stack/images/rectangles.png +0 -0
  35. cat_stack-0.1.0/src/cat_stack/model_reference_list.py +94 -0
  36. cat_stack-0.1.0/src/cat_stack/pdf_functions.py +2087 -0
  37. cat_stack-0.1.0/src/cat_stack/summarize.py +290 -0
  38. cat_stack-0.1.0/src/cat_stack/text_functions.py +1358 -0
  39. cat_stack-0.1.0/src/cat_stack/text_functions_ensemble.py +3644 -0
@@ -0,0 +1,42 @@
1
+ .Rproj.user
2
+ .Rhistory
3
+ .RData
4
+ .Ruserdata
5
+
6
+ # Environment variables (secrets)
7
+ .env
8
+
9
+ # Claude instructions
10
+ CLAUDE.md
11
+
12
+ # OS files
13
+ .DS_Store
14
+ **/.DS_Store
15
+
16
+ # Python cache
17
+ __pycache__/
18
+ **/__pycache__/
19
+ *.pyc
20
+
21
+ # Build artifacts
22
+ dist/
23
+
24
+ # Playwright MCP
25
+ .playwright-mcp/
26
+
27
+ # Diagram generation scripts
28
+ images/generate_classify_diagram.py
29
+
30
+ # Old/experimental code
31
+ src/catllm/old_code/
32
+ src/catllm/circle_classifier.py
33
+
34
+ # Test files and test directory (top-level only)
35
+ /tests/
36
+
37
+ # Survey summarizer (separate project)
38
+ survey-summarizer
39
+
40
+ # R package build/check artifacts
41
+ *.Rcheck/
42
+ *.tar.gz