Survey response classification powered by LLMs
Project description
cat-survey
Survey response classification powered by LLMs. A thin, survey-specific wrapper around cat-stack.
cat-survey adds survey-specific prompt framing ("A respondent was asked: ...") on top of the domain-agnostic cat-stack engine — giving LLMs the context that responses come from a survey instrument.
Installation
pip install cat-survey
With optional extras:
pip install "cat-survey[pdf]" # PDF survey processing
pip install "cat-survey[embeddings]" # Embedding-based similarity scoring
Quick Start
Classify survey responses
import cat_survey
results = cat_survey.classify(
input_data=["I feel great about the program", "It was a waste of time"],
categories=["Positive", "Negative", "Neutral"],
survey_question="How do you feel about the new wellness program?",
api_key="sk-...",
)
Discover categories from open-ended responses
result = cat_survey.extract(
input_data=responses,
api_key="sk-...",
survey_question="What changes would you suggest for the workplace?",
)
print(result["top_categories"])
Summarize responses
summaries = cat_survey.summarize(
input_data=responses,
api_key="sk-...",
description="Open-ended feedback from employee satisfaction survey",
)
How It Works
cat-survey is a thin wrapper that:
- Takes your
survey_questionparameter - Injects survey-specific framing: "A respondent was asked: '{survey_question}'."
- Delegates to
cat-stackfor all LLM communication, classification logic, batch processing, and ensemble methods
All cat-stack parameters (multi-model ensemble, batch mode, chain-of-thought, etc.) are passed through via **kwargs.
API
| Function | Description |
|---|---|
classify() |
Classify responses into predefined categories |
extract() |
Discover and normalize categories from responses |
explore() |
Raw category extraction (no deduplication) |
summarize() |
Summarize responses (pass-through to cat-stack) |
Ecosystem
| Package | Role |
|---|---|
| cat-stack | Domain-agnostic LLM classification engine |
| cat-survey | Survey-specific wrapper (this package) |
| cat-cog | Cognitive assessment scoring (CERAD) |
License
GPL-3.0-or-later
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cat_survey-0.1.0.tar.gz.
File metadata
- Download URL: cat_survey-0.1.0.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b6a246fe5e4740d259a2fe3032ea4b6eaa720097a01df938604bafa54ea25b2
|
|
| MD5 |
61c8dfd743f025a1751e56a59c798b4d
|
|
| BLAKE2b-256 |
a0151c9e90135be4e0a23cb24fea67424df3c68822856a5febe6125bf02a1e9d
|
File details
Details for the file cat_survey-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cat_survey-0.1.0-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
775beb036ddbaa1708468930ae3d705a1c9e4b69375f9a7cd31a0b7088966b07
|
|
| MD5 |
ed3d2d4b1005eeba7b0fedf32f1038fd
|
|
| BLAKE2b-256 |
209f74f7f795fcbe6473613c9d56a84186359d7babae740426704080f96f7ac4
|