Репозитории (Repositories)
Слой доступа к данным.
app.repositories.parsing.ParsingRepository
Source code in app/repositories/parsing.py
Functions
get_unmapped_categories(limit=100)
async
Возвращает категории, у которых еще нет привязки к внутренней категории Gifty.
Source code in app/repositories/parsing.py
update_category_mappings(mappings)
async
Массово обновляет привязки внешних категорий к внутренним. mappings: [{"external_name": "...", "internal_category_id": 123}, ...]
Source code in app/repositories/parsing.py
app.repositories.catalog.PostgresCatalogRepository
Bases: CatalogRepository
Source code in app/repositories/catalog.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | |
Functions
get_products_without_embeddings(model_version, limit=100)
async
Fetch products that do not have an embedding for the specified model_version.
We check if product_embeddings entry exists OR if content_hash doesn't match.
Source code in app/repositories/catalog.py
get_products_without_llm_score(limit=100)
async
Fetch products that don't have an LLM gift score yet.
Source code in app/repositories/catalog.py
mark_inactive_except(seen_ids)
async
Mark all products NOT in the provided set of gift_ids as inactive. Used for soft-delete during full sync.
Source code in app/repositories/catalog.py
save_embeddings(embeddings)
async
Upsert product embeddings. embeddings list should contain dicts matching ProductEmbedding model.
Source code in app/repositories/catalog.py
save_llm_scores(scores)
async
Update product rows with LLM scores and reasoning. scores list should contain dicts: {'gift_id': str, 'llm_gift_score': float, 'llm_gift_reasoning': str, ...}