Views
No views yet
1app/listing_search.html # 9990 前端页面
2work/full_listing_server.py # 纯 listing CLIP + Kimi 组货服务
3work/full_clip_server.py # 旧版 image/listing CLIP 服务
4work/build_full_listing_index.py # listing 索引构建脚本
5models/open_clip_pytorch_model.bin # OpenCLIP 基础权重
6data/yunqi_clip_training/last_checkpoint.pt # 训练 checkpoint
7data/full_listing_index/products_listing.index # FAISS listing 索引
8data/full_listing_index/products_listing_embeddings.npy
9data/full_listing_index/products_listing_meta.json
10data/full_clip_index/products_full_prices.json
11config.example.json # 配置模板1git lfs install
2git clone https://huggingface.co/mikaassa/temu-for-bundle
3cd temu-for-bundle
4git lfs pullcopy config.example.json config.jsonconfig.json:1{
2 "kimi": {
3 "api_key": "你的 Kimi / Moonshot API Key",
4 "endpoint": "https://api.moonshot.cn/v1/chat/completions",
5 "model": "kimi-k2.6",
6 "temperature": 0.6,
7 "max_completion_tokens": 1200
8 }
9}config.json 已被 .gitignore 忽略,不要提交真实 API key。1$env:MOONSHOT_API_KEY="你的 key"
2$env:KIMI_ENDPOINT="https://api.moonshot.cn/v1/chat/completions"
3$env:KIMI_MODEL="kimi-k2.6"1cd temu-for-bundle
2python .\work\full_listing_server.pyhttp://127.0.0.1:9990/图片 -> Kimi 生成 10 个组货方向 -> 英文 listing prompt -> FAISS/CLIP 召回 -> 商品卡片git lfs pullconfig.json 提交到仓库data/ 和 models/,否则才回退到历史本地路径