File size: 636 Bytes
f3d18a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# CatLLM HuggingFace Space

## Deployment

Push to: https://huggingface.co/spaces/CatLLM/survey-classifier

## Authentication

HuggingFace token is stored in `.env` in this directory:
- Variable: `CATLLM_HF_TOKEN`
- Used for pushing to the CatLLM organization space

## Architecture

The HuggingFace app should always use the `catllm` Python package for core functions (classification, extraction, etc.). Do not duplicate catllm logic in the app—import and call `catllm.classify()` and `catllm.extract()` directly. If new functionality is needed (e.g., progress callbacks), add it to the catllm package first, then use it in the app.