├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── apps ├── HealthBot │ ├── Data │ │ ├── keto.csv │ │ └── vegan.csv │ ├── api.py │ └── app.py ├── Langchain_Streaming │ ├── app.py │ ├── db │ │ ├── 7f7f91bc-7f26-457b-b704-1f557d2cc717 │ │ │ ├── data_level0.bin │ │ │ ├── header.bin │ │ │ ├── length.bin │ │ │ └── link_lists.bin │ │ └── chroma.sqlite3 │ └── ingest.py └── ResearchPaperBot │ ├── Data │ ├── hyperCNN.pdf │ ├── large_scale_video_classification.pdf │ └── movinets.pdf │ ├── api.py │ └── app.py ├── evaluate_open_source ├── beyondllm_ollama.py ├── huggingface_mistral_evaluate.py └── requirements.txt └── ollama-langchain ├── app.py └── ingest.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: lucifertrj 4 | ko_fi: tarunrjain751 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome-RAG 2 | 3 | > For discussions and doubt-solving: Join Our Community 4 | 5 | 6 | 7 | 8 | ## Notebooks 9 | 10 | | UseCase | Frameworks/Library | Colab | 11 | |----------|:-------------:|------:| 12 | | Build RAG pipeline using Open Source Large Languages Models | Langchain & HuggingFace | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1cW01yqNxKqYHpU7uvi5UfUsNnbfxVw7R?usp=sharing) | 13 | | Memory + LCEL (Langchain Expression Language) | Langchain & HuggingFace | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1qkRs-ZLmc8ooxPJ3rgxp8IskEBpAkBp5?usp=sharing) | 14 | | LlamaIndex Quickstart Tutorial | LLamaIndex, Qdrant & HuggingFace | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/192aAkGqx9CkCX9pdr-YqRTojaU1yXTjs?usp=sharing) | 15 | | Chat with Website | GenAI Stack (deprecated) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1jVgLv4cuWnN4F4TPHSOW6U0pew9AfSww?usp=sharing) | 16 | | ChatBot like ChatGPT for multiple websites | Langchain | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1hKkF2ut1EqlV7e9PEp7UxdI-AQnMDrpz?usp=sharing) | 17 | | Observability and RAG 10 lines of Code | BeyondLLM | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/16dOWfx-rQpBCMhFe9iGZMeIUFSMe6Wfr?usp=sharing) | 18 | | Evaluate and Advanced RAG | BeyondLLM & Gemini | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1S1UL2uCahHkfJsurRA3f7dcR6IHjg-IM?usp=sharing) | 19 | | Mobile Recommendation System | Embedchain | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1PSZKLupj2YhhaCceGiFOzYZIkwZqjCMr?usp=sharing) | 20 | | Advanced RAG - Patent Document Retriever+ReRanking (LCEL) | Langchain & HuggingFace & Cohere | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1e7NlkmuHTu0xa34APXUhPRMMkxCWPYDD?usp=sharing) | 21 | | Chat with Scanned PDF (Hybrid Search) | Langchain & Unstructured | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1gzLAGdjEaKfWUzXwnP-1MhDihq7VK8hM?usp=sharing) | 22 | | Get started with LlamaIndex | LlamaIndex & HuggingFace | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1rpgek5Z3aH5-nnFUKTofEQzD1Axa7a0j?usp=sharing) | 23 | | Hybrid Search - Custom Retriever | LlamaIndex | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1Tk9tvX-MbSjiPqfdUakY0tfeGFM8BTG3?usp=sharing) | 24 | | Multimodal Example - Gemini | LlamaIndex | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1ulIdOnM4WWj1dtbyvz2RFGUz10ULWbFn?usp=sharing) | 25 | | Qdrant as a Vector Store | Langchain | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1y09JScY54PzbuNjJjHbz9Q5xbs1iEymL?usp=sharing) | 26 | | Multimodal RAG | LLamaIndex, Gemini, Qdrant | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1kPrvqHsCapm_uBgXW_muba2JsGTyyd66?usp=sharing) | 27 | | Superfast RAG using Langchain Streaming and Groq | Langchain and Groq | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/152P-7aZKMXp2VvDctbO_aHBqE9crtWiU?usp=sharing) | 28 | | Qdrant Hybrid Search + Memory | LlamaIndex | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/14SBWZDKWF822W9RWKWSraerW3wGUTlxa?usp=sharing) | 29 | | Agentic RAG with Memory | Phidata & Qdrant | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1p5KOZznfPt0Z74e9zVhtu4Bte9dCPNas?usp=sharing) | 30 | 31 | ## YouTube Videos 32 | 33 | - [Langchain Crash Course || Ultimate End-to-End Guide 2024](https://youtube.com/watch?v=TWmV95-dUgQ) 34 | - [LlamaIndex and Qdrant Quickstart || LlamaIndex Crash Course](https://www.youtube.com/watch?v=Ds2u4Plg1PA) 35 | - [Chatbot like ChatGPT: Chat with Multiple Website using Langchain](https://www.youtube.com/watch?v=vBBRwDca5Uo) 36 | - [RAG using Open Source LLMs](https://www.youtube.com/watch?v=dUkiQ_WI92c) 37 | - [Advanced RAG- Langchain and HuggingFace](https://www.youtube.com/watch?v=oUQHBNVVEH4) 38 | - [Hybrid Search Langchain](https://www.youtube.com/watch?v=kSVGpbqYLYs) 39 | - [LlamaIndex and HuggingFace- Ultimate Guide](https://www.youtube.com/watch?v=38JKFag3MOk) 40 | - [Getting started with Gemini with LlamaIndex](https://www.youtube.com/watch?v=jotnU2MRU3w) 41 | - [Faster Response with Streamlit and Langchain Streaming](https://www.youtube.com/watch?v=xw7t_LAqV7E) 42 | - [Qdrant and Langchain](https://www.youtube.com/watch?v=sxtnbOYAUps) 43 | - [Ollama and Langchain || Run LLMs locally](https://www.youtube.com/watch?v=vE_njT3GdY8) 44 | - [Langchain Streaming and Groq](https://www.youtube.com/watch?v=frMdOL8knqg) 45 | - [Evaluate RAG using Open Source LLMs](https://www.youtube.com/watch?v=qkl2e6VT1aE) 46 | 47 | ## Libraries 48 | 49 | - [BeyondLLM](https://github.com/aiplanethub/beyondllm) 50 | - [LangChain](https://pypi.org/project/langchain/) 51 | - [LlamaIndex](https://pypi.org/project/llama-index/) 52 | - [BeyondLLM](http://github.com/aiplanethub/beyondllm) 53 | - [MindSQL](https://pypi.org/project/mindsql/) 54 | - [GenAI Stack](https://github.com/aiplanethub/genai-stack/) 55 | - [haystack](https://pypi.org/project/haystack-ai/) 56 | - [Embedchain](https://docs.embedchain.ai/get-started/quickstart) 57 | - [llmware](https://pypi.org/project/llmware/) 58 | - [REALM](https://huggingface.co/docs/transformers/model_doc/realm) 59 | - [Verba](https://github.com/weaviate/Verba) 60 | 61 | ## Blogs 62 | 63 | - [RAG and Advanced articles - AI Planet Medium](https://medium.aiplanet.com/) 64 | - [A Comprehensive Guide to Implement HuggingFace Models Using Langchain](https://www.analyticsvidhya.com/blog/2023/12/implement-huggingface-models-using-langchain/) 65 | - [Multimodal Using Gemini and LlamaIndex](https://medium.com/@jaintarun7/multimodal-using-gemini-and-llamaindex-f622a190cc32) 66 | 67 | ## Live Sessions 68 | 69 | - [Qdrant 101- Qdrant as knowledge base](https://www.youtube.com/watch?v=Fwqp79mVfpQ) 70 | - [Milvus 101- Most advanced VectorDB](https://www.youtube.com/watch?v=ZABs7HcMPR0) 71 | 72 | ## Misc & Use Cases 73 | 74 | - [Evaluate RAG using Open Source LLM](https://github.com/lucifertrj/Awesome-RAG/tree/main/evaluate_open_source) 75 | - [Health Assistant Bot](https://github.com/lucifertrj/Awesome-RAG/tree/main/apps/HealthBot) 76 | - [Research Paper Bot](https://github.com/lucifertrj/Awesome-RAG/tree/main/apps/ResearchPaperBot) 77 | -------------------------------------------------------------------------------- /apps/HealthBot/Data/keto.csv: -------------------------------------------------------------------------------- 1 | Diet_type,Recipe_name,Cuisine_type,Protein(g),Carbs(g),Fat(g),Extraction_day,Extraction_time 2 | keto,Keto Fat Bombs,american,49.19,79.78,264.4,2022-10-16,17:58:03 3 | keto,Keto Egg Bites Recipe,american,92.86,16.19,86.51,2022-10-16,17:58:03 4 | keto,Keto Key Lime Mousse,american,27.49,23.58,177.43,2022-10-16,17:58:03 5 | keto,Keto Peanut Butter Squares,american,130.0,507.48,362.36,2022-10-16,17:58:03 6 | keto,"YOGURT RICE, REINVENTED THE KETO WAY!",mediterranean,21.23,34.78,27.74,2022-10-16,17:58:03 7 | keto,Keto Chicken Pot Pie Casserole Recipe,american,183.07,66.95,330.43,2022-10-16,17:58:03 8 | keto,Chocolate Mousse (Paleo! Keto!),french,20.23,126.01,153.36,2022-10-16,17:58:03 9 | keto,Low-Carb Cloud Bread,american,21.42,4.95,29.16,2022-10-16,17:58:03 10 | keto,Cheesy Chaffle Sandwiches with Avocado & Bacon,american,118.4,41.7,171.12,2022-10-16,17:58:03 11 | keto,SF/GF Orange & Clove Olive Oil Cake (Low-Carb/Keto Friendly),british,74.1,68.95,411.47,2022-10-16,17:58:03 12 | keto,Zucchini Noodles with Spicy Meatballs Recipe,asian,57.79,39.1,86.53,2022-10-16,17:58:03 13 | keto,Cauliflower Rice Recipe,south east asian,21.07,60.61,42.28,2022-10-16,17:58:03 14 | keto,Pesto Shrimp Skewers,italian,17.98,12.66,19.42,2022-10-16,17:58:03 15 | keto,Keto Everything Bagel Chicken,american,214.84,17.29,140.76,2022-10-16,17:58:10 16 | keto,Keto Chocolate Cake,american,145.06,455.76,576.59,2022-10-16,17:58:10 17 | keto,Celery Leaf & Fennel Poached Salmon,nordic,32.41,17.25,24.49,2022-10-16,17:58:10 18 | keto,Keto Taco Casserole,italian,264.06,32.98,358.49,2022-10-16,17:58:10 19 | keto,Keto Burger Stuffed Onions,american,104.16,50.23,172.2,2022-10-16,17:58:10 20 | keto,Keto Tuna Melt Bites,american,115.3,11.02,160.48,2022-10-16,17:58:10 21 | keto,Keto Dogs,american,175.33,76.24,384.92,2022-10-16,17:58:10 22 | keto,Keto Taquitos,mexican,166.99,30.53,217.99,2022-10-16,17:58:10 23 | keto,Keto Meatballs,american,125.59,78.78,147.26,2022-10-16,17:58:10 24 | keto,Keto Crunchwrap,american,205.38,54.38,343.99,2022-10-16,17:58:10 25 | keto,Keto Chili,american,184.02,64.82,222.02,2022-10-16,17:58:16 26 | keto,Keto Tortilla Chips,american,75.52,29.82,106.27,2022-10-16,17:58:16 27 | keto,Keto Chocolate Truffles,american,22.41,113.66,110.0,2022-10-16,17:58:16 28 | keto,Keto Bacon Sushi,japanese,35.01,42.21,137.85,2022-10-16,17:58:16 29 | keto,Keto Egg Salad,american,89.52,26.35,153.53,2022-10-16,17:58:16 30 | keto,Keto Sausage Puffs,american,133.15,30.15,278.75,2022-10-16,17:58:16 31 | keto,Rosemary Keto Crackers,american,91.17,88.91,176.7,2022-10-16,17:58:16 32 | keto,Keto Garlic Bread,american,50.71,24.36,81.73,2022-10-16,17:58:16 33 | keto,Keto Breaded Shrimp,mediterranean,152.34,12.96,142.33,2022-10-16,17:58:16 34 | keto,Keto Cloud Bread,american,27.49,12.15,39.9,2022-10-16,17:58:16 35 | keto,Keto Stuffed Peppers,american,163.23,67.97,218.55,2022-10-16,17:58:16 36 | keto,Keto Taco Cups,mexican,137.32,27.53,192.25,2022-10-16,17:58:16 37 | keto,Keto Beef Stew,french,231.53,51.85,78.22,2022-10-16,17:58:16 38 | keto,Keto Stuffed Cabbage,mediterranean,145.97,45.22,218.91,2022-10-16,17:58:16 39 | keto,Keto Chicken Potpie,american,238.42,116.44,365.53,2022-10-16,17:58:16 40 | keto,Zucchini Cheesy Bread,mediterranean,121.69,76.34,105.89,2022-10-16,17:58:16 41 | keto,Keto Shepherd's Pie,american,143.91,63.05,224.7,2022-10-16,17:58:16 42 | keto,Keto Burger Fat Bombs,american,94.75,12.94,142.06,2022-10-16,17:58:23 43 | keto,Keto Garlic Butter Salmon,nordic,107.18,4.77,116.69,2022-10-16,17:58:23 44 | keto,Best-Ever Keto Tortillas,mexican,35.92,44.49,64.82,2022-10-16,17:58:23 45 | keto,Keto Chicken Parm Pizza,italian,132.9,13.32,79.22,2022-10-16,17:58:23 46 | keto,Keto Corned Beef & Cabbage,eastern europe,244.44,56.91,286.48,2022-10-16,17:58:23 47 | keto,Best-Ever Keto Quesadillas,mexican,275.81,42.37,348.36,2022-10-16,17:58:23 48 | keto,Keto Sugar-Free Cheesecake,american,93.56,114.96,479.12,2022-10-16,17:58:23 49 | keto,Spaghetti Squash Cheesy Bread,italian,117.11,83.6,119.8,2022-10-16,17:58:23 50 | keto,Keto Broccoli Cheddar Soup,american,68.77,52.09,150.23,2022-10-16,17:58:23 51 | keto,Bacon-Wrapped Keto Meatloaf,american,234.84,39.35,330.09,2022-10-16,17:58:23 52 | keto,Cauliflower Taco Bake,italian,280.65,50.7,450.6,2022-10-16,17:58:23 53 | keto,Keto Bacon and Cheese Biscuits,american,126.35,51.37,283.52,2022-10-16,17:58:23 54 | keto,Meatball Zucchini Boats,italian,153.1,74.7,177.63,2022-10-16,17:58:23 55 | keto,Keto Creamy Cheddar Bacon Chicken,french,319.46,31.24,294.22,2022-10-16,17:58:23 56 | keto,Keto Peanut Butter Cup Fat Bombs,british,69.74,426.21,264.2,2022-10-16,17:58:23 57 | keto,Keto Bolognese,italian,137.31,96.81,149.41,2022-10-16,17:58:30 58 | keto,Keto Jalapeño Popper Stuffed Burgers,french,134.96,326.88,162.47,2022-10-16,17:58:30 59 | keto,Custard Keto Donuts,american,37.15,92.23,182.83,2022-10-16,17:58:30 60 | keto,Keto Ketchup Recipe,italian,8.33,42.04,1.01,2022-10-16,17:58:30 61 | keto,"Blueberry Donut Holes (Keto, Paleo, Vegan)",american,41.52,121.43,114.45,2022-10-16,17:58:30 62 | keto,Keto Broccoli Casserole,american,90.44,45.17,347.03,2022-10-16,17:58:30 63 | keto,Keto Salad Dressing,american,14.04,2.67,29.15,2022-10-16,17:58:30 64 | keto,Keto Chocolate Chip Toffee,british,10.45,258.87,148.46,2022-10-16,17:58:30 65 | keto,Chocolate Peanut Butter Fat Bombs (Keto) recipes,french,31.3,84.19,177.1,2022-10-16,17:58:30 66 | keto,(Salted Caramel!) Pecan Keto Turtle Candy,american,16.65,62.95,111.16,2022-10-16,17:58:30 67 | keto,Keto Mixed Green Spring Salad recipes,south east asian,18.26,7.44,61.26,2022-10-16,17:58:30 68 | keto,Vegetarian Keto Burgers recipes,american,34.76,54.1,62.81,2022-10-16,17:58:30 69 | keto,Keto Crab Dip,american,47.21,7.99,89.28,2022-10-16,17:58:30 70 | keto,Keto Vegan Peanut Butter Eggs | Blog,american,150.29,471.7,382.7,2022-10-16,17:58:30 71 | keto,Keto Salmon Poke Bowl,nordic,52.64,22.77,84.28,2022-10-16,17:58:36 72 | keto,Keto Almond Butter Fudge Cups,british,41.17,103.31,317.19,2022-10-16,17:58:36 73 | keto,Keto Crack Coffee,american,1.8,17.86,24.88,2022-10-16,17:58:36 74 | keto,Juicy Keto Oven Baked Ribs Recipe,american,413.71,62.77,380.04,2022-10-16,17:58:36 75 | keto,Keto Crepes recipes,french,39.16,37.06,57.48,2022-10-16,17:58:36 76 | keto,Keto Pepper Steak,american,54.18,23.45,24.95,2022-10-16,17:58:36 77 | keto,Air Fried Keto Thai Chili Cauliflower Bites,american,23.02,51.98,59.55,2022-10-16,17:58:36 78 | keto,Keto Chocolate Cake recipes,american,42.08,384.28,102.22,2022-10-16,17:58:36 79 | keto,Easy Keto Berry Side Salad,american,13.07,14.86,21.18,2022-10-16,17:58:36 80 | keto,Healthy Keto Shamrock Shake,american,9.02,51.03,48.16,2022-10-16,17:58:36 81 | keto,Classic Keto Eggs Benedict Recipe,french,80.04,69.54,216.85,2022-10-16,17:58:36 82 | keto,Pulled Pork Keto Stuffed Mushrooms,american,66.88,54.19,99.83,2022-10-16,17:58:36 83 | keto,Keto Cheddar Bay Biscuits and Bacon Butter,american,118.99,49.71,352.89,2022-10-16,17:58:36 84 | keto,Keto BBQ Liver Meatballs,american,101.05,132.42,112.01,2022-10-16,17:58:36 85 | keto,Coffee Rubbed Steak (Paleo + Keto),american,93.25,17.35,37.13,2022-10-16,17:58:43 86 | keto,Keto Collagen Chocolate Peanut Butter Mousse,american,48.19,119.65,234.69,2022-10-16,17:58:43 87 | keto,Keto Philly Cheesesteak Pizza,italian,229.51,354.47,245.24,2022-10-16,17:58:43 88 | keto,Keto Meatballs alla Parmigiana,italian,208.71,39.45,232.99,2022-10-16,17:58:43 89 | keto,Keto Loaded Egg Salad,american,120.99,22.48,258.43,2022-10-16,17:58:43 90 | keto,"Turmeric Chicken Skillet (Paleo, Whole30 + Keto)",mediterranean,168.36,218.61,79.87,2022-10-16,17:58:43 91 | keto,"Keto and Gluten-Free Spinach, Feta, and Tomato Wraps for Two",mediterranean,33.52,26.78,42.5,2022-10-16,17:58:43 92 | keto,"One Pan Mediterranean Chicken Skillet (Paleo, Whole30 + Keto)",mediterranean,260.71,74.84,46.11,2022-10-16,17:58:43 93 | keto,"Low Carb Pumpkin French Toast Bake (Keto, Grain Free, Sugar Free)",french,60.86,237.65,154.36,2022-10-16,17:58:43 94 | keto,"Blueberry cream cheese low-carb, Keto filling",american,14.57,31.47,78.15,2022-10-16,17:58:43 95 | keto,Sara Louise's Keto Tuna Melt On A Log,american,180.96,46.92,145.47,2022-10-16,17:58:43 96 | keto,Taco Stuffed Bell Peppers (Whole30 + Keto),mexican,112.86,365.36,96.42,2022-10-16,17:58:43 97 | keto,Keto Hash Browns with Grated Radishes,american,15.06,43.85,71.71,2022-10-16,17:58:43 98 | keto,Keto Chicken and Broccoli Alfredo Bake,italian,218.7,94.24,140.6,2022-10-16,17:58:43 99 | keto,Keto Stuffed Chicken Breast Recipe,mediterranean,85.75,31.59,170.38,2022-10-16,17:58:43 100 | keto,Creamy Keto Meatballs and Slaw,american,256.2,79.15,384.89,2022-10-16,17:58:43 101 | keto,"Low carb, keto friendly buffalo chicken meatballs",american,115.64,9.41,95.36,2022-10-16,17:58:49 102 | keto,Keto Double Chocolate Chip Mug Cake,american,14.01,39.76,35.37,2022-10-16,17:58:49 103 | keto,Classic Deviled Eggs,french,76.19,8.31,153.07,2022-10-16,17:58:49 104 | keto,Sugar Free Maple Almond Fudge Fat Bomb,american,26.69,36.97,142.62,2022-10-16,17:58:49 105 | keto,Raspberry Chocolate Chip Magic Squares,american,21.98,189.39,186.6,2022-10-16,17:58:49 106 | keto,Mango Popsicles,american,27.85,88.59,53.01,2022-10-16,17:58:49 107 | keto,Thai River Noodles with Chicken (Pad See Ew),south east asian,262.88,767.83,35.73,2022-10-16,17:58:49 108 | keto,Spicy Pulled Pork Lettuce Wraps recipes,american,117.2,9.28,73.87,2022-10-16,17:58:49 109 | keto,Sambal Oelek,caribbean,1.87,11.05,0.44,2022-10-16,17:58:49 110 | keto,Titanic Stuffed Marrow Farci,italian,34.09,75.25,73.94,2022-10-16,17:58:49 111 | keto,Keto ciabatta with keto toppings,italian,67.62,30.0,143.76,2022-10-16,17:58:49 112 | keto,Low Carb Pasta a la Carbonara recipes,italian,49.4,14.58,88.64,2022-10-16,17:58:49 113 | keto,Low Carb Pepperoni Pizza Meatballs (Gluten,italian,146.41,34.31,207.44,2022-10-16,17:58:49 114 | keto,Butternut Squash Mac and Cheese,american,116.54,100.72,190.88,2022-10-16,17:58:49 115 | keto,Keto pizza,italian,28.1,24.98,20.21,2022-10-16,17:58:56 116 | keto,Keto Mousse,french,25.2,31.84,205.74,2022-10-16,17:58:56 117 | keto,Keto Cheesecake,american,121.6,142.87,563.86,2022-10-16,17:58:56 118 | keto,Keto Pizza,italian,91.26,49.34,162.22,2022-10-16,17:58:56 119 | keto,Scalloped Cabbage,french,73.91,74.89,139.84,2022-10-16,17:58:56 120 | keto,Cucumber Radish Salad,south american,4.39,21.65,54.75,2022-10-16,17:58:56 121 | keto,Keto Tortillas,mexican,33.86,39.85,65.7,2022-10-16,17:58:56 122 | keto,Garlic Shrimp with Zucchini Noodles,asian,67.66,212.8,40.87,2022-10-16,17:58:56 123 | keto,Keto Flan,mediterranean,26.5,17.99,121.35,2022-10-16,17:58:56 124 | keto,Keto Flappers,american,54.66,39.12,80.76,2022-10-16,17:58:56 125 | keto,Paleo Vegan Chocolate Chia Seed Pudding,british,13.07,31.71,15.51,2022-10-16,17:58:56 126 | keto,Low-Carb Roasted Pumpkin Spice Pecans,american,18.5,33.1,170.41,2022-10-16,17:58:56 127 | keto,Keto Lasagna,italian,215.67,55.1,246.82,2022-10-16,17:58:56 128 | keto,Keto Meatloaf,american,152.26,15.98,131.28,2022-10-16,17:58:56 129 | keto,Keto Roti,american,10.49,19.64,6.35,2022-10-16,17:58:56 130 | keto,Keto Onigiri,nordic,51.46,29.37,68.14,2022-10-16,17:59:03 131 | keto,Keto Vinaigrette,french,1.72,7.79,162.12,2022-10-16,17:59:03 132 | keto,Keto Chili,american,226.36,100.88,353.17,2022-10-16,17:59:03 133 | keto,Keto chili,american,155.73,45.43,34.82,2022-10-16,17:59:03 134 | keto,Keto Meatloaf,american,220.66,106.85,330.59,2022-10-16,17:59:03 135 | keto,Keto Waffles,mediterranean,33.53,25.78,75.41,2022-10-16,17:59:03 136 | keto,Keto Hashbrowns,american,31.03,15.4,33.51,2022-10-16,17:59:03 137 | keto,Keto Gnocchi,italian,12.28,8.66,10.59,2022-10-16,17:59:03 138 | keto,Keto Waffles,mediterranean,34.05,25.78,127.4,2022-10-16,17:59:03 139 | keto,Keto Moussaka,mediterranean,145.21,116.99,297.39,2022-10-16,17:59:03 140 | keto,Instant Pot Beef and Broccoli,french,155.16,73.22,110.52,2022-10-16,17:59:03 141 | keto,Keto Chili,american,221.88,120.27,56.6,2022-10-16,17:59:03 142 | keto,Keto bread from Keto connect recipe,american,162.14,921.24,86.36,2022-10-16,17:59:03 143 | keto,Keto Bagels,american,53.48,39.05,87.62,2022-10-16,17:59:03 144 | keto,Keto Quesadillas,mexican,97.96,95.68,150.46,2022-10-16,17:59:03 145 | keto,Keto Crepes,mediterranean,65.09,22.34,207.96,2022-10-16,17:59:10 146 | keto,Keto Bagels,eastern europe,111.83,49.08,180.49,2022-10-16,17:59:10 147 | keto,Chocolate Lava Cakes,american,18.22,50.69,80.62,2022-10-16,17:59:10 148 | keto,Keto Steak,italian,90.75,0.94,87.86,2022-10-16,17:59:10 149 | keto,Keto Meatballs,american,148.81,15.9,58.97,2022-10-16,17:59:10 150 | keto,Keto Lasagna,italian,170.08,34.75,109.11,2022-10-16,17:59:10 151 | keto,Keto Waffles,central europe,24.18,19.04,141.86,2022-10-16,17:59:10 152 | keto,Keto~Mayo,mediterranean,7.82,1.24,224.41,2022-10-16,17:59:10 153 | keto,Keto Pizza,italian,135.0,67.2,173.37,2022-10-16,17:59:10 154 | keto,Keto Bread,american,8.06,7.16,45.79,2022-10-16,17:59:10 155 | keto,Keto Chili,american,192.56,71.15,257.12,2022-10-16,17:59:10 156 | keto,Keto Chili,american,168.47,49.71,211.85,2022-10-16,17:59:10 157 | keto,Keto Frittata,italian,95.83,26.91,120.55,2022-10-16,17:59:16 158 | keto,Keto Chili,american,320.69,157.71,399.98,2022-10-16,17:59:16 159 | keto,Fat Burning Deviled Eggs,mediterranean,33.09,13.35,54.99,2022-10-16,17:59:16 160 | keto,Spooky Halloween Blackberry Jelly Bats,american,59.59,23.29,1.15,2022-10-16,17:59:16 161 | keto,Keto Sausage Balls,american,162.23,43.18,273.12,2022-10-16,17:59:16 162 | keto,Cauliflower Chicken Fried Rice,chinese,136.76,50.43,89.11,2022-10-16,17:59:16 163 | keto,Keto Cauliflower Bake,american,65.77,36.13,180.24,2022-10-16,17:59:23 164 | keto,Keto Creme Brulee,french,18.35,20.2,190.42,2022-10-16,17:59:23 165 | keto,Keto Chia Pudding,british,34.45,38.45,18.68,2022-10-16,17:59:23 166 | keto,Cabbage~Brussel Sprout Slaw,central europe,3.18,23.75,94.74,2022-10-16,17:59:23 167 | keto,Keto Condensed Milk,american,3.48,11.42,141.73,2022-10-16,17:59:23 168 | keto,Keto hamburger hash,american,159.34,26.84,65.4,2022-10-16,17:59:23 169 | keto,Keto Whipped Cream,french,4.88,18.88,88.06,2022-10-16,17:59:23 170 | keto,Keto Margaritas recipes,world,0.47,7.08,0.13,2022-10-16,17:59:23 171 | keto,Keto Garlic Chicken,american,278.5,37.38,202.14,2022-10-16,17:59:23 172 | keto,Keto Nacho Crisps,mexican,40.88,3.16,57.38,2022-10-16,17:59:23 173 | keto,Keto Pumpkin Bake,american,43.45,48.79,98.11,2022-10-16,17:59:23 174 | keto,Chocolate Truffles,french,97.43,199.83,317.72,2022-10-16,17:59:23 175 | keto,Keto bounty balls,american,5.95,71.26,101.43,2022-10-16,17:59:23 176 | keto,Keto Deviled Eggs,american,48.84,3.52,60.07,2022-10-16,17:59:23 177 | keto,Keto Cheesecake recipes,british,63.55,32.56,264.45,2022-10-16,17:59:29 178 | keto,Keto Beef Enchiladas,american,309.41,42.76,360.05,2022-10-16,17:59:29 179 | keto,Keto Coconut Shrimp,mediterranean,94.21,63.27,198.81,2022-10-16,17:59:29 180 | keto,Keto Lemon Bars,american,43.31,37.35,150.99,2022-10-16,17:59:29 181 | keto,Keto Zuppa Toscana,italian,129.91,60.36,288.78,2022-10-16,17:59:29 182 | keto,Keto Lava Cake,italian,7.98,10.31,11.61,2022-10-16,17:59:29 183 | keto,Keto Chicken Parmesan,american,251.06,28.09,173.88,2022-10-16,17:59:29 184 | keto,Keto Deviled Eggs,italian,38.0,8.02,51.08,2022-10-16,17:59:29 185 | keto,Keto Noodles Recipe,asian,79.74,13.36,115.28,2022-10-16,17:59:29 186 | keto,Cajun Keto Crackers,american,114.88,28.39,160.4,2022-10-16,17:59:29 187 | keto,Keto Pumpkin Soup,american,29.99,78.79,135.78,2022-10-16,17:59:29 188 | keto,Keto Pizza Crust,italian,63.02,33.96,51.77,2022-10-16,17:59:29 189 | keto,Keto Peppermint Mocha,american,2.07,4.72,1.19,2022-10-16,17:59:29 190 | keto,Keto Chicken Salad,mexican,56.25,43.55,149.58,2022-10-16,17:59:29 191 | keto,Lemonade Chicken,american,373.62,18.7,43.71,2022-10-16,17:59:29 192 | keto,Keto Vanilla Pudding,british,15.8,23.68,112.3,2022-10-16,17:59:36 193 | keto,Keto Cheesy Eggs,american,43.94,3.04,96.5,2022-10-16,17:59:36 194 | keto,Keto Crescent Dogs,american,166.49,34.93,267.99,2022-10-16,17:59:36 195 | keto,Keto Egg Salad,american,21.8,2.06,17.74,2022-10-16,17:59:36 196 | keto,Keto BLT Bites,american,62.15,43.66,73.72,2022-10-16,17:59:36 197 | keto,Keto Cheese Meatballs,american,118.08,6.55,131.91,2022-10-16,17:59:36 198 | keto,Keto Avocado Fries,american,93.17,66.17,168.71,2022-10-16,17:59:36 199 | keto,Keto Sausage Balls,eastern europe,119.73,14.14,193.29,2022-10-16,17:59:36 200 | keto,Keto Pumpkin Bread,american,28.78,31.33,113.55,2022-10-16,17:59:36 201 | keto,Keto Sriracha Mayo,south east asian,0.22,3.83,178.0,2022-10-16,17:59:36 202 | keto,Keto Avocado Dip,caribbean,11.03,59.95,59.43,2022-10-16,17:59:36 203 | keto,Keto Orange Creamsicles,american,4.88,48.22,88.06,2022-10-16,17:59:36 204 | keto,Keto Crustless Quiche,french,145.52,23.95,286.14,2022-10-16,17:59:43 205 | keto,Coconut Macaroons,french,11.76,75.07,62.84,2022-10-16,17:59:43 206 | keto,Keto Stuffed Artichokes,mediterranean,34.57,40.75,114.23,2022-10-16,17:59:43 207 | keto,Keto Pie Crust,american,57.68,96.27,155.31,2022-10-16,17:59:43 208 | keto,Keto Cabbage Salad,middle eastern,6.05,13.76,25.26,2022-10-16,17:59:43 209 | keto,Keto Waffles recipes,mediterranean,34.01,71.95,127.4,2022-10-16,17:59:43 210 | keto,Keto Pizza Chicken,italian,312.74,44.29,307.03,2022-10-16,17:59:43 211 | keto,Keto Pizza Chicken,italian,300.94,28.82,128.27,2022-10-16,17:59:43 212 | keto,Keto Pink Lemonade,caribbean,5.98,51.45,1.69,2022-10-16,17:59:43 213 | keto,Keto Shrimp Scampi,south american,133.83,331.82,58.61,2022-10-16,17:59:43 214 | keto,Keto Panna Cotta,italian,38.73,121.28,222.83,2022-10-16,17:59:43 215 | keto,Keto Chocolate Shake,american,21.1,38.16,195.52,2022-10-16,17:59:43 216 | keto,Keto Eggnog recipes,american,39.75,76.44,243.62,2022-10-16,17:59:43 217 | keto,Keto Chicken Parmesan,french,78.07,12.2,68.31,2022-10-16,17:59:43 218 | keto,Nutty Keto Chcocolate,american,13.45,27.01,180.93,2022-10-16,17:59:43 219 | keto,Keto Fried Chicken,american,144.72,30.81,202.39,2022-10-16,17:59:43 220 | keto,Keto Fried Chicken,american,89.93,24.98,112.01,2022-10-16,17:59:50 221 | keto,Keto Jalapeño Poppers,french,31.03,11.72,96.54,2022-10-16,17:59:50 222 | keto,Keto Chocolate Mousse,french,8.77,36.14,99.24,2022-10-16,17:59:50 223 | keto,"Keto Chocolate Cashew Cream Bites - Keto, Paleo, Vegan",american,54.58,120.22,210.31,2022-10-16,17:59:50 224 | keto,Keto Cauliflower Gratin,french,31.08,31.9,61.99,2022-10-16,17:59:50 225 | keto,Keto Pumpkin Pie,american,35.05,55.79,79.23,2022-10-16,17:59:50 226 | keto,Keto Parmesan Meatballs,italian,236.97,17.45,244.23,2022-10-16,17:59:50 227 | keto,Keto Honey Mustard,american,0.62,3.08,89.16,2022-10-16,17:59:50 228 | keto,Keto Antipasto Skewers,italian,165.42,8.11,276.26,2022-10-16,17:59:50 229 | keto,Deviled Eggs (Keto),mediterranean,101.59,15.32,104.48,2022-10-16,17:59:50 230 | keto,Keto Potato Salad,american,20.46,83.52,62.05,2022-10-16,17:59:50 231 | keto,Keto Chocolate Mousse,french,11.18,24.49,91.01,2022-10-16,17:59:50 232 | keto,Keto Fat Bombs,french,18.54,384.27,41.57,2022-10-16,17:59:50 233 | keto,Keto Mashed Cauliflower,american,32.19,75.85,117.07,2022-10-16,17:59:50 234 | keto,Keto Fudge recipes,american,5.36,44.76,233.0,2022-10-16,17:59:56 235 | keto,Keto Pizza recipes,italian,87.58,41.23,149.7,2022-10-16,17:59:56 236 | keto,Keto almond bread,american,12.67,8.04,30.28,2022-10-16,17:59:56 237 | keto,Keto Jalapeno Poppers,mexican,35.31,14.29,125.68,2022-10-16,17:59:56 238 | keto,Keto Pot Pie,american,233.05,384.96,231.92,2022-10-16,17:59:56 239 | keto,Keto Chicken Cutlets,french,237.83,41.18,181.19,2022-10-16,17:59:56 240 | keto,Keto Casserole recipes,italian,207.98,31.56,355.12,2022-10-16,17:59:56 241 | keto,Keto Beef Brisket,british,325.11,16.4,431.93,2022-10-16,17:59:56 242 | keto,Keto Shrimp Alfredo,italian,161.94,48.16,207.62,2022-10-16,17:59:56 243 | keto,Keto Chicken Strips,american,163.47,4.71,176.78,2022-10-16,17:59:56 244 | keto,Keto Pumpkin Chili,american,215.81,178.43,129.92,2022-10-16,17:59:56 245 | keto,Keto Pizza with Pepperoni,italian,63.06,32.31,79.06,2022-10-16,17:59:56 246 | keto,Almond Keto Hummus,mediterranean,36.9,47.5,106.68,2022-10-16,17:59:56 247 | keto,Keto Butter Burgers,american,91.8,1.77,121.45,2022-10-16,17:59:56 248 | keto,Keto fried fish,south east asian,80.16,14.58,79.57,2022-10-16,17:59:56 249 | keto,Fish Nuggets (Keto),mediterranean,121.07,3.12,72.49,2022-10-16,18:00:03 250 | keto,Keto Fried Fish,south east asian,110.93,20.28,53.53,2022-10-16,18:00:03 251 | keto,Keto Teriyaki Beef,japanese,101.88,5.57,27.28,2022-10-16,18:00:03 252 | keto,Keto Taco Salad,mexican,159.84,62.11,241.17,2022-10-16,18:00:03 253 | keto,Keto Sushi recipes,japanese,50.73,50.43,80.83,2022-10-16,18:00:03 254 | keto,Keto Okonomi Sauce,world,5.59,26.02,9.62,2022-10-16,18:00:03 255 | keto,Keto Homemade Mayo,american,5.45,2.27,225.06,2022-10-16,18:00:03 256 | keto,Keto taco shells,mexican,21.47,22.41,28.4,2022-10-16,18:00:03 257 | keto,Crustless Keto Cheesecake,american,79.51,105.99,423.9,2022-10-16,18:00:03 258 | keto,Keto Avocado Dessert,american,5.27,21.55,51.49,2022-10-16,18:00:03 259 | keto,Keto Zuppa Toscana,italian,140.0,105.13,341.34,2022-10-16,18:00:10 260 | keto,Keto Chicken Taquitos,mexican,95.91,23.38,106.85,2022-10-16,18:00:10 261 | keto,Spooky Halloween Spiced Carrot Jellies,american,49.71,27.03,0.59,2022-10-16,18:00:10 262 | keto,Keto Chicken Piccata,french,194.27,13.27,160.06,2022-10-16,18:00:10 263 | keto,Keto Caesar Salad,american,25.94,15.13,37.12,2022-10-16,18:00:10 264 | keto,Keto Rye Bagel,eastern europe,119.08,43.44,167.82,2022-10-16,18:00:10 265 | keto,Keto Mug Lasagne,italian,49.11,11.62,73.96,2022-10-16,18:00:10 266 | keto,Keto Pizza Dip,italian,70.78,33.6,119.7,2022-10-16,18:00:10 267 | keto,EZ Keto Pizza,italian,127.5,25.61,213.62,2022-10-16,18:00:10 268 | keto,Tuscan Keto Chicken,italian,271.64,29.01,169.33,2022-10-16,18:00:10 269 | keto,Keto Pimento Cheese,south american,69.63,21.08,199.18,2022-10-16,18:00:10 270 | keto,Keto Chocolate Cake,american,78.03,256.83,380.19,2022-10-16,18:00:10 271 | keto,Keto Butter Chicken,american,157.6,55.84,114.83,2022-10-16,18:00:10 272 | keto,Keto Waldorf Salad,american,6.74,27.28,63.62,2022-10-16,18:00:10 273 | keto,Keto Cheddar Biscuits,american,68.93,173.85,46.0,2022-10-16,18:00:16 274 | keto,Keto Salad recipes,american,47.16,30.61,65.69,2022-10-16,18:00:16 275 | keto,Keto Tuna Salad,american,169.41,24.22,90.26,2022-10-16,18:00:16 276 | keto,Ultimate Keto Hamburgers,american,60.89,64.68,115.62,2022-10-16,18:00:16 277 | keto,Keto Krab Kakes,american,95.15,26.93,93.95,2022-10-16,18:00:16 278 | keto,Dublin Coddle | Keto,american,108.42,71.48,203.66,2022-10-16,18:00:16 279 | keto,Keto Sausage Balls,american,211.1,620.21,208.52,2022-10-16,18:00:16 280 | keto,Greek Keftedes (keto),mediterranean,104.13,27.04,94.8,2022-10-16,18:00:16 281 | keto,Keto Tuna Salad,american,85.02,10.29,113.08,2022-10-16,18:00:16 282 | keto,Keto Za'atar Buns,mediterranean,43.81,28.82,124.03,2022-10-16,18:00:16 283 | keto,Instant Pot Chicken Soup with Mushrooms and Kale,french,271.76,95.75,240.31,2022-10-16,18:00:16 284 | keto,Paleo/Keto Pizza,italian,78.8,24.95,119.75,2022-10-16,18:00:16 285 | keto,Keto Taco Casserole,italian,141.68,33.58,139.03,2022-10-16,18:00:16 286 | keto,Easy Keto Meatballs,american,274.94,18.12,323.69,2022-10-16,18:00:16 287 | keto,Low Carb Meatballs alla Parmigiana,italian,184.22,36.65,205.05,2022-10-16,18:00:16 288 | keto,Keto Chicken Parmesan,italian,195.76,30.86,148.65,2022-10-16,18:00:23 289 | keto,Keto Beef Wellington,british,53.77,11.15,86.13,2022-10-16,18:00:23 290 | keto,Keto Pumpkin Soup,american,38.95,116.24,54.05,2022-10-16,18:00:23 291 | keto,Keto Salmon Nuggets,nordic,200.55,58.29,132.99,2022-10-16,18:00:23 292 | keto,Keto Mozzarella Sticks,italian,75.05,18.11,66.24,2022-10-16,18:00:23 293 | keto,Keto Raspberry Fudge,american,28.45,40.64,302.77,2022-10-16,18:00:23 294 | keto,Avocado Keto Hummus,mediterranean,19.39,46.51,77.36,2022-10-16,18:00:23 295 | keto,Keto Meatloaf Recipe,american,134.58,37.58,265.63,2022-10-16,18:00:23 296 | keto,Keto Avocado Salsa,mexican,10.92,50.64,87.58,2022-10-16,18:00:23 297 | keto,Keto Zucchini Lasagna,italian,319.91,94.76,360.94,2022-10-16,18:00:23 298 | keto,Keto Apple Crisp,american,25.26,64.02,110.89,2022-10-16,18:00:23 299 | keto,Keto Blueberry Biscuits,american,89.7,208.07,367.33,2022-10-16,18:00:23 300 | keto,Sara Louise's Keto Keto Southern Chicken Fried Steak,american,418.37,46.63,434.84,2022-10-16,18:00:23 301 | keto,Keto Chicken Divan,american,248.66,51.4,246.64,2022-10-16,18:00:23 302 | keto,Keto Lobster Cakes,american,98.58,9.85,43.58,2022-10-16,18:00:23 303 | keto,Keto Steak and Eggs,american,40.01,5.81,47.38,2022-10-16,18:00:23 304 | keto,2 Ingredient Keto Pasta,italian,58.83,7.03,68.54,2022-10-16,18:00:30 305 | keto,Keto Cauliflower Tabbouleh,middle eastern,17.9,50.93,90.54,2022-10-16,18:00:30 306 | keto,Keto Caramel Cake,american,123.47,527.23,258.11,2022-10-16,18:00:30 307 | keto,Keto Okonomiyaki recipes,french,21.37,23.35,100.43,2022-10-16,18:00:30 308 | keto,Keto Chili recipes,american,156.97,69.74,236.85,2022-10-16,18:00:30 309 | keto,Keto NY Cheesecake,american,67.15,42.75,314.17,2022-10-16,18:00:30 310 | keto,Keto Stuffed Peppers,american,158.77,60.31,175.56,2022-10-16,18:00:30 311 | keto,Creamy Keto Carbonara,italian,45.83,80.89,92.68,2022-10-16,18:00:30 312 | keto,Keto Cuban Sandwich,caribbean,143.61,59.18,229.7,2022-10-16,18:00:30 313 | keto,Homemade Keto MoonPies,american,67.75,296.29,248.01,2022-10-16,18:00:30 314 | keto,Keto Marinated Cheese,american,63.28,24.95,253.05,2022-10-16,18:00:30 315 | keto,Zucchini Breadsticks,italian,83.48,19.97,89.71,2022-10-16,18:00:30 316 | keto,Keto taco skillet,mexican,249.07,34.5,118.19,2022-10-16,18:00:37 317 | keto,Keto Chicken Fritters,american,133.95,21.22,163.38,2022-10-16,18:00:37 318 | keto,Keto Italian Grilled Fish | Low-Carb Keto Fish Recipe,italian,201.26,1.92,71.41,2022-10-16,18:00:37 319 | keto,Keto Fish Pie,american,136.85,84.33,269.44,2022-10-16,18:00:37 320 | keto,Keto Mug Cake,american,19.73,87.96,30.93,2022-10-16,18:00:37 321 | keto,Keto Banana Pudding,british,49.05,187.27,345.3,2022-10-16,18:00:37 322 | keto,Keto Chicken and Peppers,british,91.62,86.47,117.3,2022-10-16,18:00:37 323 | keto,Keto Pizza with Pepperoni,italian,40.27,51.97,48.7,2022-10-16,18:00:37 324 | keto,Keto Chocolate-Coconut Mousse,french,15.39,9.46,16.57,2022-10-16,18:00:37 325 | keto,Keto Cocoa Mug Cake,american,22.33,17.21,57.84,2022-10-16,18:00:37 326 | keto,Keto 90 second bread,french,13.67,10.03,24.27,2022-10-16,18:00:37 327 | keto,Blueberry cheesecake Keto,american,93.43,382.29,131.79,2022-10-16,18:00:37 328 | keto,Keto Chocolate Mini Cheesecakes,american,42.28,47.39,212.13,2022-10-16,18:00:43 329 | keto,Mounds Keto Fat Bomb,american,12.02,45.95,193.48,2022-10-16,18:00:43 330 | keto,Keto Pumpkin Spice Martini,american,3.06,3.93,25.23,2022-10-16,18:00:43 331 | keto,Keto Bacon Cheeseburger Casserole,american,176.27,11.32,352.91,2022-10-16,18:00:43 332 | keto,Keto Fried Coconut Shrimp,mediterranean,32.8,63.57,146.25,2022-10-16,18:00:43 333 | keto,Filipino Chicken Adobo,asian,45.84,34.22,50.88,2022-10-16,18:00:43 334 | keto,Keto smothered pork chops,american,206.46,49.06,218.8,2022-10-16,18:00:43 335 | keto,Easy Keto Zucchini Frittata,italian,51.07,29.01,98.83,2022-10-16,18:00:43 336 | keto,Simple Cauliflower Keto Casserole,italian,34.78,18.28,83.0,2022-10-16,18:00:43 337 | keto,Brazilian Keto Shrimp Stew,south american,146.23,33.22,107.08,2022-10-16,18:00:43 338 | keto,Easy Keto Beef Tacos,mexican,151.48,26.84,216.18,2022-10-16,18:00:43 339 | keto,Keto Chicken Taco Shells,mexican,99.9,3.12,61.28,2022-10-16,18:00:43 340 | keto,Keto Cauliflower Hash Browns,american,49.86,20.03,61.7,2022-10-16,18:00:43 341 | keto,Spooky Halloween Low-Carb Pizza,italian,60.56,213.5,53.45,2022-10-16,18:00:43 342 | keto,KETO! Avocodo chocolate pudding,british,8.24,29.86,32.41,2022-10-16,18:00:50 343 | keto,Keto Sweetened Condensed Milk,american,9.87,93.1,214.32,2022-10-16,18:00:50 344 | keto,Keto Spinach Stuffed Chicken,italian,230.26,4.42,149.39,2022-10-16,18:00:50 345 | keto,Keto Egg Drop Soup,chinese,21.31,9.11,60.88,2022-10-16,18:00:50 346 | keto,Keto-Friendly Cinnamon Biscuits,american,50.8,32.85,118.02,2022-10-16,18:00:50 347 | keto,Keto Brown Butter Pralines,american,25.17,35.37,398.91,2022-10-16,18:00:50 348 | keto,Keto Blueberry Lemon Muffins,american,71.25,66.39,258.79,2022-10-16,18:00:50 349 | keto,Keto Cabbage Beef Stew,american,350.23,146.21,71.28,2022-10-16,18:00:50 350 | keto,Keto Maple Glazed Ham,american,603.05,211.03,312.79,2022-10-16,18:00:50 351 | keto,Keto Smothered Chicken Thighs,mediterranean,127.15,15.34,174.88,2022-10-16,18:00:50 352 | keto,Keto Smothered Green Beans,american,93.62,38.53,169.33,2022-10-16,18:00:50 353 | keto,Keto Chicken Nuggets recipes,american,32.52,3.99,23.14,2022-10-16,18:00:50 354 | keto,Keto Pizza Chips recipes,italian,120.21,1.61,211.79,2022-10-16,18:00:50 355 | keto,Keto Parmesan Roasted Broccoli,british,36.86,21.07,48.44,2022-10-16,18:00:57 356 | keto,Lazy Keto Chicken recipes,american,115.17,7.89,116.85,2022-10-16,18:00:57 357 | keto,Keto Chocolate Mousse recipes,french,26.65,90.2,127.47,2022-10-16,18:00:57 358 | keto,Keto Chicken Crust Pizza,italian,121.29,8.74,78.52,2022-10-16,18:00:57 359 | keto,Keto Zucchini Dip recipes,american,7.53,12.68,120.49,2022-10-16,18:00:57 360 | keto,Keto Low Carb Tortillas,mexican,22.27,20.22,35.77,2022-10-16,18:00:57 361 | keto,Keto Broccoli Cheddar Soup,italian,84.89,169.9,158.46,2022-10-16,18:00:57 362 | keto,Keto Egg Salad recipes,american,52.53,13.15,157.18,2022-10-16,18:00:57 363 | keto,Classic Pub Goulash (Keto),american,108.19,55.27,63.37,2022-10-16,18:00:57 364 | keto,keto Strawberry fat bombs,french,14.41,21.27,159.68,2022-10-16,18:00:57 365 | keto,Mayo-Free Avocado Green Goddess Dressing,caribbean,5.34,22.77,138.31,2022-10-16,18:00:57 366 | keto,Keto Bone Broth Latte,american,0.26,1.53,26.54,2022-10-16,18:00:57 367 | keto,Keto Strawberry Ice Cream,american,12.68,23.77,220.37,2022-10-16,18:00:57 368 | keto,Keto Egg Drop Soup,american,40.17,5.65,56.92,2022-10-16,18:00:57 369 | keto,Keto Sausage Egg Casserole,italian,163.99,16.37,220.17,2022-10-16,18:00:57 370 | keto,Keto Low Carb Flatbread,american,137.31,25.3,174.15,2022-10-16,18:00:57 371 | keto,Keto Nut Pralines recipes,american,48.65,96.64,332.16,2022-10-16,18:00:57 372 | keto,Keto Zucchini Fritters Recipe,south east asian,35.11,92.12,76.4,2022-10-16,18:01:03 373 | keto,Keto Creamsicle Jello recipes,american,11.21,21.29,133.44,2022-10-16,18:01:03 374 | keto,Keto Chocolate Pudding recipes,british,8.25,17.91,24.85,2022-10-16,18:01:03 375 | keto,Easy Keto Fried Halloumi,chinese,32.29,9.76,75.29,2022-10-16,18:01:03 376 | keto,Keto lemon mug cake,british,11.76,27.03,28.81,2022-10-16,18:01:03 377 | keto,Collagen Keto Chocolate Mousse,american,13.73,44.37,30.89,2022-10-16,18:01:03 378 | keto,Keto Cinnamon Fat Bombs,indian,4.85,13.46,253.72,2022-10-16,18:01:03 379 | keto,Creamy Mushroom Keto Casserole,french,286.77,58.87,341.38,2022-10-16,18:01:03 380 | keto,"CinnaBombs (Keto, Paleo, Vegan)",american,17.52,17.89,100.77,2022-10-16,18:01:03 381 | keto,Keto Blueberry Ice Cream,american,7.11,18.59,98.01,2022-10-16,18:01:03 382 | keto,Walnut Keto Fudge recipes,american,17.41,45.35,166.73,2022-10-16,18:01:03 383 | keto,Keto Brussel Sprouts Casserole,italian,62.81,84.39,64.27,2022-10-16,18:01:03 384 | keto,Keto Pancake Breakfast Sandwich,american,21.78,3.68,52.63,2022-10-16,18:01:10 385 | keto,Keto Buddha Bowl Recipe,british,31.21,73.78,112.43,2022-10-16,18:01:10 386 | keto,Keto Parmesan Cauliflower Risotto,italian,22.27,30.04,55.67,2022-10-16,18:01:10 387 | keto,Keto Bacon Burger Bombs,american,177.36,13.04,336.54,2022-10-16,18:01:10 388 | keto,Cheesy Keto Pizza Crust,italian,34.24,7.21,47.55,2022-10-16,18:01:10 389 | keto,Keto Egg Drop Soup,chinese,8.81,6.11,5.21,2022-10-16,18:01:10 390 | keto,Keto Chocolate Fat Bombs,french,34.63,60.92,184.27,2022-10-16,18:01:10 391 | keto,Keto Guacamole Egg Stacks,american,14.96,15.11,23.24,2022-10-16,18:01:10 392 | keto,Keto Bacon Cheeseburger Soup,american,160.71,64.62,240.86,2022-10-16,18:01:10 393 | keto,Low Carb Baked Beans with Beef,american,183.68,114.11,166.31,2022-10-16,18:01:10 394 | keto,Keto Raspberry Valentines recipes,american,7.55,17.0,139.56,2022-10-16,18:01:10 395 | keto,Keto Fried Mozzarella Bites,italian,57.18,39.42,113.75,2022-10-16,18:01:10 396 | keto,Keto Chicken-Broccoli Casserole,italian,136.12,26.1,214.11,2022-10-16,18:01:10 397 | keto,Keto Chicken Pesto Burgers,american,131.09,14.73,107.32,2022-10-16,18:01:10 398 | keto,Keto Breakfast Tacos recipes,mexican,113.6,18.01,170.84,2022-10-16,18:01:10 399 | keto,Keto Spinach Pesto Flatbread,italian,92.48,32.8,148.68,2022-10-16,18:01:17 400 | keto,Keto Flatbread Pizza Recipe,italian,77.72,59.31,169.34,2022-10-16,18:01:17 401 | keto,Garlic Parmesan Keto Croutons,italian,23.3,37.68,44.5,2022-10-16,18:01:17 402 | keto,Keto Pizza in a bowl,italian,64.92,1.03,105.03,2022-10-16,18:01:17 403 | keto,Keto Pancakes: Cinnamon Delight,american,28.94,36.86,157.86,2022-10-16,18:01:17 404 | keto,Keto Jalapeno Popper Bites,french,158.56,49.97,277.41,2022-10-16,18:01:17 405 | keto,Keto Cream Cheese Waffles,american,53.57,28.28,94.38,2022-10-16,18:01:17 406 | keto,Keto Buffalo Chicken Taquitos,american,101.01,4.97,174.56,2022-10-16,18:01:17 407 | keto,Savory Keto Cauliflower Mash,british,19.56,49.45,17.55,2022-10-16,18:01:17 408 | keto,Keto Garlic Gnocchi recipes,italian,56.61,8.61,63.76,2022-10-16,18:01:17 409 | keto,Keto Neapolitan Chia Pudding,british,19.05,52.65,34.11,2022-10-16,18:01:17 410 | keto,Keto Philly Cheesesteak Omelet,american,61.45,8.99,83.91,2022-10-16,18:01:17 411 | keto,Quick Keto Chocolate Mousse,american,9.6,13.79,74.63,2022-10-16,18:01:17 412 | keto,Keto Chocolate Souffle' recipes,french,50.09,44.97,99.54,2022-10-16,18:01:17 413 | keto,Keto Taco Bake Recipe,mexican,139.96,33.93,128.84,2022-10-16,18:01:24 414 | keto,Keto Cheddar Bay Biscuits,american,47.64,22.76,109.96,2022-10-16,18:01:24 415 | keto,Keto Jalapeño Popper Bread,mexican,63.28,189.3,176.56,2022-10-16,18:01:24 416 | keto,Keto Lemon Garlic Shrimp,mediterranean,92.9,10.08,39.16,2022-10-16,18:01:24 417 | keto,Keto Pumpkin Carbonara recipes,italian,91.37,253.9,138.47,2022-10-16,18:01:24 418 | keto,Rosemary Almond Keto Crackers,french,94.02,65.15,195.65,2022-10-16,18:01:24 419 | keto,Keto Spinach-Artichoke Chicken,mediterranean,263.01,36.24,163.05,2022-10-16,18:01:24 420 | keto,Keto Peanut Butter Mousse,french,23.49,22.81,115.99,2022-10-16,18:01:24 421 | keto,Keto Hazelnut Truffles recipes,american,12.9,55.5,74.01,2022-10-16,18:01:24 422 | keto,Keto Pie Crust recipes,american,34.13,79.9,72.89,2022-10-16,18:01:24 423 | keto,Keto Paprika Chicken recipes,mediterranean,247.63,28.25,71.03,2022-10-16,18:01:24 424 | keto,Keto White Chicken Chili,american,264.33,52.56,469.1,2022-10-16,18:01:24 425 | keto,Keto Paleo Fat Bomb,french,24.77,61.79,99.51,2022-10-16,18:01:24 426 | keto,Keto Classic Salad Recipe,american,15.98,14.88,13.42,2022-10-16,18:01:30 427 | keto,Keto Chocolate Fat Bombs,french,12.21,52.95,129.45,2022-10-16,18:01:30 428 | keto,Keto Spaghetti alla Carbonara,italian,187.41,497.15,156.57,2022-10-16,18:01:30 429 | keto,Keto Peanut Butter mousse,french,9.16,77.88,82.86,2022-10-16,18:01:30 430 | keto,Blueberry Keto Cake recipes,american,52.14,68.4,138.8,2022-10-16,18:01:30 431 | keto,Keto Crab Dip Soup,american,156.46,46.93,205.16,2022-10-16,18:01:30 432 | keto,Keto Burger Fat Bombs,nordic,91.8,1.77,121.45,2022-10-16,18:01:30 433 | keto,Keto Stuffed Pork Chops,american,213.19,14.68,172.91,2022-10-16,18:01:30 434 | keto,Easy Keto Berry Pavlova,eastern europe,15.09,32.01,44.72,2022-10-16,18:01:30 435 | keto,Keto Chicken Queso Flameado,caribbean,71.25,3.28,58.38,2022-10-16,18:01:30 436 | keto,Pork Rind Keto bread,american,144.68,15.62,206.49,2022-10-16,18:01:30 437 | keto,Keto Creamed Spinach Recipe,french,12.52,13.59,129.29,2022-10-16,18:01:30 438 | keto,Whole30 + Keto Ranch Dressing,american,1.51,5.32,14.23,2022-10-16,18:01:30 439 | keto,Keto Pesto Chicken Pasta,italian,93.66,25.74,125.36,2022-10-16,18:01:30 440 | keto,Keto chicken parmi bowl,italian,176.23,91.02,205.88,2022-10-16,18:01:37 441 | keto,Easy Keto Sesame Broccoli,chinese,18.72,36.85,33.67,2022-10-16,18:01:37 442 | keto,Cheesy Keto Pinwheels recipes,american,82.63,342.01,105.41,2022-10-16,18:01:37 443 | keto,Easy Baked Keto Goulash,american,230.67,109.89,111.04,2022-10-16,18:01:37 444 | keto,Spinach & Watercress Keto Salad,middle eastern,32.9,26.88,103.77,2022-10-16,18:01:37 445 | keto,Crunchy Keto Pita Chips,middle eastern,32.99,20.05,52.57,2022-10-16,18:01:37 446 | keto,Keto Crab Stuffed Mushrooms,american,77.73,14.88,74.3,2022-10-16,18:01:37 447 | keto,Keto Sausage Balls recipes,american,168.99,32.34,270.93,2022-10-16,18:01:37 448 | keto,Easy Keto Marinara Chicken,italian,59.28,7.53,26.75,2022-10-16,18:01:37 449 | keto,Keto-Pesto-Cauliflower-Casserole,italian,95.72,68.1,207.92,2022-10-16,18:01:37 450 | keto,Keto Kentucky Bourbon Balls,american,11.89,205.13,175.95,2022-10-16,18:01:37 451 | keto,Keto Fudge Popsicles Recipe,american,11.95,24.17,125.38,2022-10-16,18:01:37 452 | keto,Bacon and Mushroom Smothered Pork Chops,american,217.87,39.37,244.39,2022-10-16,18:01:37 453 | keto,Keto Cheesy Chicken Fritters,american,103.22,8.42,89.1,2022-10-16,18:01:44 454 | keto,Soft Keto Tortilla Recipe,mexican,31.11,39.02,53.09,2022-10-16,18:01:44 455 | keto,Keto Chocolate Bundt Cake,central europe,47.43,331.85,192.87,2022-10-16,18:01:44 456 | keto,Keto Spinach Pizza Frittata,italian,128.65,15.66,174.49,2022-10-16,18:01:44 457 | keto,Keto Eggplant Lasagna Recipe,italian,220.56,91.59,238.69,2022-10-16,18:01:44 458 | keto,Keto Parmesan Fish Patties,american,514.29,47.58,134.68,2022-10-16,18:01:44 459 | keto,Keto Bacon Cheeseburger Wellington,british,90.93,19.05,150.76,2022-10-16,18:01:44 460 | keto,Keto Spicy Fried Chicken,american,285.4,7.74,198.71,2022-10-16,18:01:44 461 | keto,Easy Raspberry Keto Cheesecake,american,20.24,34.03,146.91,2022-10-16,18:01:44 462 | keto,Keto Cheesecake Stuffed Strawberries,american,18.09,98.65,118.1,2022-10-16,18:01:44 463 | keto,Keto Egg Casserole Bake,italian,99.69,17.75,138.94,2022-10-16,18:01:44 464 | keto,Keto Chocolate Waffles recipes,mediterranean,38.23,84.39,130.34,2022-10-16,18:01:44 465 | keto,Keto Jalapeno Poppers Dip,mexican,74.96,50.23,158.17,2022-10-16,18:01:44 466 | keto,Keto Cheesy Shrimp Fritters,south east asian,96.15,13.16,62.85,2022-10-16,18:01:44 467 | keto,Keto Cabbage With Bacon recipes,american,16.43,9.6,46.18,2022-10-16,18:01:44 468 | keto,Keto Lupin Flour Biscuits,american,105.88,100.07,158.19,2022-10-16,18:01:44 469 | keto,Keto Bacon Ranch Dressing,american,24.91,8.19,180.78,2022-10-16,18:01:44 470 | keto,Keto Brownie Mug Cake,french,4.23,16.7,19.84,2022-10-16,18:01:44 471 | keto,Keto Cauliflower Pepper Soup,american,12.08,23.42,59.09,2022-10-16,18:01:51 472 | keto,Keto Spaghetti Squash Carbonara,italian,38.48,33.93,54.81,2022-10-16,18:01:51 473 | keto,Vegetarian Keto Club Salad,american,51.38,19.65,83.01,2022-10-16,18:01:51 474 | keto,Keto Orange Fat Bombs,mediterranean,8.45,10.49,138.45,2022-10-16,18:01:51 475 | keto,Keto Tomato Bisque Soup,french,37.69,95.54,92.09,2022-10-16,18:01:51 476 | keto,Keto Ceasar Salad recipes,american,46.87,10.31,144.09,2022-10-16,18:01:51 477 | keto,Keto Mocha Mousse recipes,american,22.27,103.4,169.47,2022-10-16,18:01:51 478 | keto,Keto Vanilla-Nutmeg “Oatmeal”,american,7.58,16.28,56.01,2022-10-16,18:01:51 479 | keto,Low Carb Keto Biscuits,british,66.98,42.21,181.33,2022-10-16,18:01:51 480 | keto,No-Crust Keto Pumpkin Pie,british,28.95,57.48,107.78,2022-10-16,18:01:51 481 | keto,Cheesy Keto Creamed Spinach,french,37.82,21.6,76.83,2022-10-16,18:01:51 482 | keto,Keto Paleo Tzatziki recipes,mediterranean,9.81,23.49,110.44,2022-10-16,18:01:51 483 | keto,Keto Tater Tot Casserole,american,151.71,42.19,151.02,2022-10-16,18:01:51 484 | keto,Keto Food Journal — Steemit,mediterranean,33.93,22.29,108.8,2022-10-16,18:01:51 485 | keto,Keto Mississippi Roast recipes,british,373.37,34.63,185.77,2022-10-16,18:01:51 486 | keto,NSNG Keto Salmon Patties,nordic,107.0,18.99,62.94,2022-10-16,18:01:57 487 | keto,Keto Zucchini Noodles With Meatballs,asian,101.73,17.72,107.67,2022-10-16,18:01:57 488 | keto,Easy Keto Naan Recipe,indian,127.89,45.96,193.52,2022-10-16,18:01:57 489 | keto,Keto Southern Style Meatloaf,american,177.5,47.0,196.68,2022-10-16,18:01:57 490 | keto,Keto Crispy Pork Cutlets,american,157.36,6.05,227.96,2022-10-16,18:01:57 491 | keto,Keto Mock Potato Salad,american,45.67,66.83,110.63,2022-10-16,18:01:57 492 | keto,Keto Chili Stuffed Peppers,american,149.48,99.44,213.19,2022-10-16,18:01:57 493 | keto,Keto Tuna Fish Salad,american,69.72,31.61,36.04,2022-10-16,18:01:57 494 | keto,Keto Chicken Zucchini Meatballs,american,49.88,9.38,29.89,2022-10-16,18:01:57 495 | keto,Keto Bacon and Roasted Cabbage,american,25.56,34.74,58.12,2022-10-16,18:01:57 496 | keto,Keto Bunless Bacon Cheeseburger,american,128.3,12.66,182.48,2022-10-16,18:01:57 497 | keto,Keto Easter Chocolate Nests,french,44.04,118.92,184.6,2022-10-16,18:01:57 498 | keto,Keto Philly Cheesesteak Skillet,american,172.49,60.51,188.29,2022-10-16,18:01:57 499 | keto,Keto Honey Mustard Dressing,american,4.89,17.01,182.03,2022-10-16,18:01:57 500 | keto,Keto Cauliflower Spanish Rice,mediterranean,15.96,56.49,56.98,2022-10-16,18:01:57 501 | keto,Keto cheesy broccoli soup,american,83.78,44.26,232.15,2022-10-16,18:01:57 502 | keto,Keto Pepperoni Pizza Cups,italian,72.25,19.07,109.24,2022-10-16,18:01:57 503 | keto,Keto Eggplant Burgers Recipe,french,44.02,51.68,53.63,2022-10-16,18:01:57 504 | keto,Keto egg and cheese bites,american,28.24,2.5,21.47,2022-10-16,18:02:04 505 | keto,Loaded Keto Zucchini Skins,british,37.25,24.91,98.63,2022-10-16,18:02:04 506 | keto,Simple Keto Zucchini Hash,south american,34.93,19.26,75.51,2022-10-16,18:02:04 507 | keto,Keto Pesto Chicken with Mozzarella,italian,99.96,9.57,70.32,2022-10-16,18:02:04 508 | keto,Keto Pork Stir Fry,chinese,134.97,41.97,77.18,2022-10-16,18:02:04 509 | keto,Keto Chicken Broccoli Casserole,italian,185.08,40.1,277.66,2022-10-16,18:02:04 510 | keto,Salty Salsa Keto Crackers,american,51.11,60.83,91.88,2022-10-16,18:02:04 511 | keto,Keto Creamy Broccoli Soup,italian,30.6,66.58,8.2,2022-10-16,18:02:04 512 | keto,Sherried Chicken Salad,american,248.62,135.04,278.71,2022-10-16,18:02:04 513 | keto,Vegetarian Keto “Crab” Cakes,american,31.19,25.1,117.96,2022-10-16,18:02:04 514 | keto,Keto Parmesan Crusted Tilapia,mediterranean,162.89,8.05,48.77,2022-10-16,18:02:04 515 | keto,Keto Bacon Ranch Dressing,american,24.92,8.75,180.77,2022-10-16,18:02:04 516 | keto,Keto Chocolate Espresso Sorbet,american,26.1,294.79,129.39,2022-10-16,18:02:04 517 | keto,Paleo Mississippi Roast with Lotus Root recipes,british,163.04,58.41,164.26,2022-10-16,18:02:11 518 | keto,Keto Cauliflower Pizza Muffins,italian,80.58,37.67,111.44,2022-10-16,18:02:11 519 | keto,"Keto-Friendly ""Candied"" Nuts",american,47.46,65.9,326.97,2022-10-16,18:02:11 520 | keto,Keto Chicken Stir-Fry,chinese,260.75,74.86,47.21,2022-10-16,18:02:11 521 | keto,Keto Stuffed Pepper Casserole,italian,155.64,87.18,172.22,2022-10-16,18:02:11 522 | keto,Keto Dill Pickle Soup,american,28.65,19.08,182.75,2022-10-16,18:02:11 523 | keto,Keto Zucchini and Walnut Bread,american,45.08,42.88,126.73,2022-10-16,18:02:11 524 | keto,Keto Mexican Chocolate Pudding,british,7.47,68.74,24.82,2022-10-16,18:02:11 525 | keto,Keto Chicken Pizza Dip,italian,152.56,28.64,248.55,2022-10-16,18:02:11 526 | keto,Keto Sandwich Bread recipes,nordic,136.11,180.33,71.42,2022-10-16,18:02:11 527 | keto,Easy Clam Chowder | Keto,american,168.99,80.18,199.3,2022-10-16,18:02:11 528 | keto,Keto Zone Green Beans,american,27.59,50.91,100.41,2022-10-16,18:02:11 529 | keto,Keto Almond Ricotta Cake,italian,120.78,163.57,298.48,2022-10-16,18:02:11 530 | keto,Keto Scampi-Style Chicken,italian,128.84,27.69,112.92,2022-10-16,18:02:11 531 | keto,Healthy Keto Avocado Hummus,mediterranean,19.67,44.02,167.91,2022-10-16,18:02:11 532 | keto,Keto Mock Crab Salad,american,41.66,6.18,35.3,2022-10-16,18:02:11 533 | keto,Keto Bruschetta Stuffed Avocado,italian,23.48,45.71,95.98,2022-10-16,18:02:18 534 | keto,Keto Green Bean Casserole,south american,50.28,59.84,137.96,2022-10-16,18:02:18 535 | keto,Chicken Roulades (Keto-friendly!),italian,92.87,25.36,124.34,2022-10-16,18:02:18 536 | keto,Keto Egg Foo Young,chinese,52.16,31.35,45.33,2022-10-16,18:02:18 537 | keto,Keto Tuna Salad recipes,american,47.58,5.3,46.8,2022-10-16,18:02:18 538 | keto,Keto Cabbage Soup Recipe,american,240.9,60.16,139.88,2022-10-16,18:02:18 539 | keto,Keto Cheesy Spinach Burger,nordic,125.38,38.78,235.01,2022-10-16,18:02:18 540 | keto,Keto Coconut Cream Pie,american,73.43,81.16,263.72,2022-10-16,18:02:18 541 | keto,Keto Tuscan Garlic Chicken,italian,246.2,29.8,147.47,2022-10-16,18:02:18 542 | keto,Easy Tomato Soup (Keto),french,21.21,31.95,78.66,2022-10-16,18:02:18 543 | keto,Keto Mediterranean Steak Pinwheels,mediterranean,167.9,26.46,110.15,2022-10-16,18:02:18 544 | keto,Keto Avocado Stuffed Chicken,american,292.73,22.82,87.72,2022-10-16,18:02:18 545 | keto,Keto Bison Meatballs recipes,american,128.91,27.8,197.3,2022-10-16,18:02:18 546 | keto,Keto Strawberry Mini Clafoutis,french,21.13,38.71,67.86,2022-10-16,18:02:18 547 | keto,Creamy Keto Cauliflower Risotto,italian,69.2,44.59,135.46,2022-10-16,18:02:18 548 | keto,Keto Crab Stuffed Mushrooms,american,64.46,26.34,70.05,2022-10-16,18:02:18 549 | keto,Keto Chocolate Orange Macaroons,american,65.05,342.67,341.77,2022-10-16,18:02:24 550 | keto,"Chicken Adobo | Keto, Paleo",asian,238.4,34.46,244.29,2022-10-16,18:02:24 551 | keto,Keto Lemon Poppyseed Cheesecake,american,116.08,94.11,511.43,2022-10-16,18:02:24 552 | keto,Easy Weeknight Keto Pizza,italian,128.57,30.32,213.79,2022-10-16,18:02:24 553 | keto,Cinnamon Keto Mug Cake,british,12.05,22.51,29.46,2022-10-16,18:02:24 554 | keto,Keto Peanut Butter Cups,american,48.03,84.45,295.72,2022-10-16,18:02:24 555 | keto,Keto Korean Fried Chicken,french,188.06,31.45,401.07,2022-10-16,18:02:24 556 | keto,Creamy Keto Avocado Soup,american,37.36,91.84,228.56,2022-10-16,18:02:24 557 | keto,Roasted Keto Cauliflower Mash,british,19.69,58.39,53.84,2022-10-16,18:02:24 558 | keto,Crunchy Keto Salad Toppers,american,24.57,20.64,69.23,2022-10-16,18:02:24 559 | keto,Keto Zuppa Toscana Soup,italian,98.45,55.02,234.93,2022-10-16,18:02:24 560 | keto,Keto Cauliflower Rice Stuffing,south american,54.3,63.97,69.31,2022-10-16,18:02:24 561 | keto,Keto Celeriac Cauli-Mash,french,23.49,45.45,185.07,2022-10-16,18:02:24 562 | keto,Keto Butternut Squash Risotto,italian,43.64,48.26,95.41,2022-10-16,18:02:24 563 | keto,Keto Cheese Stuffed Meatballs,american,237.8,67.71,323.06,2022-10-16,18:02:24 564 | keto,Keto Taco Breakfast Skillet,mexican,198.8,58.6,272.0,2022-10-16,18:02:31 565 | keto,Keto Strawberry Cheesecake Jars,american,23.96,80.46,199.52,2022-10-16,18:02:31 566 | keto,Keto-Friendly Brownie Cakes,french,17.2,16.5,72.99,2022-10-16,18:02:31 567 | keto,Keto BBQ Meatball Skewers,american,158.34,16.49,200.84,2022-10-16,18:02:31 568 | keto,Keto Meat Pie recipes,american,190.75,223.91,406.66,2022-10-16,18:02:31 569 | keto,Keto Crab Stuffed Avocado,american,34.09,20.33,65.63,2022-10-16,18:02:31 570 | keto,Keto Avocado Deviled Eggs,mexican,55.07,24.19,67.89,2022-10-16,18:02:31 571 | keto,Keto Easter Cheese Ball,french,100.2,35.88,278.97,2022-10-16,18:02:31 572 | keto,Keto Blueberry Mug Cake,british,6.18,12.64,17.23,2022-10-16,18:02:31 573 | keto,Keto Chicken and Broccoli Casserole,french,189.85,133.93,465.14,2022-10-16,18:02:31 574 | keto,Keto Mashed Cauliflower with Cheese,american,25.67,55.41,42.74,2022-10-16,18:02:31 575 | keto,Easy Keto Pound Cake,british,73.42,138.29,206.61,2022-10-16,18:02:31 576 | keto,Keto Grilled Steak Rolls,french,65.32,18.74,93.62,2022-10-16,18:02:31 577 | keto,Keto Banana Blueberry Muffins,american,89.35,97.24,225.45,2022-10-16,18:02:31 578 | keto,Instant Pot Keto Chili,american,101.33,79.12,93.85,2022-10-16,18:02:31 579 | keto,Keto Baked Chicken Fajitas,mexican,186.9,51.98,64.46,2022-10-16,18:02:38 580 | keto,3 Ingredient Keto Japanese Cheesecake,japanese,48.34,145.03,150.77,2022-10-16,18:02:38 581 | keto,Keto English Cottage Pie,american,194.19,53.91,244.83,2022-10-16,18:02:38 582 | keto,Keto Chicken and Broccoli Casserole,italian,159.45,35.97,273.25,2022-10-16,18:02:38 583 | keto,Keto Berry Mug Cake,british,12.55,24.44,39.27,2022-10-16,18:02:38 584 | keto,5 Minute Keto Pesto recipes,italian,47.93,14.09,203.9,2022-10-16,18:02:38 585 | keto,Air Fryer Keto Chicken Wings,american,238.79,4.96,188.08,2022-10-16,18:02:38 586 | keto,Keto Chicken Pad Thai,south east asian,196.91,209.26,249.58,2022-10-16,18:02:38 587 | keto,Keto Cheeseburger Muffins recipes,american,135.85,53.67,181.35,2022-10-16,18:02:38 588 | keto,5-layer Keto Dip recipes,mexican,108.3,101.44,381.15,2022-10-16,18:02:38 589 | keto,Sara louise's Keto Schnitzel,central europe,336.02,109.23,629.04,2022-10-16,18:02:38 590 | keto,Low Carb Lasagna Meatballs Recipe,italian,308.21,32.78,328.73,2022-10-16,18:02:38 591 | keto,Sara Louise's Keto Yapchik,american,174.05,130.65,226.62,2022-10-16,18:02:38 592 | keto,Keto Chocolate Mousse (Low Carb),french,25.33,45.96,255.26,2022-10-16,18:02:45 593 | keto,Keto Paleo Meatloaf recipes,american,143.36,37.65,172.61,2022-10-16,18:02:45 594 | keto,KETO Egg and Ham Soup,american,29.54,10.62,19.55,2022-10-16,18:02:45 595 | keto,Keto Bacon Cheeseburger Cups,american,185.37,55.26,224.12,2022-10-16,18:02:45 596 | keto,Special Dark fat bombs - Keto,american,3.09,7.01,202.54,2022-10-16,18:02:45 597 | keto,Low Carb/Keto pizza crust,italian,65.2,23.02,108.07,2022-10-16,18:02:45 598 | keto,Keto Pizza Florentine recipes,italian,112.53,258.9,128.67,2022-10-16,18:02:45 599 | keto,KETO Shrimp and Asparagus Alfredo,italian,243.63,41.0,432.48,2022-10-16,18:02:45 600 | keto,Low-Carb Keto Lasagna,italian,284.21,119.23,401.06,2022-10-16,18:02:45 601 | keto,Easy Keto Mozzarella Chicken,italian,162.11,44.11,79.41,2022-10-16,18:02:45 602 | keto,Keto Strawberry Ice Cream,american,29.56,52.43,291.93,2022-10-16,18:02:45 603 | keto,Pecan Coconut Butter (Keto Diet),american,16.51,35.55,177.99,2022-10-16,18:02:45 604 | keto,Keto Matcha Mint Bars,american,52.13,167.75,322.48,2022-10-16,18:02:45 605 | keto,Keto Recipes - Baked Parmesan Chips,american,101.35,9.13,73.23,2022-10-16,18:02:45 606 | keto,Keto Mediterranean Chicken Skillet,mediterranean,167.51,78.39,150.47,2022-10-16,18:02:51 607 | keto,Keto Shrimp Stir-Fry,chinese,99.02,38.73,21.15,2022-10-16,18:02:51 608 | keto,Keto Chicken and Rice Casserole,italian,154.43,60.76,219.59,2022-10-16,18:02:51 609 | keto,Keto Blueberry Coconut Crumble Recipe,american,15.78,49.78,98.32,2022-10-16,18:02:51 610 | keto,Keto Roti John recipes,american,165.21,72.4,275.59,2022-10-16,18:02:51 611 | keto,Low-Carb Keto Moscow Mule,world,0.25,36.46,0.06,2022-10-16,18:02:51 612 | keto,Quick keto chips and dip,american,5.11,2.04,14.36,2022-10-16,18:02:51 613 | keto,5 Minute Keto Pizza recipes,italian,29.07,23.2,33.98,2022-10-16,18:02:51 614 | keto,Keto Bacon Cheeseburger Casserole,italian,342.16,63.19,560.81,2022-10-16,18:02:51 615 | keto,Keto Cinnamon Donut Holes Recipe,american,33.05,84.74,115.99,2022-10-16,18:02:51 616 | keto,Rebekah's Keto Egg Casserole,american,159.45,18.8,249.64,2022-10-16,18:02:51 617 | keto,Keto Salmon and Zucchini Noodles,nordic,102.67,29.96,81.16,2022-10-16,18:02:51 618 | keto,Vegan Keto Lemon Fat Bombs,american,6.06,24.7,109.39,2022-10-16,18:02:51 619 | keto,Keto Jalapeno Popper Chicken Casserole,mexican,291.41,18.1,326.85,2022-10-16,18:02:51 620 | keto,Keto Chicken Mushroom Casserole Recipe,american,268.91,35.22,314.52,2022-10-16,18:02:51 621 | keto,Steak with Keto Mushroom Stroganoff,eastern europe,28.67,10.15,49.72,2022-10-16,18:02:51 622 | keto,Keto Jalapeño Cheese Crisps Recipe,south american,49.55,7.42,42.87,2022-10-16,18:02:51 623 | keto,Chocolate-Peanut Butter Keto Cups,american,37.23,43.07,310.17,2022-10-16,18:02:58 624 | keto,Keto Quick Asparagus Sauté Recipe,mediterranean,5.72,10.5,41.42,2022-10-16,18:02:58 625 | keto,Magic Low-Carb Keto Gnocchi,italian,56.2,7.18,60.85,2022-10-16,18:02:58 626 | keto,Creamy Keto Chicken-Poblano Soup,american,145.33,34.3,206.91,2022-10-16,18:02:58 627 | keto,"Jambalaya Kabobs | Keto, Paleo",american,199.3,53.04,179.69,2022-10-16,18:02:58 628 | keto,Keto Broccoli and Cheese Cauliflower,british,29.75,46.64,113.48,2022-10-16,18:02:58 629 | keto,Sara Louise's Keto Matboucha,italian,26.61,124.82,115.33,2022-10-16,18:02:58 630 | keto,Keto Low Carb Ice Cream,american,4.86,24.12,77.37,2022-10-16,18:02:58 631 | keto,Kat's Keto Turkey Meatballs,american,211.39,16.03,181.52,2022-10-16,18:02:58 632 | keto,Keto Beef Goulash Recipe,mediterranean,101.36,22.52,112.77,2022-10-16,18:02:58 633 | keto,Keto Brussels Sprouts with Bacon,central europe,74.47,91.38,104.66,2022-10-16,18:02:58 634 | keto,Keto Cheeseburger Casserole with Bacon,italian,351.06,56.31,598.18,2022-10-16,18:02:58 635 | keto,Keto Chicken Korma Recipe,south east asian,79.81,33.57,157.25,2022-10-16,18:02:58 636 | keto,Low-carb keto-friendly pizza,italian,68.94,22.73,85.55,2022-10-16,18:02:58 637 | keto,Baked Brie with a Keto Crust,french,187.02,31.84,254.44,2022-10-16,18:02:58 638 | keto,Keto Air Fryer Jalapeno Poppers,mexican,35.33,16.34,142.17,2022-10-16,18:02:58 639 | keto,Keto Cream Cheese Ranch Dip,american,25.21,49.16,125.24,2022-10-16,18:03:05 640 | keto,Keto Spinach Stuffed Chicken recipes,italian,230.26,4.42,149.39,2022-10-16,18:03:05 641 | keto,Keto Cauliflower Mac and Cheese,american,64.54,53.42,145.33,2022-10-16,18:03:05 642 | keto,Keto Herb and Cheese Spread,american,25.13,13.4,176.96,2022-10-16,18:03:05 643 | keto,LCHF CHOCOLATE WALNUT KETO FUDGE,american,22.07,74.13,169.99,2022-10-16,18:03:05 644 | keto,Cheesy Broccoli Fritters,japanese,67.87,64.91,170.29,2022-10-16,18:03:05 645 | keto,Keto Strawberry Cheesecake Mousse recipes,french,20.47,38.07,174.0,2022-10-16,18:03:05 646 | keto,No-Churn Keto Ice Cream,italian,4.9,9.47,88.06,2022-10-16,18:03:05 647 | keto,Smoked Keto Armadillo Eggs Recipe,american,104.37,15.8,189.76,2022-10-16,18:03:05 648 | keto,Keto Broccoli Cheese Soup,american,131.61,76.43,253.19,2022-10-16,18:03:05 649 | keto,Keto Friendly Creamsicle Melts Recipe,american,11.33,34.71,176.13,2022-10-16,18:03:05 650 | keto,PERFECT KETO CAULIFLOWER PIZZA CRUST,italian,34.9,46.14,19.99,2022-10-16,18:03:05 651 | keto,Keto Chicken Lo Mein,chinese,180.51,300.53,90.16,2022-10-16,18:03:05 652 | keto,Keto Shepherd’s Pie recipes,british,175.49,158.54,327.6,2022-10-16,18:03:05 653 | keto,Keto Fish Pie recipes,american,239.73,47.73,293.85,2022-10-16,18:03:05 654 | keto,Best Low-Carb Keto Meatballs,american,135.58,26.91,162.06,2022-10-16,18:03:05 655 | keto,"Keto-Friendly, Low-Carb Bagels",american,193.85,54.39,272.94,2022-10-16,18:03:05 656 | keto,Low Carb Keto Tasty Buns,british,37.74,12.79,65.04,2022-10-16,18:03:11 657 | keto,Keto creamy chicken bacon chowder,american,94.9,41.56,295.74,2022-10-16,18:03:11 658 | keto,"Chicken Alfredo Bake Recipe {Paleo, Clean Eating, Gluten-Free, Dairy-Free, Whole30} recipes",italian,134.66,68.36,106.66,2022-10-16,18:03:11 659 | keto,"Low Carb Keto ""Cornbread"" recipes",american,39.46,26.2,99.89,2022-10-16,18:03:11 660 | keto,Keto Chocolate Coffee Fat Bombs,french,26.07,49.77,193.61,2022-10-16,18:03:11 661 | keto,Keto bomb chocolate coconut mousse,american,18.23,28.04,268.99,2022-10-16,18:03:11 662 | keto,Keto Avocado Cheese Dip recipes,american,106.87,66.56,314.87,2022-10-16,18:03:11 663 | keto,Keto Parmesan Crusted Pork Chops,mediterranean,225.74,8.9,132.4,2022-10-16,18:03:11 664 | keto,Keto Roasted Eggplant Dip Recipe,mediterranean,11.49,52.78,16.39,2022-10-16,18:03:11 665 | keto,Keto Bacon Wrapped Chicken Tenders,american,329.65,278.16,424.63,2022-10-16,18:03:11 666 | keto,Keto -- Baked Mockaroni and Cheese,american,99.24,71.58,167.66,2022-10-16,18:03:11 667 | keto,Keto Air Fryer Breaded Cod,american,495.0,68.41,532.07,2022-10-16,18:03:11 668 | keto,Keto Mini Pecan Pies Recipe,american,33.17,97.26,163.76,2022-10-16,18:03:11 669 | keto,Keto Lemon Coconut Fat Bombs,french,2.81,11.79,27.11,2022-10-16,18:03:11 670 | keto,Chocolate Peanut Butter Keto Cups,american,35.53,70.55,199.04,2022-10-16,18:03:11 671 | keto,Salt N Vinegar Keto Crackers,british,59.54,54.14,127.7,2022-10-16,18:03:11 672 | keto,Keto Bacon Ranch Stuffed Burger,american,122.45,90.56,196.66,2022-10-16,18:03:11 673 | keto,Keto Beef Egg Roll Slaw,chinese,127.9,81.03,203.37,2022-10-16,18:03:18 674 | keto,Chocolate Keto Fat Bomb Recipe,french,74.16,115.69,362.29,2022-10-16,18:03:18 675 | keto,Mascarpone Cream Mousse Dessert (Keto),american,20.87,62.84,152.53,2022-10-16,18:03:18 676 | keto,Keto Peppered Maple Pecan Bacon,american,24.04,19.32,84.41,2022-10-16,18:03:18 677 | keto,Keto - friendly Chocolate Mousse recipes,british,13.19,44.96,47.03,2022-10-16,18:03:18 678 | keto,Keto Sheet Pan Chicken Dinner,american,107.78,115.14,183.07,2022-10-16,18:03:18 679 | keto,Keto Blinis with Smoked Salmon,nordic,61.62,19.13,105.27,2022-10-16,18:03:18 680 | keto,Keto Buffalo Blue Cheese Dressing,american,37.37,10.81,166.95,2022-10-16,18:03:18 681 | keto,Keto Blueberry Pancake Mug Cake,american,7.93,16.14,10.0,2022-10-16,18:03:18 682 | keto,Spicy Jalapeno Keto Chicken Wings,south american,321.4,13.94,240.3,2022-10-16,18:03:18 683 | keto,Easy Keto Tortilla Chips Recipe,american,64.23,22.42,94.97,2022-10-16,18:03:18 684 | keto,Keto Jalapeno Popper Stuffed Chicken,french,285.85,15.56,110.2,2022-10-16,18:03:18 685 | keto,Parmesan Garlic Keto-Friendly Zoodles,italian,18.18,24.5,63.28,2022-10-16,18:03:25 686 | keto,Easy Keto Taco Stuffed Avocados,mexican,30.46,25.5,68.29,2022-10-16,18:03:25 687 | keto,Keto Greek Meatballs Salad Recipe,mediterranean,77.56,16.24,160.84,2022-10-16,18:03:25 688 | keto,Low-Carb Broccoli Cheese Quiche,french,70.98,140.69,143.36,2022-10-16,18:03:25 689 | keto,Piña Colada Keto Fat Bombs,french,2.8,11.76,27.12,2022-10-16,18:03:25 690 | keto,Megan R keto dinner rolls,american,230.69,115.28,310.3,2022-10-16,18:03:25 691 | keto,Keto Parmesan-Breaded Eggplant Pizzas,italian,221.16,147.15,286.38,2022-10-16,18:03:25 692 | keto,"Whole30 Pickled Onions (Keto, Paleo)",american,0.82,6.86,13.57,2022-10-16,18:03:25 693 | keto,Keto Jalapeno Popper Fat Bomb,french,16.42,6.92,63.74,2022-10-16,18:03:25 694 | keto,90-Second Keto Bread in a Mug,british,13.88,7.98,34.26,2022-10-16,18:03:25 695 | keto,Keto Spaghetti Squash Lasagna Boats,italian,274.34,196.1,288.84,2022-10-16,18:03:25 696 | keto,Keto Chia Pudding with Almond & Cinnamon,british,11.77,19.94,27.13,2022-10-16,18:03:25 697 | keto,Keto Stuffed Pork Chops recipes,american,96.92,11.06,53.21,2022-10-16,18:03:25 698 | keto,Jaynee's Keto Cinnamon Roll,french,13.05,18.22,80.12,2022-10-16,18:03:32 699 | keto,Keto Chicken Thigh Roll-Ups,south east asian,187.56,15.53,305.48,2022-10-16,18:03:32 700 | keto,Keto Egg Fast Fettuccini Alfredo,british,17.68,3.61,41.52,2022-10-16,18:03:32 701 | keto,Keto Egg Fast Snickerdoodle Crepes,french,41.95,23.76,124.21,2022-10-16,18:03:32 702 | keto,Keto Blackberry Cheese Danish Turnovers,nordic,41.74,11.73,72.34,2022-10-16,18:03:32 703 | keto,Keto Tortillas with Ground Beef,mexican,78.03,46.62,102.81,2022-10-16,18:03:32 704 | keto,Keto Lemon Butter White Fish,french,51.91,5.85,62.58,2022-10-16,18:03:32 705 | keto,Best Keto Tuna Salad recipes,american,46.47,3.3,43.75,2022-10-16,18:03:32 706 | keto,Keto Oven-Baked Brie Cheese,american,58.49,10.98,125.08,2022-10-16,18:03:32 707 | keto,Keto Sausage Balls - Low Carb,british,304.46,54.52,466.5,2022-10-16,18:03:32 708 | keto,Easy Cheesy Keto Cabbage Casserole,middle eastern,190.65,9.21,293.37,2022-10-16,18:03:32 709 | keto,Keto Coconut Chip Ice Cream,american,38.64,154.5,289.88,2022-10-16,18:03:32 710 | keto,Low-carb keto pizza dough,italian,50.46,15.03,72.79,2022-10-16,18:03:32 711 | keto,4-Ingredient Keto Chicken Curry Recipe,indian,93.24,29.98,147.63,2022-10-16,18:03:32 712 | keto,Easy Keto Sandwich Bread Recipe,american,214.17,74.98,142.91,2022-10-16,18:03:32 713 | keto,Keto Sticky Balsamic Pork Belly,chinese,98.0,35.4,555.44,2022-10-16,18:03:39 714 | keto,Kale-Coconut Dry Curry {keto},indian,9.04,31.16,20.59,2022-10-16,18:03:39 715 | keto,Keto Cream Cheese Egg Cups,american,98.93,29.64,161.75,2022-10-16,18:03:39 716 | keto,Keto Bacon Green Beans Recipe,british,28.17,19.94,111.09,2022-10-16,18:03:39 717 | keto,Keto Low Carb Cauliflower Pizza,italian,65.08,20.28,43.97,2022-10-16,18:03:39 718 | keto,Easy Keto Creamed Spinach recipes,french,23.94,17.19,42.22,2022-10-16,18:03:39 719 | keto,Strawberry Shortcake Keto Fat Bombs,british,25.28,47.81,73.61,2022-10-16,18:03:39 720 | keto,Crispy Baked Keto Chicken Wings,american,242.23,52.28,156.28,2022-10-16,18:03:39 721 | keto,Buffalo Keto Chicken Tenders recipes,american,135.48,91.72,140.91,2022-10-16,18:03:39 722 | keto,Keto Shrimp and Grits Recipe,japanese,77.27,41.96,198.3,2022-10-16,18:03:39 723 | keto,Keto Apple Pork Chops recipes,american,254.91,15.11,245.28,2022-10-16,18:03:39 724 | keto,Keto Friendly Chocolate Mug Cake,american,99.51,26.02,26.45,2022-10-16,18:03:39 725 | keto,Keto Saganaki Greek Fried Cheese,mediterranean,31.71,17.88,81.43,2022-10-16,18:03:39 726 | keto,Peanut Butter Fat Bombs (Keto),french,29.14,29.87,166.79,2022-10-16,18:03:39 727 | keto,Keto-Friendly Grilled Stuffed Chicken,british,306.25,29.48,221.42,2022-10-16,18:03:39 728 | keto,Keto Low Carb Microwave Cheesecake,american,10.29,4.86,35.27,2022-10-16,18:03:45 729 | keto,Keto Avocado Tuna Melt Bites,american,81.32,28.45,214.0,2022-10-16,18:03:45 730 | keto,Beef Back Ribs Keto Style,american,185.8,31.24,316.87,2022-10-16,18:03:45 731 | keto,Keto Crockpot Beef Stroganoff Recipe,eastern europe,201.35,45.1,158.06,2022-10-16,18:03:45 732 | keto,Keto Grilled Cheese Sandwich recipes,american,29.69,31.72,70.23,2022-10-16,18:03:45 733 | keto,Keto Mixed Berry Crumble Pots,american,21.58,89.0,106.92,2022-10-16,18:03:45 734 | keto,Chicken Parmesan Casserole - Low Carb &,italian,193.22,72.22,121.77,2022-10-16,18:03:45 735 | keto,Easy Keto Dijon Chicken Thighs,french,133.93,16.49,166.39,2022-10-16,18:03:45 736 | keto,Keto Creamy Spinach Egg Casserole,italian,32.89,19.54,68.87,2022-10-16,18:03:45 737 | keto,Keto Pepperoni Pizza Cauliflower Casserole,italian,60.43,28.29,89.31,2022-10-16,18:03:45 738 | keto,low carb keto stuffed eggs,italian,69.15,5.93,102.39,2022-10-16,18:03:45 739 | keto,Begedil Keto Potato Patties recipes,eastern europe,20.34,28.74,70.27,2022-10-16,18:03:45 740 | keto,Keto Three Cheese Bacon Asparagus,american,43.03,26.12,95.54,2022-10-16,18:03:45 741 | keto,Keto Root Beer Float Pops,american,3.66,41.93,66.05,2022-10-16,18:03:52 742 | keto,Paleo Breakfast Burger (Whole30 + Keto),nordic,125.93,35.2,153.02,2022-10-16,18:03:52 743 | keto,"Avocado Yogurt Dip {Vegetarian, Keto}",american,16.35,34.24,42.04,2022-10-16,18:03:52 744 | keto,Chive Horseradish Keto Cauliflower Mash,british,47.24,58.15,79.34,2022-10-16,18:03:52 745 | keto,White Chocolate Keto Truffles recipes,american,3.17,203.58,226.54,2022-10-16,18:03:52 746 | keto,Keto Cheesy Spinach and Egg Casserole,italian,120.23,23.36,100.03,2022-10-16,18:03:52 747 | keto,Coconut Flour Keto Donut Holes,american,12.73,60.53,81.62,2022-10-16,18:03:52 748 | keto,Keto Chicken Cauliflower Fried Rice,chinese,77.71,41.36,94.03,2022-10-16,18:03:52 749 | keto,Low Carb Snickerdoodles - Keto & Glute,british,51.2,47.26,204.0,2022-10-16,18:03:52 750 | keto,"Bacon Wrapped Asparagus, Keto Style",american,40.04,31.92,146.48,2022-10-16,18:03:52 751 | keto,Keto White Pizza Frittata recipes,italian,160.92,26.9,194.95,2022-10-16,18:03:52 752 | keto,Slow Cooker Keto Barbecue Meatloaf,central europe,261.46,139.57,317.04,2022-10-16,18:03:52 753 | keto,"Whole30 Cajun Seasoning (Keto, Paleo)",american,5.7,29.08,2.76,2022-10-16,18:03:52 754 | keto,Keto “Apple” Cheesecake Danish recipes,nordic,6.68,26.71,55.25,2022-10-16,18:03:52 755 | keto,Keto Pesto-stuffed Chicken Thighs,italian,145.34,20.19,197.97,2022-10-16,18:03:59 756 | keto,Keto & Paleo Condensed Milk recipes,american,18.87,93.73,180.8,2022-10-16,18:03:59 757 | keto,Hot Melt (keto-approved) Spaghetti,italian,75.0,47.1,158.3,2022-10-16,18:03:59 758 | keto,Keto SOUTHERN BACON-FRIED CABBAGE,american,40.66,94.41,70.56,2022-10-16,18:03:59 759 | keto,Megan R Buffalo chicken keto,american,181.29,29.17,287.05,2022-10-16,18:03:59 760 | keto,Easy Keto Pumpkin Bread recipes,american,67.87,199.54,220.58,2022-10-16,18:03:59 761 | keto,Keto Blueberry Cheesecake Squares recipes,american,40.07,56.05,215.87,2022-10-16,18:03:59 762 | keto,Keto Rosemary Dill Salmon recipes,nordic,515.92,6.24,160.09,2022-10-16,18:03:59 763 | keto,Stuffed portobello Caps Keto style,italian,145.9,45.31,127.07,2022-10-16,18:03:59 764 | keto,Keto Lemon Meringue Custard recipes,french,21.21,236.78,141.58,2022-10-16,18:03:59 765 | keto,"Korean Ground Beef | Keto, Paleo",french,85.32,11.64,112.27,2022-10-16,18:03:59 766 | keto,Fathead Keto Gnocchi - Low Carb,italian,172.39,57.04,341.32,2022-10-16,18:03:59 767 | keto,Keto Crockpot Clam Chowder recipes,american,254.11,99.29,343.88,2022-10-16,18:03:59 768 | keto,Keto Buffalo Chicken Soup Recipe,american,106.16,49.65,125.53,2022-10-16,18:04:06 769 | keto,Creamy Keto Tuscan Soup Recipe,italian,108.42,64.15,279.58,2022-10-16,18:04:06 770 | keto,Keto Turkey Meatballs with Pesto,american,96.36,32.12,111.46,2022-10-16,18:04:06 771 | keto,Keto Lemon Mug Cake Recipe,american,23.08,38.12,28.75,2022-10-16,18:04:06 772 | keto,Keto No-Churn Strawberry Ice Cream,italian,5.24,13.36,88.21,2022-10-16,18:04:06 773 | keto,Easy Keto Chicken Verde Enchiladas,mexican,167.63,18.64,93.98,2022-10-16,18:04:06 774 | keto,Roast Pumpkin & Feta - Keto Salad,mediterranean,35.51,55.26,94.81,2022-10-16,18:04:06 775 | keto,KETO SPICY CHIPOTLE DEVILED EGGS,mexican,38.98,7.45,80.07,2022-10-16,18:04:06 776 | keto,Pesto Keto Chicken Stuffed Peppers,italian,146.22,58.28,151.35,2022-10-16,18:04:06 777 | keto,Keto Shrimp Cauliflower Fried Rice,chinese,61.29,43.43,75.34,2022-10-16,18:04:06 778 | keto,Keto-Friendly Soft Tacos — Steemit,mexican,87.04,24.12,123.81,2022-10-16,18:04:06 779 | keto,Keto Italian Chicken Salad recipes,italian,315.23,34.66,147.1,2022-10-16,18:04:06 780 | keto,Keto-Approved Ranch Dressing recipes,american,12.98,10.19,207.76,2022-10-16,18:04:12 781 | keto,Keto Broccoli Cheese Soup Recipe,american,138.32,59.75,342.99,2022-10-16,18:04:12 782 | keto,Philly Cheesesteak Keto Roll recipes,american,46.48,11.73,60.67,2022-10-16,18:04:12 783 | keto,Keto Chocolate Almond Fudge Slices,french,120.91,573.8,494.62,2022-10-16,18:04:12 784 | keto,Keto turkey egg roll casserole,american,225.51,115.2,60.91,2022-10-16,18:04:12 785 | keto,Keto Chocolate Toast Crunch Cereal,french,54.78,110.72,192.3,2022-10-16,18:04:12 786 | keto,10 Minute Keto Country Gravy recipes,british,22.82,10.92,139.25,2022-10-16,18:04:12 787 | keto,Keto Mini Pepper Pizza Cups,italian,65.96,38.66,73.02,2022-10-16,18:04:12 788 | keto,Keto Paleo Tuna Taquitos Recipe,mexican,46.45,79.45,75.1,2022-10-16,18:04:12 789 | keto,Best Keto Cabbage Salad Recipe,middle eastern,80.7,32.89,123.75,2022-10-16,18:04:12 790 | keto,Air Fryer Keto Pork Chops,mexican,176.8,10.24,92.62,2022-10-16,18:04:12 791 | keto,Keto Cilantro Lime Cauliflower Rice,mediterranean,14.02,39.98,29.53,2022-10-16,18:04:12 792 | keto,Sara Louise's Keto Roasted Endives,nordic,4.79,22.28,108.66,2022-10-16,18:04:12 793 | keto,Keto Instant Pot Pulled Chicken,french,86.97,9.53,110.61,2022-10-16,18:04:12 794 | keto,Keto Chicken Thighs with Creamed Spinach,american,273.02,47.05,450.31,2022-10-16,18:04:12 795 | keto,Keto Chicken Pesto Cauliflower Casserole,italian,168.26,44.33,138.35,2022-10-16,18:04:19 796 | keto,Low Carb Keto Hamburger Buns,american,49.44,135.19,60.36,2022-10-16,18:04:19 797 | keto,Keto Neapolitan Ice-Cream recipes,american,30.88,46.4,127.99,2022-10-16,18:04:19 798 | keto,"Chunky Guacamole (Paleo, Whole30 + Keto)",mexican,21.59,103.56,118.8,2022-10-16,18:04:19 799 | keto,Cheese Wafers {Keto/Low Carb,american,83.66,58.74,285.17,2022-10-16,18:04:19 800 | keto,Keto Sheet Pan Steak Fajitas,mexican,155.71,37.09,176.53,2022-10-16,18:04:19 801 | keto,Keto Parmesan Crisps with Tomato Slices,american,36.24,5.41,25.98,2022-10-16,18:04:19 802 | keto,Keto Diet Sloppy Joe Recipe,french,79.29,120.71,91.06,2022-10-16,18:04:19 803 | keto,Keto Crustless Mushroom Spinach Pie,italian,109.02,41.52,108.35,2022-10-16,18:04:19 804 | keto,Keto Faux French Onion Dip Recipe,american,2.05,12.68,89.18,2022-10-16,18:04:19 805 | keto,Keto Chicken Enchiladas - White Version,central europe,420.57,63.04,240.6,2022-10-16,18:04:19 806 | keto,Keto Creamy Chicken and Vegetable Bake,mexican,262.5,116.17,319.91,2022-10-16,18:04:19 807 | keto,Crockpot Keto Buffalo Chicken Soup,american,52.28,29.91,124.92,2022-10-16,18:04:19 808 | keto,Easy Keto Spinach Cheese Manicotti,italian,199.82,51.36,148.43,2022-10-16,18:04:19 809 | keto,Easy Keto Curry Chicken Recipe,south east asian,273.63,62.25,136.67,2022-10-16,18:04:19 810 | keto,Keto Chicken Skewers with Rustic Vegetables,mediterranean,132.42,21.87,69.28,2022-10-16,18:04:19 811 | keto,5 Minute Keto Raspberry Vinaigrette recipes,french,0.74,9.21,108.4,2022-10-16,18:04:26 812 | keto,Keto Chicken Cordon Bleu Recipe,french,266.86,50.52,323.19,2022-10-16,18:04:26 813 | keto,Vivica's Keto Roast Chicken recipes,american,224.0,4.69,181.41,2022-10-16,18:04:26 814 | keto,Deep Dish Skillet Keto Pizza,italian,85.1,38.27,146.3,2022-10-16,18:04:26 815 | keto,Keto-Friendly Low-Carb Bread,american,45.87,32.41,102.19,2022-10-16,18:04:26 816 | keto,Ultra Moist Keto Blackberry Muffins,american,82.78,137.32,228.07,2022-10-16,18:04:26 817 | keto,Keto Hot Chili Soup recipes,american,106.42,61.05,175.46,2022-10-16,18:04:26 818 | keto,Keto Egg Fried Rice recipes,chinese,48.45,52.66,88.21,2022-10-16,18:04:26 819 | keto,Keto Mini Pepperoni Guacamole Bites,mexican,50.7,47.63,122.37,2022-10-16,18:04:26 820 | keto,Keto Taco Stuffed Mini Peppers,american,64.53,66.96,87.66,2022-10-16,18:04:26 821 | keto,KETO BEEF BRISKET Slow Cooker,french,335.26,33.16,444.27,2022-10-16,18:04:26 822 | keto,Parmesan-Garlic Keto Chicken Wings,american,492.67,12.78,404.5,2022-10-16,18:04:26 823 | keto,Sara Louise's Keto Israeli Salad,middle eastern,7.1,42.83,41.67,2022-10-16,18:04:26 824 | keto,Keto Fat Bombs with Cacao and Cashew,italian,90.86,130.47,428.13,2022-10-16,18:04:26 825 | keto,Roasted Butternut Squash Apple Soup,american,15.46,144.09,64.19,2022-10-16,18:04:33 826 | keto,Strawberry Cheesecake Fat Bombs *Keto*,american,15.29,37.36,97.5,2022-10-16,18:04:33 827 | keto,Keto Broccoli Cheddar Biscuits recipes,american,90.25,53.71,192.45,2022-10-16,18:04:33 828 | keto,Keto Chicken Cordon Bleu Casserole,french,136.74,18.57,195.65,2022-10-16,18:04:33 829 | keto,Crispy Keto Cauliflower Cakes recipes,american,55.65,41.77,99.24,2022-10-16,18:04:33 830 | keto,EZ Truckers Chili (Keto Style),american,112.74,71.89,24.19,2022-10-16,18:04:33 831 | keto,Keto Cheesy Steak Zucchini Boats,mediterranean,77.03,27.55,85.24,2022-10-16,18:04:33 832 | keto,Keto Zucchini Rollatini - Low Carb,italian,190.8,64.39,216.6,2022-10-16,18:04:33 833 | keto,Keto Thai Red Curry Paste,south east asian,8.29,44.37,63.96,2022-10-16,18:04:33 834 | keto,"Keto Cauliflower, Eggs, and Bacon Salad",american,56.73,63.32,143.25,2022-10-16,18:04:33 835 | keto,Tasty and Easy Keto Dinner Rolls,american,251.34,85.55,419.16,2022-10-16,18:04:33 836 | keto,Spicy Keto Chicken-and-Cheese Casserole,south american,180.55,33.49,130.18,2022-10-16,18:04:33 837 | keto,Keto Meal Prep Breakfast Bombs,french,147.45,52.42,281.67,2022-10-16,18:04:39 838 | keto,Keto Mulled Berry Chia Parfaits,french,22.78,76.66,101.11,2022-10-16,18:04:39 839 | keto,Texas Style Keto Venison Chili,american,213.89,91.92,69.02,2022-10-16,18:04:39 840 | keto,Sara Louise's Keto Asparagus Soup,french,78.66,121.92,79.18,2022-10-16,18:04:39 841 | keto,Keto Bacon Cauliflower Mac and Cheese,american,113.43,42.36,361.84,2022-10-16,18:04:39 842 | keto,Sara Louise's Keto Falafel Balls,middle eastern,35.71,29.64,53.59,2022-10-16,18:04:39 843 | keto,Low Carb Keto Cheese Crisps Recipe,american,80.1,7.19,68.05,2022-10-16,18:04:39 844 | keto,Paleo/Keto Greek Cabbage with Bacon,mediterranean,27.58,75.5,36.77,2022-10-16,18:04:39 845 | keto,Keto Creamy Asparagus and Shrimp Alfredo,italian,90.79,24.77,128.9,2022-10-16,18:04:39 846 | keto,No-Bake Keto Chocolate Roll recipes,american,32.13,102.8,227.02,2022-10-16,18:04:39 847 | keto,Keto 5 Minute Caesar Dressing recipes,american,2.77,7.08,134.38,2022-10-16,18:04:39 848 | keto,Easy Keto Cordon Bleu recipes,french,177.02,29.23,288.14,2022-10-16,18:04:39 849 | keto,Keto Sun-Dried Tomato Chicken,american,144.95,89.92,248.65,2022-10-16,18:04:39 850 | keto,One-Pan Keto Shrimp and Asparagus,british,63.54,17.38,50.49,2022-10-16,18:04:39 851 | keto,Keto Chicken Curry With Coconut Milk,indian,66.63,14.21,79.56,2022-10-16,18:04:39 852 | keto,Keto Gourmet: Bacon Wrapped Lobster!,american,118.42,18.61,262.26,2022-10-16,18:04:39 853 | keto,Instant Pot® Keto Hamburger Soup,american,119.3,31.47,294.26,2022-10-16,18:04:39 854 | keto,Keto King Ranch Chicken recipes,american,213.09,123.92,306.16,2022-10-16,18:04:39 855 | keto,"AIP Italian Burgers Recipe [Paleo, Keto]",nordic,92.56,23.41,58.4,2022-10-16,18:04:39 856 | keto,Keto Peanut Butter Fudge Fat Bomb,american,57.66,66.58,351.17,2022-10-16,18:04:46 857 | keto,Pork Tenderloin with Roasted Veggies (Keto),british,183.61,57.84,84.55,2022-10-16,18:04:46 858 | keto,KETO Chicken with sundried tomato and cream,american,24.41,10.18,53.51,2022-10-16,18:04:46 859 | keto,Ham and Cheese Keto Stromboli recipes,italian,129.07,33.43,145.31,2022-10-16,18:04:46 860 | keto,Keto Pepperoni Pizza with Fathead Crust,italian,217.33,51.8,278.81,2022-10-16,18:04:46 861 | keto,Keto Cauliflower Pizza Casserole recipes,italian,217.65,84.99,388.93,2022-10-16,18:04:46 862 | keto,3 Ingredient Keto Chocolate Mug Cake,british,8.17,7.26,6.05,2022-10-16,18:04:46 863 | keto,Keto Sesame Zoodles with Roasted Pork,chinese,42.65,13.86,93.35,2022-10-16,18:04:46 864 | keto,Keto Chicken Pad Thai recipes,south east asian,220.94,520.75,207.98,2022-10-16,18:04:46 865 | keto,Sweet Chili Keto Pork Chops,american,165.77,42.29,88.2,2022-10-16,18:04:46 866 | keto,The BEST Keto Broccoli Cheese Soup,american,104.29,77.81,300.87,2022-10-16,18:04:46 867 | keto,Easy Keto Pork and Cabbage Casserole,nordic,98.41,24.98,21.26,2022-10-16,18:04:46 868 | keto,Keto Stuffed Chicken Breast Recipe,american,84.0,31.5,157.88,2022-10-16,18:04:46 869 | keto,Instant Pot® Keto Chicken Curry,indian,71.08,24.35,100.57,2022-10-16,18:04:46 870 | keto,Healthy Keto Salmon Paté recipes,nordic,62.34,22.75,145.42,2022-10-16,18:04:53 871 | keto,"Keto Sriracha “Spaghetti"" + Meatballs recipes",italian,118.99,74.23,176.92,2022-10-16,18:04:53 872 | keto,Keto Pesto Chicken Bake with Haloumi,american,225.01,27.62,283.77,2022-10-16,18:04:53 873 | keto,Spinach and Artichoke Keto Egg Bake,mediterranean,94.04,54.02,69.66,2022-10-16,18:04:53 874 | keto,Keto Double Chocolate Macaroons recipes,french,38.35,90.62,220.18,2022-10-16,18:04:53 875 | keto,Keto Chocolate Silk Pie recipes,american,85.52,262.71,417.14,2022-10-16,18:04:53 876 | keto,Thin Keto Pizza Crust recipes,italian,52.74,87.16,112.08,2022-10-16,18:04:53 877 | keto,Keto Low Carb Curry recipes,south east asian,83.53,111.03,132.41,2022-10-16,18:04:53 878 | keto,Easy Keto Ranch Dressing recipes,american,7.25,14.4,156.6,2022-10-16,18:04:53 879 | keto,Keto Mini Pumpkin-Pecan Cheesecakes,american,35.87,36.91,145.82,2022-10-16,18:04:53 880 | keto,Keto Overnight Oats with Coconut and Blueberries,french,17.69,18.17,33.66,2022-10-16,18:04:53 881 | keto,Raspberry White Chocolate Keto Fat Bombs,american,21.42,68.67,347.44,2022-10-16,18:04:53 882 | keto,The Keto Diet for $30 per Week,french,36.67,6.73,34.9,2022-10-16,18:04:53 883 | keto,Cheesy Sausage and Egg Keto Casserole,american,128.64,46.61,177.76,2022-10-16,18:04:53 884 | keto,The Best Keto Mashed Cauliflower Recipe,american,18.85,46.91,35.38,2022-10-16,18:04:53 885 | keto,Keto Paleo Seafood Paella recipes,mediterranean,202.38,73.21,80.26,2022-10-16,18:04:53 886 | keto,Pork Meatballs (keto and gluten free),nordic,132.98,16.47,173.98,2022-10-16,18:04:53 887 | keto,Instant Pot® Keto Green Beans,french,32.77,37.71,89.68,2022-10-16,18:04:53 888 | keto,Creamy Keto Spinach and Celery Soup,american,4.89,11.33,30.9,2022-10-16,18:04:59 889 | keto,KETO-LICIOUS SUGAR FREE CHOCOLATE FONDANT,french,36.91,126.07,197.27,2022-10-16,18:04:59 890 | keto,Vegan Keto Tangy Coconut Soup,american,135.31,231.2,911.26,2022-10-16,18:04:59 891 | keto,Keto Doritos Safe Cheat-oh ~ Dorketos ~,american,26.98,5.03,36.3,2022-10-16,18:04:59 892 | keto,Smoked Salmon Keto Mini Quiches,nordic,95.74,15.59,108.51,2022-10-16,18:04:59 893 | keto,Sara Louise's Keto Tuna Croquettes,japanese,197.3,27.95,142.2,2022-10-16,18:04:59 894 | keto,Keto Spinach Mushroom Bacon Saute Recipe,american,31.06,12.9,70.07,2022-10-16,18:04:59 895 | keto,Keto Chicken Cordon Bleu Meatballs,french,177.14,26.54,175.12,2022-10-16,18:04:59 896 | keto,"Keto Jalapeno Poppers | Cheesy, Bacon Goodness",french,45.52,14.65,64.04,2022-10-16,18:04:59 897 | keto,Keto Omelet with Zucchini and Chanterelle Mushrooms,french,26.34,7.23,36.07,2022-10-16,18:04:59 898 | keto,Bacon Cheeseburger Pizza - Keto Recipe,italian,151.43,229.41,179.32,2022-10-16,18:04:59 899 | keto,Sara Louise's Keto Cabbage Soup,central europe,320.2,85.31,765.52,2022-10-16,18:04:59 900 | keto,Keto BBQ Salad with Shredded Chicken,american,94.91,66.22,138.39,2022-10-16,18:04:59 901 | keto,Keto Friendly Lemon Fat Bomb recipes,french,7.26,6.2,139.42,2022-10-16,18:04:59 902 | keto,TLC - Easy Keto Avocado Dessert recipes,american,8.91,39.98,74.67,2022-10-16,18:04:59 903 | keto,Priya’s #Keto Baked Cauliflower recipes,american,21.55,65.36,14.96,2022-10-16,18:05:06 904 | keto,Three Ingredient Keto Pie Crust recipes,american,25.32,49.46,112.54,2022-10-16,18:05:06 905 | keto,Sara Louise's Keto Creamed Spinach,italian,29.48,34.96,231.05,2022-10-16,18:05:06 906 | keto,Dairy-Free Keto Bacon Wrapped Zucchini,american,38.76,27.35,94.59,2022-10-16,18:05:06 907 | keto,Sara Louise's Keto Beef Kebabs,middle eastern,241.19,46.91,300.87,2022-10-16,18:05:06 908 | keto,Keto Loco Moco Burger Recipe,french,63.06,31.86,166.3,2022-10-16,18:05:06 909 | keto,Keto Baked Spinach-Artichoke Chicken Breasts,mediterranean,431.02,61.48,279.11,2022-10-16,18:05:06 910 | keto,Keto Chicken and Vegetables Stir Fry,chinese,68.24,19.76,38.4,2022-10-16,18:05:06 911 | keto,Keto Crispy Sesame Beef recipes,chinese,89.63,42.47,128.53,2022-10-16,18:05:06 912 | keto,Mexican Rice With Chorizo - Keto Recipe,mexican,67.6,35.57,136.47,2022-10-16,18:05:06 913 | keto,Mini Cheesecakes Recipe {low carb / keto},british,37.71,19.79,163.49,2022-10-16,18:05:06 914 | keto,Sara Louise's Keto Stuffed Mushrooms,american,105.8,109.7,81.26,2022-10-16,18:05:06 915 | keto,Keto Chocolate Fudge Haystacks - No Bake,american,23.7,43.78,214.12,2022-10-16,18:05:06 916 | keto,Keto Carb Free Whipped Cream recipes,french,9.76,51.84,176.13,2022-10-16,18:05:06 917 | keto,Keto Italian Cheese Stuffed Mushrooms,italian,84.77,53.03,158.48,2022-10-16,18:05:06 918 | keto,Keto Deviled Green Eggs and Ham,eastern europe,132.31,26.16,181.38,2022-10-16,18:05:06 919 | keto,Sara Louise's Keto Pepper Steak,american,191.85,70.7,172.74,2022-10-16,18:05:06 920 | keto,Keto Fat Head Dough Pizza Recipe,italian,124.29,29.7,168.16,2022-10-16,18:05:13 921 | keto,Sara Louise's Keto Stuffed Peppers,italian,65.89,89.94,142.27,2022-10-16,18:05:13 922 | keto,5-Minute Creamy Keto Cucumber Salad,american,2.18,13.72,22.67,2022-10-16,18:05:13 923 | keto,Keto Chicken and Bacon Lettuce Wraps,american,124.23,8.24,177.52,2022-10-16,18:05:13 924 | keto,"Glazed Ham | Keto, No Added Sugar",american,570.28,162.39,297.48,2022-10-16,18:05:13 925 | keto,40 Minute Fresh Keto Chili recipes,american,172.37,55.88,201.08,2022-10-16,18:05:13 926 | keto,Keto Chicken a la King Recipe,american,210.23,44.42,276.8,2022-10-16,18:05:13 927 | keto,Keto Mini Chocolate Donuts recipes,american,50.79,121.09,239.93,2022-10-16,18:05:13 928 | keto,No Churn Keto Chocolate Ice Cream,italian,43.03,160.97,245.96,2022-10-16,18:05:13 929 | keto,Crispy Keto Fried Chicken recipes,american,115.83,20.78,209.13,2022-10-16,18:05:13 930 | keto,LCHF Keto Coconut lemon vanilla custard,american,24.56,67.07,93.94,2022-10-16,18:05:13 931 | keto,Keto Friendly Chocolate Fat Bombs recipes,french,7.93,7.57,139.89,2022-10-16,18:05:13 932 | keto,Easy Keto Taco Salad Bowl for 2,mexican,47.46,31.33,100.33,2022-10-16,18:05:13 933 | keto,Keto Open-Faced Chicken Cordon Bleu,french,188.45,29.82,194.79,2022-10-16,18:05:13 934 | keto,Keto Beef and Broccoli Stir Fry,chinese,49.94,15.93,40.33,2022-10-16,18:05:13 935 | keto,Mad Creations Keto Creamy Cauliflower Dauphinoise,mediterranean,52.59,41.65,251.4,2022-10-16,18:05:13 936 | keto,Keto Fathead Pizza with Chorizo and Salsa,italian,153.39,40.88,214.66,2022-10-16,18:05:13 937 | keto,Easy Keto Lasagna Stuffed Portobellos - Lo,italian,162.32,55.35,243.42,2022-10-16,18:05:13 938 | keto,Keto Sweet Pecan Tuna Salad recipes,american,131.66,30.76,202.26,2022-10-16,18:05:20 939 | keto,Egg-Free Gluten-Free Keto Wraps,american,4.17,126.79,18.82,2022-10-16,18:05:20 940 | keto,Low-Carb Keto Salmon Curry Recipe,nordic,119.66,57.89,242.72,2022-10-16,18:05:20 941 | keto,Spicy Seasoned Keto Zucchini Fries Recipe,south american,31.24,114.41,19.94,2022-10-16,18:05:20 942 | keto,Keto Mozzarella and Tomato Broiled Shrimp,italian,99.78,20.24,87.74,2022-10-16,18:05:20 943 | keto,Keto Mexican Rice with Chorizo recipes,mexican,79.12,65.39,138.15,2022-10-16,18:05:20 944 | keto,Sara Louise's Keto Zucchini Soup,mediterranean,12.25,32.96,14.57,2022-10-16,18:05:20 945 | keto,Healthy Keto No-Cook Bento Lunchbox,british,66.03,16.08,50.21,2022-10-16,18:05:20 946 | keto,Keto Steak and Mushroom Soup Recipe,american,128.51,104.27,25.43,2022-10-16,18:05:20 947 | keto,Keto Bacon Wrapped Chicken Tenders recipes,american,68.83,5.53,98.26,2022-10-16,18:05:20 948 | keto,Lamb Meatballs with Mint Gremolata - Keto,nordic,175.9,21.94,276.35,2022-10-16,18:05:20 949 | keto,Keto Taco Cups with Avocado Salsa,mexican,140.76,46.68,196.07,2022-10-16,18:05:20 950 | keto,"Roasted Radishes (Paleo, Low Carb, Keto)",american,5.05,25.46,27.73,2022-10-16,18:05:20 951 | keto,Keto Pulled Pork for the Slow Cooker,french,285.67,73.91,181.25,2022-10-16,18:05:20 952 | keto,"Keto Cauliflower Casserole, The Perfect Sidedish",italian,110.12,44.45,220.02,2022-10-16,18:05:26 953 | keto,Keto Green Bean Skillet Pizza recipes,italian,227.07,34.74,269.1,2022-10-16,18:05:26 954 | keto,Low Carb Keto Coconut Cauliflower Rice,british,17.45,42.51,77.14,2022-10-16,18:05:26 955 | keto,"Sausage, Zucchini, and Cauli Keto Risotto",italian,82.19,47.82,150.11,2022-10-16,18:05:26 956 | keto,Keto 3 Bean Salad - Low Carb,american,24.31,39.47,49.81,2022-10-16,18:05:26 957 | keto,Vegan Keto-Friendly Thai Yellow Curry,south east asian,72.13,329.13,173.05,2022-10-16,18:05:26 958 | keto,Keto Chicken Thighs with Charred Lemon,italian,131.04,20.47,154.99,2022-10-16,18:05:26 959 | keto,Keto Low Carb Beef and Broccoli,mediterranean,55.94,29.11,42.98,2022-10-16,18:05:26 960 | keto,Coconut Flour Chocolate Keto Mug Cake,british,17.36,31.7,36.4,2022-10-16,18:05:26 961 | keto,Sara Louise's Keto Chicken Saltimbocca,italian,250.23,41.75,93.5,2022-10-16,18:05:26 962 | keto,Keto No Bake Orange Creamsicle Cheesecake,american,106.71,112.87,498.58,2022-10-16,18:05:26 963 | keto,Keto Salmon in Foil Packets with Pesto,nordic,98.78,20.26,109.87,2022-10-16,18:05:26 964 | keto,Vegan Keto Shortbread Pie Crust recipes,american,16.55,53.02,125.8,2022-10-16,18:05:26 965 | keto,Almond Flour Fried Chicken (Keto-Friendly),american,128.8,116.32,307.62,2022-10-16,18:05:33 966 | keto,New Recipe: Peanut Butter Keto Cups,american,46.36,88.44,296.04,2022-10-16,18:05:33 967 | keto,Keto Raspberry No-Bake Cheesecake recipes,american,31.97,63.83,198.52,2022-10-16,18:05:33 968 | keto,Keto Chicken Salad Stuffed Avocados recipes,mediterranean,41.52,92.24,171.62,2022-10-16,18:05:33 969 | keto,Keto Beef and Broccoli Lo Mein,chinese,132.13,277.41,62.27,2022-10-16,18:05:33 970 | keto,"Keto Roasted Eggplant, Lemon, and Caper Salad",mediterranean,8.39,48.51,55.71,2022-10-16,18:05:33 971 | keto,Keto Salisbury Steak with Mushroom Gravy,british,226.77,46.16,146.65,2022-10-16,18:05:33 972 | keto,Keto Spicy Mango Mojitos - Low Carb,world,1.81,28.3,0.81,2022-10-16,18:05:33 973 | keto,Keto Chocolate Cake in a Mug recipes,british,12.53,14.74,36.95,2022-10-16,18:05:33 974 | keto,Portobello Pizza Keto Stuffed Mushrooms Recipe,italian,59.73,32.92,71.87,2022-10-16,18:05:33 975 | keto,Keto Strawberry Coconut Chia Seed Pudding,british,6.51,18.23,25.06,2022-10-16,18:05:33 976 | keto,Keto Slow Cooker Mexican Chicken Thighs,mexican,118.81,13.06,116.16,2022-10-16,18:05:33 977 | keto,No Eggs! Keto Mini Pizzas recipes,italian,32.18,37.9,17.21,2022-10-16,18:05:33 978 | keto,Sara Louise's Keto Beef and Broccoli,british,112.87,62.46,50.88,2022-10-16,18:05:33 979 | keto,Keto Pesto Shrimp Skewers - Low Carb,italian,19.66,19.02,50.1,2022-10-16,18:05:33 980 | keto,Keto Garlic Parm Buffalo Chicken Dip,american,102.57,17.28,179.68,2022-10-16,18:05:33 981 | keto,Keto Mushroom and Bok Choy Stir-Fry,chinese,19.48,29.85,55.78,2022-10-16,18:05:33 982 | keto,"Loaded Cauliflower (low carb, keto) recipes",british,49.5,30.1,109.97,2022-10-16,18:05:40 983 | keto,Savory Keto Pie Crust recipes,british,60.68,38.08,99.19,2022-10-16,18:05:40 984 | keto,Air Fryer Keto Garlic Cheese 'Bread',american,75.96,9.1,78.4,2022-10-16,18:05:40 985 | keto,Keto Kebab Salad with Tahini Sauce,mediterranean,110.29,85.73,194.24,2022-10-16,18:05:40 986 | keto,Keto Mushroom Wild Rice Pilaf recipes,mediterranean,69.75,79.3,121.41,2022-10-16,18:05:40 987 | keto,Keto Pizza – Turkey Crust Meatza recipes,italian,184.18,12.71,98.31,2022-10-16,18:05:40 988 | keto,Keto Coconut Flour Sausage Balls recipes,american,161.85,79.83,276.87,2022-10-16,18:05:40 989 | keto,Keto Mac and Cheese with Pulled Pork,american,163.68,38.99,177.36,2022-10-16,18:05:40 990 | keto,Keto Pork Rind Puppy Chow recipes,american,51.9,75.76,181.53,2022-10-16,18:05:40 991 | keto,"Southwest Turkey Meatballs (Paleo, Whole30 + Keto)",american,185.17,29.6,71.86,2022-10-16,18:05:40 992 | keto,Air Fryer Keto Onion Rings Recipe,american,40.48,32.67,34.71,2022-10-16,18:05:40 993 | keto,St. Louis Ribs - Keto Style! recipes,american,478.31,27.99,717.47,2022-10-16,18:05:40 994 | keto,Keto Chicken and Cauliflower Rice Soup,american,324.98,105.18,323.29,2022-10-16,18:05:40 995 | keto,Keto Twice Baked Cauliflower Casserole recipes,italian,93.63,61.71,187.39,2022-10-16,18:05:40 996 | keto,Sara Louise's Keto Speed Chili,american,172.88,76.16,257.67,2022-10-16,18:05:40 997 | keto,Ultimate Keto Burger | The Bacon Smash Burger,american,82.93,10.5,176.6,2022-10-16,18:05:40 998 | keto,Keto Spaghetti Squash Puttanesca - Low Carb,italian,8.13,44.53,62.07,2022-10-16,18:05:40 999 | keto,Low Carb Keto Mexican Pizza #ketolicious,italian,104.0,144.34,186.68,2022-10-16,18:05:46 1000 | keto,"Mustard Sardines Salad Recipe [Paleo, Keto]",american,32.18,3.95,14.99,2022-10-16,18:05:46 1001 | keto,Keto Cottage Cheese and Dill Popovers,american,97.91,79.24,187.06,2022-10-16,18:05:46 1002 | keto,Creamy Keto Taco Soup with Ground Beef,mexican,114.4,72.09,218.99,2022-10-16,18:05:46 1003 | keto,"Simple Roasted Radishes (Paleo, Whole30 + Keto)",american,6.61,32.74,26.67,2022-10-16,18:05:46 1004 | keto,Keto Low-Carb Roasted Garlic Gnocchi,italian,59.87,8.27,115.24,2022-10-16,18:05:46 1005 | keto,"Crustless Spinach, Mushroom, and Tomato Quiche (Keto)",french,54.28,32.5,151.42,2022-10-16,18:05:46 1006 | keto,Megan R keto lemon fat bombs,british,20.43,70.24,205.65,2022-10-16,18:05:46 1007 | keto,Crispy Keto Corned Beef & Radish Hash,south american,93.65,8.96,64.49,2022-10-16,18:05:46 1008 | keto,Keto Butter Rum Blondies - Low Carb,american,63.39,138.63,234.16,2022-10-16,18:05:46 1009 | keto,Easy Keto Korean Beef with Cauli Rice,south east asian,89.67,32.44,105.26,2022-10-16,18:05:46 1010 | keto,Keto Mushroom Spinach Stuffed Pork Loin,american,325.28,30.37,153.51,2022-10-16,18:05:46 1011 | keto,Instant Pot Keto Crack Chicken Recipe,french,315.49,8.65,311.39,2022-10-16,18:05:46 1012 | keto,Low Carb Biscuits Recipe (Keto Friendly),british,65.22,42.11,180.0,2022-10-16,18:05:46 1013 | keto,Sara Louise's Keto Cream Of ”Risotto”,italian,18.06,40.33,103.34,2022-10-16,18:05:46 1014 | keto,Keto Apple Dijon Pork Chops Recipe,british,51.28,6.13,99.19,2022-10-16,18:05:46 1015 | keto,Keto Chocolate Peanut Butter Fatbombs recipes,italian,5.91,75.3,169.73,2022-10-16,18:05:53 1016 | keto,Sara Louise's Keto Beef Stew,american,320.1,116.95,136.22,2022-10-16,18:05:53 1017 | keto,"Peach Pulled Pork (Whole30, Paleo, Keto)",american,276.4,58.43,230.98,2022-10-16,18:05:53 1018 | keto,"Raspberry Almond Chia Pudding | Keto, Vegan",british,34.91,37.2,21.84,2022-10-16,18:05:53 1019 | keto,Keto Low Carb Rosemary-garlic Croutons,american,45.96,61.58,160.76,2022-10-16,18:05:53 1020 | keto,"Chicken and Waffles | Keto, Gluten Free",mediterranean,281.57,261.91,512.6,2022-10-16,18:05:53 1021 | keto,Keto Single Serve Chocolate Lava Cake,american,12.25,54.31,30.22,2022-10-16,18:05:53 1022 | keto,Keto Pumpkin Pie Spice Latte recipes,american,6.91,16.88,83.05,2022-10-16,18:05:53 1023 | keto,Sara Louise's Keto Almond Lemon Macaroons,french,58.66,192.51,118.08,2022-10-16,18:05:53 1024 | keto,Keto Shredded Chicken - Mexican White Chilli,mexican,197.46,46.5,116.63,2022-10-16,18:05:53 1025 | keto,Keto Slow Cooker Braised Oxtails recipes,american,185.39,26.71,227.55,2022-10-16,18:05:53 1026 | keto,"Tuna Omelette - Low Carb, Keto, GF",french,54.44,10.68,46.53,2022-10-16,18:05:53 1027 | keto,Keto Mini Vanilla Cloud Cakes recipes,american,69.99,144.48,236.68,2022-10-16,18:05:53 1028 | keto,Keto Spaghetti Squash Primavera - Low Carb,italian,33.92,34.2,67.44,2022-10-16,18:05:53 1029 | keto,Keto Dutch Baby with Chocolate and Macadamia,central europe,36.97,39.12,87.22,2022-10-16,18:05:53 1030 | keto,Easy Four Cheese Pesto Zoodles - Keto,italian,139.89,240.56,195.19,2022-10-16,18:05:53 1031 | keto,One Minute Keto Chocolate Mug Cake,american,13.57,39.67,43.91,2022-10-16,18:06:00 1032 | keto,Pork & Egg Pie (Quiche) recipes,french,158.17,141.1,294.22,2022-10-16,18:06:00 1033 | keto,Keto Sushi Smoked Salmon Roll-Ups,nordic,51.57,14.8,64.0,2022-10-16,18:06:00 1034 | keto,Keto Chocolate Bacon Toffee Ice Cream,british,57.47,377.19,328.13,2022-10-16,18:06:00 1035 | keto,Keto Philly Cheese Steak Skillet Dinner,american,170.91,26.06,235.09,2022-10-16,18:06:00 1036 | keto,KETO BEEF SHIN WITH CREAMED BRUSSELS SPROU,south american,108.95,2.93,32.08,2022-10-16,18:06:00 1037 | keto,Homemade Queso Dip {keto / low carb},caribbean,113.94,18.23,217.03,2022-10-16,18:06:00 1038 | keto,Keto Sheet Pan Curried Chicken - SCKC,american,137.45,27.93,167.71,2022-10-16,18:06:00 1039 | keto,Keto Salted Chocolate Olive Oil Mousse,french,36.81,110.46,154.97,2022-10-16,18:06:00 1040 | keto,Italian Meatball Casserole {Keto/Low Carb},italian,288.53,80.47,314.77,2022-10-16,18:06:00 1041 | keto,"Keto Creamy Spinach, Mushroom, and Tomato Risotto",italian,11.46,27.52,84.72,2022-10-16,18:06:00 1042 | keto,Asian Inspired Keto Pork Chops recipes,chinese,150.08,16.64,65.35,2022-10-16,18:06:00 1043 | keto,Keto Strawberry Jello Salad - Low Carb,french,53.12,73.19,213.66,2022-10-16,18:06:00 1044 | keto,Keto Crock Pot Chocolate Cake recipes,american,67.87,92.06,253.91,2022-10-16,18:06:00 1045 | keto,90 SECOND KETO BREAD WITHOUT EGGY TASTE,american,19.7,7.74,38.36,2022-10-16,18:06:00 1046 | keto,5 Minute Keto Egg Drop Soup recipes,chinese,22.16,14.92,26.79,2022-10-16,18:06:00 1047 | keto,Keto FatHead Rolls (Almond Flour Free),south east asian,136.14,88.31,173.2,2022-10-16,18:06:07 1048 | keto,Keto Pork and Veggie Cauliflower Fried Rice,chinese,133.39,42.64,74.11,2022-10-16,18:06:07 1049 | keto,Keto Matcha Crème Brûlée recipes,french,23.96,29.75,198.68,2022-10-16,18:06:07 1050 | keto,5-Ingredient Keto and Vegan Chocolate Almond Balls,american,49.36,85.59,132.62,2022-10-16,18:06:07 1051 | keto,Easy Keto Grilled Pork Chops Marinade,french,314.0,21.42,281.38,2022-10-16,18:06:07 1052 | keto,Keto Grilled Radish Skewers with Herb Butter,mediterranean,2.02,7.45,46.27,2022-10-16,18:06:07 1053 | keto,Keto Chipotle Red Pepper Cheese Dip,south american,13.12,43.43,45.06,2022-10-16,18:06:07 1054 | keto,Moroccan Ketchup - Keto Spicy Tomato Dip,middle eastern,13.1,70.58,1.78,2022-10-16,18:06:07 1055 | keto,Tzatziki: Indian Style {Low Carb and Keto},mediterranean,29.68,29.92,10.49,2022-10-16,18:06:07 1056 | keto,Spicy Keto Deviled Eggs without Mayo,south american,53.93,28.2,92.82,2022-10-16,18:06:07 1057 | keto,Low Carb Keto Green Bean Casserole,french,47.32,67.02,110.74,2022-10-16,18:06:07 1058 | keto,Keto Instant Pot Broccoli Cheese Soup,french,106.32,105.68,180.41,2022-10-16,18:06:07 1059 | keto,Keto Brown Butter Pecan Ice Cream,american,38.35,93.45,389.26,2022-10-16,18:06:07 1060 | keto,Keto Peanut Butter and Jelly Sandwiches recipes,french,18.51,9.35,32.54,2022-10-16,18:06:07 1061 | keto,Keto Grilled Lobster Tails with Creole Butter,american,114.36,5.29,97.18,2022-10-16,18:06:13 1062 | keto,Keto Asian Chicken Meatballs (Nut Free),south east asian,172.75,18.9,82.14,2022-10-16,18:06:13 1063 | keto,Keto Chili Cheese Dog Casserole recipes,american,243.39,72.42,346.65,2022-10-16,18:06:13 1064 | keto,Keto Cheesy Beef taco skillet with Cauliflower,mexican,162.87,41.5,91.85,2022-10-16,18:06:13 1065 | keto,Sara Louise's Keto Roasted Red Peppers,italian,13.56,82.23,30.98,2022-10-16,18:06:13 1066 | keto,Keto Stuffed Artichokes in the Instant Pot,mediterranean,74.08,94.95,145.35,2022-10-16,18:06:13 1067 | keto,Shamrock Cheesecake Bars,american,53.94,167.33,224.97,2022-10-16,18:06:13 1068 | keto,Low Carb Keto Chicken Parmesan Recipe,italian,306.99,25.95,216.65,2022-10-16,18:06:13 1069 | keto,No-Carb Keto Chocolate Fudge - Ketogenic Dessert,french,12.44,36.18,143.93,2022-10-16,18:06:13 1070 | keto,"Instant Pot Meatloaf (Keto, Low Carb)",french,117.72,21.45,114.73,2022-10-16,18:06:13 1071 | keto,Mexican Mocha Chia Seed Pudding (Keto),british,35.62,90.72,63.23,2022-10-16,18:06:13 1072 | keto,Keto Key Lime Pie Fat Bombs,american,24.03,87.75,262.5,2022-10-16,18:06:13 1073 | keto,Baked Keto Chicken Wings - Sweet & Spicy,south american,241.71,22.98,252.73,2022-10-16,18:06:13 1074 | keto,Easy Keto Ham and Cheese Rolls Recipe,french,119.77,16.59,120.99,2022-10-16,18:06:20 1075 | keto,SUGAR FREE KETO ALMOND CHOCOLATE FUDGE (Ma,italian,7.55,1.49,126.42,2022-10-16,18:06:20 1076 | keto,Keto Broccoli & Cheese Soup {low carb},french,184.47,79.17,335.24,2022-10-16,18:06:20 1077 | keto,Delicious Bacon and Chive Keto Deviled Eggs,eastern europe,39.39,4.88,69.2,2022-10-16,18:06:20 1078 | keto,Keto Teriyaki Turkey Rice Bowl Recipe,japanese,100.37,52.69,64.77,2022-10-16,18:06:20 1079 | keto,Bacon Cups with Keema Beef {KETO FRIENDLY},british,151.07,19.05,293.68,2022-10-16,18:06:20 1080 | keto,Keto Lamb Shanks in the Instant Pot,middle eastern,173.98,21.25,169.66,2022-10-16,18:06:20 1081 | keto,Instant Pot Keto Mississippi Pot Roast,british,197.35,68.73,287.83,2022-10-16,18:06:20 1082 | keto,3 Ingredient Keto Peanut Butter Mug Cake,british,15.19,10.34,25.3,2022-10-16,18:06:20 1083 | keto,Sugar and dairy free keto Easter eggs,french,17.85,111.24,298.01,2022-10-16,18:06:20 1084 | keto,Keto Almond-Crusted Bacon and Tomato Quiche,french,150.09,58.33,420.32,2022-10-16,18:06:20 1085 | keto,Keto Jalapeno Popper Frittata – Low Carb,french,88.72,17.21,196.03,2022-10-16,18:06:20 1086 | keto,Buttered Brussels Sprouts recipes,american,125.95,93.59,266.94,2022-10-16,18:06:20 1087 | keto,The BEST Creamy Keto Skillet Eggs Recipe,american,70.86,7.98,100.93,2022-10-16,18:06:20 1088 | keto,Sara Louise’s Keto First Spanish Omelette,mediterranean,39.65,18.22,49.19,2022-10-16,18:06:20 1089 | keto,Easy Peanut Chicken Keto Stir Fry,chinese,156.27,56.12,210.47,2022-10-16,18:06:20 1090 | keto,Keto Mini Chicken Pot Pies recipes,american,329.1,126.32,581.0,2022-10-16,18:06:20 1091 | keto,"KETO FRIENDLY Cauilflower, bacon and pumpkin soup",american,35.14,46.36,97.42,2022-10-16,18:06:20 1092 | keto,Easy Bacon Cheeseburger Soup (Keto Friendl,italian,129.5,33.88,262.29,2022-10-16,18:06:20 1093 | keto,One-Pot Keto Jambalaya with Cauliflower Rice,american,232.61,80.3,234.1,2022-10-16,18:06:27 1094 | keto,Okra In Spiced Yogurt {Keto Low Carb},indian,53.04,55.6,60.83,2022-10-16,18:06:27 1095 | keto,Easy Keto Turkey Fried Rice Recipe,american,111.17,53.31,72.95,2022-10-16,18:06:27 1096 | keto,Keto Au Gratin Brussels Sprouts recipes,french,40.86,29.51,112.5,2022-10-16,18:06:27 1097 | keto,Low Carb Chicken and Broccoli (Keto-Friendly),british,86.82,112.26,153.23,2022-10-16,18:06:27 1098 | keto,Keto and Low Carb Hamburger Casserole Recipe,american,115.63,60.1,161.99,2022-10-16,18:06:27 1099 | keto,Sara Louise's Keto Smoked Holiday Turkey,american,1092.0,49.28,313.81,2022-10-16,18:06:27 1100 | keto,Pressure-Cooked Keto Butternut Squash Soup,american,25.81,234.3,77.69,2022-10-16,18:06:27 1101 | keto,Instant Pot Keto Smothered Pork Chops,french,128.37,11.05,161.84,2022-10-16,18:06:27 1102 | keto,Bacon Wrapped Cheese Sticks {keto/low carb},american,58.64,6.42,162.47,2022-10-16,18:06:27 1103 | keto,Keto satay chicken bowl with zoodle salad,south east asian,93.75,80.88,189.76,2022-10-16,18:06:27 1104 | keto,Keto Peppermint Coffee Flavor Shots (Fat Bombs),british,0.24,0.95,386.46,2022-10-16,18:06:27 1105 | keto,"Crispy Chicken Thighs | Keto, Paleo, Whole 30",italian,164.03,17.95,176.27,2022-10-16,18:06:27 1106 | keto,Tuna Egg Salad with Sour Cream (Keto),american,98.33,6.68,74.47,2022-10-16,18:06:27 1107 | keto,Easy Low-Carb Keto Broccoli Cheddar Soup,american,102.64,36.71,230.98,2022-10-16,18:06:27 1108 | keto,Keto Spicy Prawn Hand Rolls recipes,british,51.15,29.26,116.43,2022-10-16,18:06:27 1109 | keto,"Keto Buffalo Cauliflower Chorizo ""Mac""-N-Cheese",american,110.33,45.42,209.09,2022-10-16,18:06:34 1110 | keto,Instant Pot® Keto Chicken and Kale Stew,french,85.08,34.62,48.18,2022-10-16,18:06:34 1111 | keto,Keto Vanilla Pudding ( egg and starch free),british,24.38,19.47,96.01,2022-10-16,18:06:34 1112 | keto,Keto Jalapeño Popper Deviled Eggs recipes,mexican,37.05,3.73,63.0,2022-10-16,18:06:34 1113 | keto,Easy Instant Pot® Keto Crack Chicken,american,251.8,14.6,235.28,2022-10-16,18:06:34 1114 | keto,Sara Louise's Keto Cheesy Squash Casserole,italian,67.87,165.33,251.08,2022-10-16,18:06:34 1115 | keto,Easy Keto Lava Cake-Singe Serve,american,10.18,25.42,29.31,2022-10-16,18:06:34 1116 | keto,Tex Mex Chicken Salad,mexican,82.05,57.0,85.93,2022-10-16,18:06:34 1117 | keto,KETO Mexican Melty Chicken Queso Casserole,american,341.59,41.72,253.56,2022-10-16,18:06:34 1118 | keto,Keto Spaghetti Squash with Bacon and Blue Cheese,italian,28.81,31.47,81.97,2022-10-16,18:06:34 1119 | keto,Sara Louise's Keto Instant Chicken Soup,french,455.0,72.21,444.33,2022-10-16,18:06:34 1120 | keto,ULTIMATE KETO LOW CARB BACON CHEESE BURGER,american,23.41,10.49,70.25,2022-10-16,18:06:34 1121 | keto,Sara Louise's Keto Grilled Chicken Fantastics,american,115.87,29.67,154.88,2022-10-16,18:06:34 1122 | keto,"Air Fryer Cauliflower {Whole30, Paleo, Vegan, Keto}",american,8.73,29.85,5.77,2022-10-16,18:06:34 1123 | keto,Bacon Cabbage Chuck Roast Stew - Keto Makeover,american,338.74,43.32,399.95,2022-10-16,18:06:34 1124 | keto,Easy Keto Chicken Shawarma - Low Carb,middle eastern,197.21,22.43,169.76,2022-10-16,18:06:34 1125 | keto,Instant Pot Keto Spinach Artichoke Dip Recipe,mediterranean,124.2,51.8,296.81,2022-10-16,18:06:34 1126 | keto,Keto Diet: Cost Breakdowns of Popular Recipes,american,227.31,27.27,430.02,2022-10-16,18:06:34 1127 | keto,Crispy Keto Fried Chicken in the Air Fryer,chinese,166.09,124.39,158.29,2022-10-16,18:06:34 1128 | keto,"Spaghetti Squash Chow Mein | Keto, Paleo",italian,239.49,58.31,65.29,2022-10-16,18:06:40 1129 | keto,BEST KETO ITALIAN RAGÚ aka BOLOGNES,italian,113.22,28.98,68.25,2022-10-16,18:06:40 1130 | keto,Sara Louise's Keto Chicken Crack Slaw,american,136.49,53.8,144.39,2022-10-16,18:06:40 1131 | keto,Pull-Apart Keto Pizza Bread recipes,italian,128.97,82.16,146.26,2022-10-16,18:06:40 1132 | keto,Vegetable beef soup keto friendly recipe,french,152.27,71.6,62.25,2022-10-16,18:06:40 1133 | keto,SUGAR FREE KETO NEW YORK BAKED CHEESECAKE,american,22.21,13.73,42.8,2022-10-16,18:06:40 1134 | keto,"Chicken Drumsticks - Keto, paleo and under an hour",american,291.07,17.53,148.15,2022-10-16,18:06:40 1135 | keto,Keto sausage egg casserole recipe (no heavy cream),american,109.7,11.65,134.41,2022-10-16,18:06:40 1136 | keto,Sara Louise's Keto Baked Cauliflower Florets,mediterranean,81.75,98.68,140.13,2022-10-16,18:06:40 1137 | keto,"Tres Leches Cake | Keto, Gluten Free",south american,76.73,44.47,268.12,2022-10-16,18:06:40 1138 | keto,Keto Malaysian Curry Puffs / Karipap recipes,indian,269.32,88.03,278.36,2022-10-16,18:06:40 1139 | keto,Keto Coconut Curry Chicken Tenders recipes,south east asian,138.13,32.21,210.53,2022-10-16,18:06:40 1140 | keto,Keto Chicken Pot Pie - Low Carb,american,184.43,58.62,207.79,2022-10-16,18:06:40 1141 | keto,Keto Slow Cooker Brisket Chili Recipe,american,148.04,60.43,212.34,2022-10-16,18:06:40 1142 | keto,Keto Egg Recipe: Asiago Cheese Cloud Eggs,american,55.71,4.86,41.04,2022-10-16,18:06:40 1143 | keto,Keto Stuffed Peppers With Cauliflower Rice Recipe,mediterranean,88.5,49.93,106.59,2022-10-16,18:06:40 1144 | keto,Keto pork chops recipe for busy family,american,133.19,33.45,192.7,2022-10-16,18:06:40 1145 | keto,Sara Louise's Keto Lemon Zucchini Bread,american,35.96,137.03,60.51,2022-10-16,18:06:47 1146 | keto,Keto Tex-Mex Ground Beef Casserole,mexican,190.56,57.05,239.65,2022-10-16,18:06:47 1147 | keto,Keto Thai Chicken Flatbread Pizza recipes,south east asian,255.67,97.13,359.99,2022-10-16,18:06:47 1148 | keto,Keto No Bake Noatmeal Fudge Bars recipes,american,145.02,207.35,507.65,2022-10-16,18:06:47 1149 | keto,Keto Eggplant Burgers Recipe (Chinese Qiezi He),chinese,55.52,40.04,53.65,2022-10-16,18:06:47 1150 | keto,Low Carb & Keto-friendly Baked Onion Rings,american,55.31,46.35,45.23,2022-10-16,18:06:47 1151 | keto,Pork chops keto recipe with asparagus and mushrooms,american,111.27,39.74,87.27,2022-10-16,18:06:47 1152 | keto,"Creamy Roasted Sesame Dressing (Paleo, Whole30, Keto)",mediterranean,3.3,13.24,57.69,2022-10-16,18:06:47 1153 | keto,Keto Cheesy Shrimp Soup Recipe LCHF recipes,american,224.31,46.31,271.65,2022-10-16,18:06:47 1154 | keto,"Keto Beef Tips with Mushrooms, Onions, and Gravy",french,96.76,19.16,63.61,2022-10-16,18:06:47 1155 | keto,Sara Louise's Keto Turkey Zucchini Burgers,american,101.03,19.67,95.98,2022-10-16,18:06:47 1156 | keto,Keto No Bake Pumpkin Pie Cheesecake recipes,american,41.06,49.82,206.62,2022-10-16,18:06:47 1157 | keto,Keto Strawberry Mousse Cake - Low Carb,french,160.15,189.37,612.58,2022-10-16,18:06:47 1158 | keto,Why Salmon The Best For Keto Diet — Steemit,nordic,53.17,5.94,34.58,2022-10-16,18:06:47 1159 | keto,Sara Louise's Keto Tunisian Spicy Tuna,south american,261.41,43.76,114.79,2022-10-16,18:06:47 1160 | keto,Creamy Keto Cucumber Salad [5-Min Recipe],american,1.58,10.39,22.57,2022-10-16,18:06:47 1161 | keto,"Keto Salmon Curry Recipe [Paleo, Low-Carb]",nordic,100.2,30.96,104.15,2022-10-16,18:06:54 1162 | keto,"Carrot Cake Cheesecake | Keto, Instant Pot",american,59.9,122.72,232.24,2022-10-16,18:06:54 1163 | keto,Keto Vegan Roasted Garlic Smashed Cauliflower | Blog,american,12.97,33.4,44.15,2022-10-16,18:06:54 1164 | keto,Sara Louise's Keto Chicken Fried “Rice”,chinese,134.49,45.94,83.48,2022-10-16,18:06:54 1165 | keto,"Sausage Stuffed Portobello Mushrooms (Paleo, Whole30 + Keto)",italian,157.17,63.84,229.46,2022-10-16,18:06:54 1166 | keto,Roasted Leeks with Eggs (Paleo and Keto-Friendly),french,24.25,58.84,242.0,2022-10-16,18:06:54 1167 | keto,Keto Adobo Air Fried Chicken Thighs Recipe,mediterranean,160.26,8.18,174.45,2022-10-16,18:06:54 1168 | keto,Easy Keto Thai Skillet Chicken recipes,south east asian,118.1,70.22,178.22,2022-10-16,18:06:54 1169 | keto,Keto Sausage and Wild Cauliflower Rice Casserole,american,127.3,106.15,219.08,2022-10-16,18:06:54 1170 | keto,Keto French Fries - Low Carb Jicama Fries,american,4.9,48.95,55.11,2022-10-16,18:06:54 1171 | keto,Sara Louise's Keto Louisiana Chicken Gumbo,american,189.01,102.88,274.89,2022-10-16,18:06:54 1172 | keto,Keto Lemon-Garlic Chicken Thighs in the Air Fryer,mediterranean,128.65,11.21,155.67,2022-10-16,18:06:54 1173 | keto,Broccoli Cauliflower Soup,central europe,50.26,100.93,27.18,2022-10-16,18:06:54 1174 | keto,Instant Pot® Keto Pumpkin Soup with Sausage,american,60.47,72.4,107.03,2022-10-16,18:06:54 1175 | keto,Raw Vegan Keto Strawberry Crumble (sweetener-free),american,14.11,52.65,56.69,2022-10-16,18:06:54 1176 | keto,Sara Louise's Keto Vegetable Meat Loaf,american,253.14,86.4,94.61,2022-10-16,18:06:54 1177 | keto,Giant Stuffed 3 Cheese Meatballs | Keto recipes,american,180.13,12.63,134.44,2022-10-16,18:07:03 1178 | keto,Jalapeno And Cheddar Cauliflower Muffins - Keto Recipe,british,125.8,41.11,157.48,2022-10-16,18:07:03 1179 | keto,Dark Chocolate Espresso Paleo and Keto Mug Cake,french,16.95,58.01,70.58,2022-10-16,18:07:03 1180 | keto,"Whole30 + Paleo Frittata {Dairy-Free, GF, Keto}",italian,52.67,21.36,49.83,2022-10-16,18:07:03 1181 | keto,Brown Butter Pecan Keto Ice Cream recipes,american,10.94,16.48,169.72,2022-10-16,18:07:03 1182 | keto,Easy Keto Low Carb Taco Soup Recipe,mexican,88.18,55.1,173.29,2022-10-16,18:07:03 1183 | keto,Sara Louise's Keto Beef Zucchini Lasagna,italian,203.78,144.66,305.14,2022-10-16,18:07:03 1184 | keto,Low Carb Lemon Bar Recipe - Keto & Glu,american,52.28,59.98,273.09,2022-10-16,18:07:03 1185 | keto,Low Carb Keto Asiago Alfredo Brussels Sprouts,italian,95.67,97.25,191.06,2022-10-16,18:07:03 1186 | keto,Easy Low Carb Keto Creamed Spinach Recipe,french,18.56,23.32,118.65,2022-10-16,18:07:03 1187 | keto,Keto Teriyaki Beef on a Stick - Low Carb,japanese,101.88,5.57,27.28,2022-10-16,18:07:03 1188 | keto,Keto Egg Roll in a Bowl [Recipe] recipes,italian,96.71,72.16,111.75,2022-10-16,18:07:03 1189 | keto,Keto Coconut Flour Tortillas/ from primaledgehealth.com,mexican,15.17,7.84,36.47,2022-10-16,18:07:03 1190 | keto,Keto Carrot Cake with Cream Cheese Frosting,american,76.43,155.74,250.22,2022-10-16,18:07:03 1191 | keto,Keto Gluten-Free Almond Carrot Cake recipes,british,49.48,46.71,202.89,2022-10-16,18:07:03 1192 | keto,Keto Salmon and Creamy Turmeric Veggies recipes,nordic,156.7,68.03,160.89,2022-10-16,18:07:03 1193 | keto,[DRESSING INGREDIENTS MISSING] Keto Mediterranean Broccoli Salad,mediterranean,27.66,71.18,25.82,2022-10-16,18:07:03 1194 | keto,"Chinese Chicken and Broccoli | Keto, Low Calorie",chinese,232.64,63.01,46.03,2022-10-16,18:07:03 1195 | keto,Instant Pot Bacon Cheddar Egg Bites (KETO),french,93.03,10.26,162.68,2022-10-16,18:07:10 1196 | keto,Sara Louise's Keto Fat Bomb Lettuce Wraps,french,29.45,22.69,158.24,2022-10-16,18:07:10 1197 | keto,"Chinese Bamboo Salad Recipe [Paleo, AIP, Keto]",chinese,3.94,7.38,14.61,2022-10-16,18:07:10 1198 | keto,"Mini Bacon Wrapped Meatloaf (Paleo, Whole30, Keto)",american,108.19,19.83,220.57,2022-10-16,18:07:10 1199 | keto,Loaded Keto Potato Dip (Low Carb Friendly),british,12.8,10.69,82.27,2022-10-16,18:07:10 1200 | keto,Cajun Butter Steak Bites,american,134.33,16.43,171.92,2022-10-16,18:07:10 1201 | keto,The Best Keto Beef Stew Crockpot Recipe,south american,229.55,90.35,76.82,2022-10-16,18:07:10 1202 | keto,Keto Chicken Broccoli Casserole with Cream Cheese,american,202.77,62.82,227.46,2022-10-16,18:07:10 1203 | keto,Cabbage Soup Recipe [Keto & Low Carb] recipes,middle eastern,176.06,97.47,184.35,2022-10-16,18:07:10 1204 | keto,"Whole30 Ground Beef Taco Meat (Keto, Paleo)",mexican,89.43,47.16,106.19,2022-10-16,18:07:10 1205 | keto,"Leftover Turkey Stir-fry (Paleo, Whole30 + Keto)",american,131.1,36.31,31.61,2022-10-16,18:07:10 1206 | keto,Keto Waffles Stuffed with Cream Cheese [Recipe] recipes,american,28.41,3.95,81.41,2022-10-16,18:07:10 1207 | keto,Keto Pumpkin Cheesecake with Almond Pecan Crust,american,114.22,141.2,294.77,2022-10-16,18:07:10 1208 | keto,"Mayo Free Deviled Eggs (Paleo, Whole30 + Keto)",italian,766.99,41.29,287.59,2022-10-16,18:07:10 1209 | keto,Keto Chocolate Peanut Butter Mug Cake recipes,american,13.48,34.39,44.04,2022-10-16,18:07:10 1210 | keto,Pressure Cooker Keto Creamy Shrimp Scampi recipes,chinese,156.32,179.87,64.86,2022-10-16,18:07:10 1211 | keto,"Crispy Turnip Fries {Whole30, Paleo, Vegan, Keto}",american,2.93,26.02,29.02,2022-10-16,18:07:10 1212 | keto,"Creamy Asparagus Mash Recipe [Paleo, Keto, AIP]",mediterranean,5.21,12.02,13.93,2022-10-16,18:07:10 1213 | keto,Low Carb Sugar Free Keto Blueberry Muffins,american,92.13,110.8,264.5,2022-10-16,18:07:16 1214 | keto,Keto Broccoli Cottage cheese balls (Low carb),american,57.88,40.87,72.68,2022-10-16,18:07:16 1215 | keto,Keto Fried Chicken {Asiago & Parmesan Breading} recipes,american,295.13,8.26,159.48,2022-10-16,18:07:16 1216 | keto,Keto Air Fryer Salmon Cakes with Sriracha Mayo,nordic,106.95,10.4,128.73,2022-10-16,18:07:16 1217 | keto,Vegan Keto Spaghetti Squash (Happy Thanksgiving!) recipes,american,4.32,40.55,30.4,2022-10-16,18:07:16 1218 | keto,"Paleo Chicken Noodle Soup Recipe [AIP, Keto]",asian,57.43,33.95,53.48,2022-10-16,18:07:16 1219 | keto,Southern Green Beans {Keto Friendly/Low Carb},american,19.77,76.72,45.05,2022-10-16,18:07:16 1220 | keto,"Keto Short Rib Ragu - Instant Pot, SCKC",french,219.27,47.01,566.84,2022-10-16,18:07:16 1221 | keto,"Low-Carb, Keto Cheeseburger Stuffed Peppers Recipe",american,106.98,76.95,106.47,2022-10-16,18:07:16 1222 | keto,"Flourless Pumpkin Mug Cake (Keto, Low Carb)",american,13.43,30.38,29.87,2022-10-16,18:07:16 1223 | keto,Keto Instant Pot® Soup (Low Carb),american,116.4,108.63,148.25,2022-10-16,18:07:16 1224 | keto,Low/Carb - Keto Friendly Cauliflower Crust Pizza,italian,219.29,29.05,302.26,2022-10-16,18:07:16 1225 | keto,Simple Keto BBQ Pulled Chicken recipes,american,439.53,51.04,372.3,2022-10-16,18:07:16 1226 | keto,"Lemon Garlic Baked Shrimp Recipe [Paleo, Keto]",mediterranean,99.82,31.72,29.53,2022-10-16,18:07:16 1227 | keto,One-Pan Keto Chicken Breast with Vegetable Ragout,american,137.9,46.56,80.18,2022-10-16,18:07:16 1228 | keto,"Easy Low-Carb, Keto Spinach Dip Recipe",american,84.62,30.05,163.5,2022-10-16,18:07:23 1229 | keto,Easy Creamy Garlic Parmesan Keto Pork Chops,american,188.74,22.87,217.86,2022-10-16,18:07:23 1230 | keto,Mad Creations Keto Greek Garlic Lemon Marinade,mediterranean,2.66,19.09,109.09,2022-10-16,18:07:23 1231 | keto,"Low-Carb Almond Coconut Sandies (Keto, Gluten-Free)",american,33.79,44.65,183.53,2022-10-16,18:07:23 1232 | keto,Keto Chilli Chicken | Andhra Style Chicken Recipe,french,297.22,50.45,301.39,2022-10-16,18:07:23 1233 | keto,"Raspberry Arugula Salad Recipe [Paleo, Keto, AIP]",mediterranean,5.06,21.21,19.52,2022-10-16,18:07:23 1234 | keto,Aunt Rocky’s Crustless Quiche Lorraine (LCHF/Keto),french,71.79,35.12,138.53,2022-10-16,18:07:23 1235 | keto,Dairy-Free Keto and Vegan Chocolate Fat Bombs,american,34.63,48.42,184.27,2022-10-16,18:07:23 1236 | keto,Sara Louise's Keto Lemon Basil Roasted Chicken,mediterranean,348.25,20.35,322.36,2022-10-16,18:07:23 1237 | keto,"Homemade Ketchup Recipe | Sugar Free, Keto, and Paleo",american,8.27,42.17,1.08,2022-10-16,18:07:23 1238 | keto,Keto Turkey Meatballs with Sour Cream-Horseradish Dip,american,139.58,32.11,136.32,2022-10-16,18:07:23 1239 | keto,Sara Louise's Keto Lime Cilantro Grilled Chicken,mediterranean,113.65,12.88,221.16,2022-10-16,18:07:23 1240 | keto,White Chocolate Nut-Free Keto and Vegan Fat Bombs,american,0.0,0.45,218.0,2022-10-16,18:07:23 1241 | keto,Keto Diet Recipe - Bacon Wrapped Asparagus with Eggs,american,40.95,12.42,74.19,2022-10-16,18:07:23 1242 | keto,Low-Carb Keto Chicken “Noodle” Soup recipes,asian,171.31,285.58,77.14,2022-10-16,18:07:30 1243 | keto,"Chicken Alfredo Spaghetti Squash Low-Carb, Keto",italian,96.92,47.95,231.94,2022-10-16,18:07:30 1244 | keto,"Sesame Ginger Fish Cakes (Paleo, Whole30 + Keto)",south east asian,99.21,50.6,44.65,2022-10-16,18:07:30 1245 | keto,Sara Louise's Keto Overnight Marinated Rosemary Chicken,american,142.56,10.1,171.38,2022-10-16,18:07:30 1246 | keto,"Paleo Kimchi Beef Stir-Fry (Whole30, Keto)",american,66.68,45.64,31.42,2022-10-16,18:07:30 1247 | keto,Keto Pumpkin Spice Haystack Cookies - Low Carb,american,21.43,49.02,245.96,2022-10-16,18:07:30 1248 | keto,Easiest Keto Meatza You’ll Ever Make! recipes,american,149.54,21.9,110.64,2022-10-16,18:07:30 1249 | keto,Green Buttered Eggs - Keto and Low Carb recipes,american,23.48,6.11,53.51,2022-10-16,18:07:30 1250 | keto,Easy Keto Shrimp Scampi - Low Carb & G,chinese,127.05,39.09,61.23,2022-10-16,18:07:30 1251 | keto,"Keto Shrimp Fried Rice [Grain-free, Paleo]",chinese,55.56,22.35,61.89,2022-10-16,18:07:30 1252 | keto,Instant Pot® Keto Crustless Spinach and Gouda Quiche,french,65.94,23.16,110.41,2022-10-16,18:07:30 1253 | keto,Keto Faux Sous Vide Egg Bites recipes,french,143.67,18.13,200.66,2022-10-16,18:07:30 1254 | keto,"Crockpot Chicken Enchilada Bowls (Paleo, Whole30 + Keto)",south american,139.86,76.81,135.28,2022-10-16,18:07:30 1255 | keto,Keto Pecan-Crusted Pork Chops in the Air Fryer,american,184.97,22.69,183.99,2022-10-16,18:07:30 1256 | keto,"Caesar Turkey Burger Bowls (Paleo, Whole30 + Keto)",american,169.12,30.04,230.99,2022-10-16,18:07:30 1257 | keto,Aunt Rocky’s Keto Pumpkin Spice Latte (Sugar-Free),world,1.13,41.1,11.31,2022-10-16,18:07:37 1258 | keto,Quick and Easy Keto Sweet and Sour Sesame Chicken,chinese,77.35,14.08,103.7,2022-10-16,18:07:37 1259 | keto,Slow Cooker Keto Chicken Tikka Masala recipes,indian,204.39,59.2,354.32,2022-10-16,18:07:37 1260 | keto,"Crispy Cauliflower Salad | Paleo, Keto, Low-carb",french,35.07,72.95,78.1,2022-10-16,18:07:37 1261 | keto,"Bacon Sausage and Zucchini Casserole (Paleo, Whole30 + Keto)",italian,153.22,37.26,235.3,2022-10-16,18:07:37 1262 | keto,Air Fried Asparagus with Garlic and Parmesan | Keto Friendly,american,3.75,1.26,6.93,2022-10-16,18:07:37 1263 | keto,Keto Instant Pot Red Wine Pork Stew,french,109.86,35.36,164.8,2022-10-16,18:07:37 1264 | keto,"5-Min Prosciutto Avocado Fat Bomb Recipe [Paleo, Keto]",italian,50.36,24.7,43.33,2022-10-16,18:07:37 1265 | keto,"Turkey Meatballs (Low-carb, Keto, Gluten-free)",american,231.23,17.2,298.63,2022-10-16,18:07:37 1266 | keto,Priya’s #Keto Chocolate and Peanut Butter Fingers recipes,american,28.94,131.03,133.98,2022-10-16,18:07:37 1267 | keto,Priya's Yummy Keto Yogurt Soup - Vegetarian Recipe,american,5.66,13.22,17.28,2022-10-16,18:07:37 1268 | keto,Keto Lo Mein - Low Carb & Gluten Free,chinese,74.91,92.07,55.57,2022-10-16,18:07:37 1269 | keto,"Low Carb Salmon Cakes (Keto, Grain Free)",nordic,656.95,13.25,501.19,2022-10-16,18:07:37 1270 | keto,Easy Keto Broccoli Slaw Recipe (Low Carb a,american,11.34,29.01,75.19,2022-10-16,18:07:37 1271 | keto,Sara louise's Keto Sweet Chicken And Jalapeno Slices,american,285.5,115.26,126.23,2022-10-16,18:07:37 1272 | keto,"Easy Keto Tuna Salad - Low Carb, Paleo, Wh",american,122.72,1.61,39.47,2022-10-16,18:07:37 1273 | keto,Keto Pork Chops al Pastor - Low Carb,italian,108.02,12.96,151.9,2022-10-16,18:07:44 1274 | keto,Keto Grain-free Bacon and Shrimp Risotto recipes,italian,34.81,20.43,18.95,2022-10-16,18:07:44 1275 | keto,"Roasted Radish Hash (AIP, Paleo, Keto, Low-FODMAP)",american,4.02,19.88,20.85,2022-10-16,18:07:44 1276 | keto,"Moo Goo Gai Pan | Keto, Gluten Free",chinese,242.32,149.7,68.24,2022-10-16,18:07:44 1277 | keto,Keto Low-Carb Creamy Garlic Shrimp Alfredo,italian,114.37,32.89,177.04,2022-10-16,18:07:44 1278 | keto,Crock-Pot Beef Stew {Keto/Low Carb},american,159.54,77.39,69.35,2022-10-16,18:07:44 1279 | keto,Keto Nutty Chocolate Cups - Delicious Low Carb Snack,american,62.39,153.83,158.72,2022-10-16,18:07:44 1280 | keto,"Gluten Free, Keto Friendly, Low Carb, Pie crust",british,43.48,102.28,134.1,2022-10-16,18:07:44 1281 | keto,"Fish and Leek Saute Recipe [Paleo, AIP, Keto]",mediterranean,49.88,13.97,18.07,2022-10-16,18:07:44 1282 | keto,"Greek Chicken Burgers (Paleo, Whole30, Keto, AIP)",mediterranean,95.51,45.45,74.93,2022-10-16,18:07:44 1283 | keto,KETO LOW CARB GREEN THAI CHICKEN CURRY,south east asian,211.52,246.0,397.35,2022-10-16,18:07:44 1284 | keto,"Paleo Egg Frittata Muffins Recipe [Keto, Dairy-Free]",american,48.87,17.02,57.69,2022-10-16,18:07:44 1285 | keto,Low Carb and Keto Chicken Alfredo Pasta Re,italian,141.3,117.92,276.21,2022-10-16,18:07:44 1286 | keto,Sara Louise's Keto Korean Beef Zo Mein,italian,220.23,57.19,115.84,2022-10-16,18:07:50 1287 | keto,Keto Smoky Chicken and Vegetable Sheet Pan Dinner,british,211.65,96.02,237.49,2022-10-16,18:07:50 1288 | keto,Instant pot or Foodi Keto Steak Rolls and Asparagus,french,194.45,33.01,170.3,2022-10-16,18:07:50 1289 | keto,"Crispy Air Fryer Pork Chops | Keto, Gluten Free",nordic,167.82,12.79,85.36,2022-10-16,18:07:50 1290 | keto,"Paleo Passion Fruit Side Salad Recipe [Keto, AIP]",italian,2.05,7.75,11.34,2022-10-16,18:07:50 1291 | keto,Keto Low Carb Baked Crack Chicken Cups Recipe,american,313.07,12.35,114.87,2022-10-16,18:07:50 1292 | keto,"Strawberry Matcha Chia Pudding Recipe [Paleo, Keto, Vegan]",british,6.4,13.74,40.33,2022-10-16,18:07:50 1293 | keto,"Turkey and Summer Vegetable Soup (Paleo, Whole30 + Keto)",american,242.35,156.35,111.04,2022-10-16,18:07:50 1294 | keto,Keto low carb vanilla and Chocolate Fudgesicle #ketolicious,american,16.18,35.57,187.88,2022-10-16,18:07:50 1295 | keto,Sausage Cheese Balls – Low Carb / Keto Friendly Recipe,american,108.39,291.76,97.26,2022-10-16,18:07:50 1296 | keto,Sara Louise's Keto Thai Coconut Curry Soup,south east asian,31.54,151.04,285.54,2022-10-16,18:07:50 1297 | keto,"Keto Cauliflower Hash Browns (Grain Free, Low Carb)",french,45.28,19.44,29.66,2022-10-16,18:07:50 1298 | keto,Keto Lime Pork Chops {Crock Pot Meals} recipes,american,342.17,18.79,96.14,2022-10-16,18:07:50 1299 | keto,Air Fryer Keto Low Carb Fried Chicken Recipe,american,235.37,21.22,126.31,2022-10-16,18:07:50 1300 | keto,The Best Keto Low Carb Vegetable Soup Recipe,american,77.09,187.62,56.07,2022-10-16,18:07:50 1301 | keto,Keto Fathead Pizza and Pigs in a Blanket (GAPS too!),italian,125.05,28.72,160.02,2022-10-16,18:07:57 1302 | keto,"Raw Italian Cauliflower Salad Recipe [Paleo, Keto, AIP]",italian,4.57,13.59,29.47,2022-10-16,18:07:57 1303 | keto,"Gluten Free, Keto Friendly, Low Carb, Pound Cake",french,120.27,368.37,341.92,2022-10-16,18:07:57 1304 | keto,"keto broccoli salad - Low Carb, Gluten-Free, Ketogenic",american,57.87,29.67,284.12,2022-10-16,18:07:57 1305 | keto,"Air Fryer Keto Fried Chicken | Paleo, Gluten Free",american,286.43,23.91,262.67,2022-10-16,18:07:57 1306 | keto,"Keto Cauliflower Pizza Crust | Thin, Crispy, Dairy Free",italian,33.04,54.69,37.79,2022-10-16,18:07:57 1307 | keto,Keto Mongolian Beef | Instant Pot or Slow Cooker,asian,209.09,30.18,107.41,2022-10-16,18:07:57 1308 | keto,Keto BBQ Chicken Pizza (Dairy Free Crust) recipes,italian,118.21,93.01,118.82,2022-10-16,18:07:57 1309 | keto,Shan's Wilted Spinach Salad (Keto/Low carb friendly),american,13.16,17.92,12.79,2022-10-16,18:07:57 1310 | keto,Keto Eggs Benedict Casserole with Easy Hollandaise Sauce,french,216.64,76.64,396.84,2022-10-16,18:07:57 1311 | keto,Keto Collard Greens with Burst Cherry Tomatoes [Recipe] recipes,south american,25.79,30.46,36.65,2022-10-16,18:07:57 1312 | keto,"Keto Beef Barley Soup - Instant Pot, Whole 30",american,345.68,67.33,154.08,2022-10-16,18:07:57 1313 | keto,Cheese spinach stuffed chicken breast (keto / low carb),british,216.17,7.21,76.41,2022-10-16,18:07:57 1314 | keto,Herb-loaded keto pork meatballs with zucchini noodles,asian,309.63,1047.29,161.25,2022-10-16,18:07:57 1315 | keto,keto Low Carb Hot Tuscan Chicken casserole #ketolicious,italian,111.85,23.42,244.27,2022-10-16,18:08:04 1316 | keto,"Easy Keto Basil Pesto Recipe [Dairy-Free, No Cheese]",italian,9.5,11.52,12.53,2022-10-16,18:08:04 1317 | keto,Keto Chicken Breast Pot Pie with Cauliflower Crust,british,104.27,73.24,126.48,2022-10-16,18:08:04 1318 | keto,Aunt Rocky’s Strawberry Crème Fraîche Instant Keto Dessert,french,0.94,10.41,11.08,2022-10-16,18:08:04 1319 | keto,"Cauliflower Tabouli (Tabbouleh) Salad Recipe [Paleo, Keto, AIP]",middle eastern,3.13,12.46,14.1,2022-10-16,18:08:04 1320 | keto,Oven-Baked Keto Chicken Thighs with Creamed Spinach and Mushrooms,american,363.53,90.5,491.97,2022-10-16,18:08:04 1321 | keto,Paleo Beef with Broccoli (Whole30/Keto friendly) recipes,italian,105.64,79.35,132.76,2022-10-16,18:08:04 1322 | keto,Sara Louise's Keto Creamy Lemon Fillet Of Fish,american,196.46,33.36,214.78,2022-10-16,18:08:04 1323 | keto,"Keto Chicken Sausage Salad with Bacon, Cheese, and Avocado",american,48.16,47.76,150.23,2022-10-16,18:08:04 1324 | keto,Keto Cheddar Biscuits with Coconut Flour and Sesame Flour,american,277.07,53.8,262.18,2022-10-16,18:08:04 1325 | keto,"Crunchy Salad Toppers (Whole30, Paleo, GF, Keto, Vegan)",american,34.27,20.99,72.53,2022-10-16,18:08:04 1326 | keto,Ketogenic Til Laddoo or Sesame Sweet | Indian Keto Dessert,indian,21.12,31.11,100.74,2022-10-16,18:08:04 1327 | keto,"Low Carb Onion Rings - Gluten-Free, Keto recipes",american,115.23,51.5,183.16,2022-10-16,18:08:04 1328 | keto,"Keto Chicken Cabbage Casserole (Low Carb, Primal, GAPS)",middle eastern,194.51,44.51,159.21,2022-10-16,18:08:04 1329 | keto,Thai Chicken Wings - Peak Gai Yang - Keto - LCHF,south east asian,11.64,26.01,19.29,2022-10-16,18:08:04 1330 | keto,"Avocado Cucumber Ginger Salad Recipe [Paleo, Keto, AIP]",american,3.69,19.07,24.77,2022-10-16,18:08:04 1331 | keto,Keto Lemon Chicken with Asparagus | Easy Low Carb Recipe,british,143.31,31.76,152.31,2022-10-16,18:08:10 1332 | keto,"Low-Carb, Keto Tarts With Berries And Mascarpone Cream",american,69.25,93.92,271.34,2022-10-16,18:08:10 1333 | keto,Keto Beef Rags – Low Carb & Diabetic Friendly recipes,british,262.54,21.82,293.64,2022-10-16,18:08:10 1334 | keto,"Parmesan Chicken Nuggets Recipe – Low Carb, Keto Diet recipes",american,120.19,5.53,119.48,2022-10-16,18:08:10 1335 | keto,Keto Roasted Raan | Delicious Low-Carb Lamb Recipe,british,266.77,74.77,375.73,2022-10-16,18:08:10 1336 | keto,Sara Louise's Keto Smoked Salmon and Feta Cheese Quiche,nordic,140.39,13.64,119.4,2022-10-16,18:08:10 1337 | keto,"Marinated Mushrooms Recipe – {Vegan, Keto, Paleo, Gluten-Free}",american,25.12,77.07,436.57,2022-10-16,18:08:10 1338 | keto,Keto Protein Desserts: Made With your Favourite Protien Powder,american,28.08,9.29,18.37,2022-10-16,18:08:10 1339 | keto,"Garlic Oregano Olive Tapenade Recipe [Paleo, AIP, Keto]",mediterranean,50.64,21.61,63.52,2022-10-16,18:08:10 1340 | keto,"Mushroom, Spinach and Bacon Egg Muffins (Paleo, Whole30 + Keto)",american,106.32,58.7,215.74,2022-10-16,18:08:10 1341 | keto,Keto Instant Pot or Slow Cooker Chili Queso Dip,american,42.21,8.19,84.89,2022-10-16,18:08:10 1342 | keto,"Keto Lemon Cake With Blueberries {Low-Carb, Gluten-Free}",american,59.87,46.37,100.58,2022-10-16,18:08:10 1343 | keto,Keto Low Carb Pot Roast Slow Cooker Recipe,american,398.82,45.74,127.03,2022-10-16,18:08:10 1344 | keto,"Slow Cooker Zuppa Toscana (low carb, keto friendly)",italian,151.15,101.29,398.5,2022-10-16,18:08:10 1345 | keto,"Low Carb Hamburger Soup Recipe (Whole30, Keto, Paleo)",american,173.6,73.82,208.8,2022-10-16,18:08:10 1346 | keto,Keto Low Carb Pizza Casserole Recipe (Easy) - 5 Ingredients,italian,147.72,89.22,188.27,2022-10-16,18:08:10 1347 | keto,"No Churn Mint Chip Ice Cream | Keto, Sugar Free",american,12.69,171.37,212.24,2022-10-16,18:08:10 1348 | keto,"Orange and Five-Spice Roasted Chicken Legs | Keto, Paleo",mediterranean,677.22,41.71,686.9,2022-10-16,18:08:10 1349 | keto,"Cream Cheese Spinach Stuffed Chicken (Low-carb, Keto)",american,112.64,15.78,98.81,2022-10-16,18:08:17 1350 | keto,"Easy Crockpot Chicken Stew (Low Carb, Keto) recipes",american,149.85,46.0,182.67,2022-10-16,18:08:17 1351 | keto,"Chocolate Coconut Coffee Creamer {Paleo, Dairy-Free, Keto, Vegan}",american,2.21,14.72,28.6,2022-10-16,18:08:17 1352 | keto,Broccoli Cheddar Soup (Keto-3.7 net carbs per serving),american,116.23,192.1,347.33,2022-10-16,18:08:17 1353 | keto,"Super Sloppy Joe Stuffed Peppers (keto, low carb)",american,130.71,44.36,163.82,2022-10-16,18:08:17 1354 | keto,Easy Keto Low Carb Meatballs Recipe - Italian Style,italian,104.51,28.37,114.97,2022-10-16,18:08:17 1355 | keto,"Taco Salad - Low Carb, Keto, Gluten-Free recipes",mexican,57.77,33.73,80.7,2022-10-16,18:08:17 1356 | keto,Low Carb Keto Sausage Balls Recipe With Cream Cheese,american,197.31,65.09,391.43,2022-10-16,18:08:17 1357 | keto,"Chicken Skillet with Bacon Brussels Sprouts (Paleo, Whole30 + Keto)",italian,284.3,60.25,99.57,2022-10-16,18:08:17 1358 | keto,Easy Keto Shrimp Scampi - Low Carb & Gluten Free,south east asian,127.05,39.09,61.23,2022-10-16,18:08:17 1359 | keto,Chicken Parmigiana (Keto/Gluten-free/Low-carb) recipes,italian,248.2,64.35,171.14,2022-10-16,18:08:17 1360 | keto,The Best Low Carb Keto Psyllium-Flax Bread recipes,american,107.72,187.02,171.45,2022-10-16,18:08:17 1361 | keto,Chicken Pot Pie Soup | Keto | Low carb recipe,american,59.87,20.07,102.26,2022-10-16,18:08:17 1362 | keto,"Mini Zucchini Avocado Burgers Recipe [Paleo, Keto, AIP]",american,44.44,15.24,93.04,2022-10-16,18:08:17 1363 | keto,"Coconut Oil Baked Spaghetti Squash Recipe [Paleo, AIP, Keto]",italian,2.59,27.92,16.12,2022-10-16,18:08:17 1364 | keto,"Paleo Caesar Dressing Recipe (2 Methods) [Keto, Dairy-Free]",american,12.28,5.99,227.86,2022-10-16,18:08:17 1365 | keto,Low carb and Keto Chocolate Candy Kisses (Baci) recipes,american,16.84,37.21,139.49,2022-10-16,18:08:17 1366 | keto,Low Carb Keto Soy Wrapped Spicy Salmon Sushi Roll,nordic,88.9,8.65,91.63,2022-10-16,18:08:24 1367 | keto,"Keto Chicken Cauliflower Casserole Recipe [Dairy-Free, Paleo]",italian,114.07,102.01,147.95,2022-10-16,18:08:24 1368 | keto,Instant Pot Broccoli Cheese Soup--HUGE Batch KETO,american,186.92,148.87,801.84,2022-10-16,18:08:24 1369 | keto,"Low Carb Mexican Pizza - Keto, Gluten Free recipes",italian,138.46,38.44,208.23,2022-10-16,18:08:24 1370 | keto,"Baked Tuna Melt Jalapeño Poppers (Keto, Gluten-Free)",mexican,294.53,187.42,280.9,2022-10-16,18:08:24 1371 | keto,Keto Pizza Cauliflower Casserole (low carb and gluten free),italian,270.18,78.05,406.22,2022-10-16,18:08:24 1372 | keto,Sara Louise's Keto Hungarian Chicken Paprikash (Instant Pot),central europe,243.48,67.79,230.33,2022-10-16,18:08:24 1373 | keto,"Paleo Passion Fruit Coconut Yogurt Parfait Recipe [AIP, Keto]",french,1.69,507.23,3.13,2022-10-16,18:08:24 1374 | keto,Wednesday Keto Diet Plan | Veg and Non-Vegetarian Recipes,american,187.76,47.75,276.05,2022-10-16,18:08:24 1375 | keto,"Almond Butter Freezer Fudge (Keto, Vegan, Gluten-free, Paleo)",american,55.06,75.09,200.22,2022-10-16,18:08:24 1376 | keto,Keto Rocket Fuel Cafe Mocha with Chia Seeds recipes,american,4.5,9.77,27.72,2022-10-16,18:08:24 1377 | keto,Priya's Keto Avocado Garlic Chutney - Step by Step Recipe,indian,7.46,32.94,32.35,2022-10-16,18:08:31 1378 | keto,Broccoli Kale Pizza Crust Recipe | Crispy Keto Pizza Crust,italian,47.53,71.41,39.84,2022-10-16,18:08:31 1379 | keto,"BLTA Stuffed Tomatoes - Low Carb, Paleo, Keto, GF recipes",italian,26.2,35.95,110.12,2022-10-16,18:08:31 1380 | keto,Sara Louise's Keto Herbed Mustard Cod With Cauliflower Rice,mediterranean,126.08,15.35,51.93,2022-10-16,18:08:31 1381 | keto,4-Ingredient THM Chocolate Coconut Candy (easy keto fat bombs!),french,4.22,13.09,220.95,2022-10-16,18:08:31 1382 | keto,Instant Pot® Keto Thai Chicken Soup (Tom Kha Gai),south east asian,175.18,57.38,209.5,2022-10-16,18:08:31 1383 | keto,"Chocolate Keto Brownies (Low Carb, Sugar-free, Grain-Free)",french,34.4,32.72,123.11,2022-10-16,18:08:31 1384 | keto,"Dry Rubbed Ribs - Low Carb, Keto, Gluten-Free recipes",american,210.22,23.49,180.76,2022-10-16,18:08:31 1385 | keto,Coconut Curry Chicken: A Keto Low Carb Curry Recipe,indian,109.96,48.36,141.36,2022-10-16,18:08:31 1386 | keto,"Keto Chicken Jalapeno Poppers Recipe [Dairy-Free, Low Carb, Paleo]",american,58.62,4.96,85.31,2022-10-16,18:08:31 1387 | keto,"Pumpkin Spice Vegan Keto Doughnuts (paleo, nut free) recipes",american,8.88,36.52,37.88,2022-10-16,18:08:31 1388 | keto,Sheet Pan Keto Chicken Sausage with Roasted Brussels Sprouts and Tomatoes,mediterranean,27.5,27.64,76.82,2022-10-16,18:08:31 1389 | keto,Ultimate Keto Fathead Cauliflower Pizza Crust in the Known Universe,italian,53.33,34.03,79.24,2022-10-16,18:08:31 1390 | keto,"Creamy Avocado Zoodles with Bacon {Keto, Low Carb, Paleo} — Steemit",american,22.38,35.8,75.69,2022-10-16,18:08:31 1391 | keto,"Creamy Paleo Cauliflower Mash Recipe [Dairy-Free, Keto, AIP]",american,6.39,15.09,38.84,2022-10-16,18:08:31 1392 | keto,"Dijon Chicken Drummies - Low Carb, Gluten-Free, Keto recipes",french,42.48,41.15,69.99,2022-10-16,18:08:31 1393 | keto,Making Low Carb Keto Ice Cream For The First Time recipes,american,14.34,22.86,120.23,2022-10-16,18:08:31 1394 | keto,Meat Lover's Scramble Keto Egg Bake (Low Carb Friendly),american,136.56,16.11,216.83,2022-10-16,18:08:38 1395 | keto,"Gluten Free, Keto Friendly, Low Carb, Buffalo Chicken Casserole",american,130.95,51.54,216.56,2022-10-16,18:08:38 1396 | keto,"Keto Cauliflower Fried Rice Recipe, Low Calorie, Low Carb",chinese,32.67,58.26,39.18,2022-10-16,18:08:38 1397 | keto,Creamy Blue Cheese Dressing – Low Carb Keto Nom! recipes,american,14.56,5.83,64.8,2022-10-16,18:08:38 1398 | keto,Sara Louise's Keto Four Cheese Zucchini And Cauliflower Gratin,french,194.27,92.43,382.12,2022-10-16,18:08:38 1399 | keto,"Keto Samoa Bars {THM:S, Low Carb, Ketogenic, Sugar-Free}",american,11.3,63.57,163.0,2022-10-16,18:08:38 1400 | keto,Easy Low Carb Egg Salad and Day One Back on Keto,american,32.7,3.07,46.98,2022-10-16,18:08:38 1401 | keto,Easy Fresh Salsa – Low Carb Keto | Sugar Free recipes,mexican,8.54,45.23,29.4,2022-10-16,18:08:38 1402 | keto,"No-Cook Refreshing Mint Avocado Chilled Soup [Paleo, Keto, AIP]",american,8.96,25.55,78.44,2022-10-16,18:08:38 1403 | keto,Zesty keto chicken broth with broccoli rice and leafy greens,american,138.71,89.43,122.45,2022-10-16,18:08:38 1404 | keto,Instant Pot® Keto Chicken Thighs in Lemon-Garlic Cream Sauce,american,137.9,29.16,225.61,2022-10-16,18:08:38 1405 | keto,Easy Keto Broccoli Slaw Recipe (Low Carb and Gluten Free),american,11.34,29.01,75.19,2022-10-16,18:08:38 1406 | keto,Keto Broccoli Cheddar Muffins (Gluten-free/Low Carb) recipes,italian,107.72,67.4,185.7,2022-10-16,18:08:38 1407 | keto,"Keto Strip Steak Lettuce Wraps (Low Carb, Grain Free)",american,180.65,51.49,165.55,2022-10-16,18:08:44 1408 | keto,"Best Keto & Paleo Tortillas, Taco Shells & Nachos recipes",mexican,57.32,98.71,161.51,2022-10-16,18:08:44 1409 | keto,"Oven Roasted Garlic Parmesan Cabbage Steaks (Keto, GAPS, Low-Carb)",american,17.59,21.55,44.56,2022-10-16,18:08:44 1410 | keto,Interested in the keto diet? Try this noodle bowl | CBC News,asian,37.81,86.64,22.39,2022-10-16,18:08:44 1411 | keto,"Broccoli & Chicken Stir Fry Recipe – Low Carb, Keto & Paleo recipes",chinese,104.47,48.84,99.09,2022-10-16,18:08:44 1412 | keto,Fat Bomb Chive Cream Cheese Dip | Keto Fat Bomb Recipe,american,15.82,13.9,133.7,2022-10-16,18:08:44 1413 | keto,"Fresh Chive and Bacon Fat Roasted Black Radishes (AIP/Paleo, Keto)",french,3.48,15.94,51.88,2022-10-16,18:08:44 1414 | keto,"AIP Lime Pickled Radishes [Paleo, Keto] – An Easy Side Dish Recipe",american,0.4,4.35,0.09,2022-10-16,18:08:44 1415 | keto,"Low Carb Crispy Walnut Shrimp - Gluten-Free, Keto, LCHF recipes",american,100.18,10.03,103.53,2022-10-16,18:08:44 1416 | keto,Bombay Sloppy Joe on Low-Carb Buns recipes,american,109.33,71.68,135.26,2022-10-16,18:08:44 1417 | keto,"Crispy Fried Onions {Gluten-Free Fried Onions} - Whole30, Paleo, Keto",french,29.05,107.97,99.77,2022-10-16,18:08:44 1418 | keto,Low-Carb Chocolate Hazelnut Spread aka Keto Nutella recipes,american,67.45,177.68,352.47,2022-10-16,18:08:44 1419 | keto,Have A Very Keto Christmas With These 4-Ingredient Chocolate Orange Fat Bombs,italian,6.29,16.14,204.76,2022-10-16,18:08:44 1420 | keto,"Easy Baked Jicama Fries | Low-Carb, Keto, GF + Vegan",american,5.83,53.49,69.01,2022-10-16,18:08:44 1421 | keto,Keto Dinner rolls - egg and dairy free! (none of that fathead here),american,61.44,25.9,50.74,2022-10-16,18:08:51 1422 | keto,"Strawberry Oregano Turkey Burgers (Whole30, Paleo, Keto, Nut Free) recipes",american,198.47,49.07,120.95,2022-10-16,18:08:51 1423 | keto,"Low Carb Chicken and Cheese Quesadillas {Gluten-free, Keto-friendly} recipes",mexican,105.69,24.26,73.94,2022-10-16,18:08:51 1424 | keto,Pork Curry over Cauliflower Rice | Low Carb | Keto | Gluten Free,south east asian,105.75,38.83,45.28,2022-10-16,18:08:51 1425 | keto,"Low Carb Chocolate Peanut Butter Cups {Gluten Free, Keto-Friendly} recipes",american,25.59,44.3,268.92,2022-10-16,18:08:51 1426 | keto,"Aunt Rocky’s Chorizo and Spaghetti Squash Casserole (Low Carb, Keto)",italian,126.73,77.95,197.8,2022-10-16,18:08:51 1427 | keto,Keto Chicken Pad Thai - Low Carb Stir Fried Noodles Recipe,south east asian,161.6,409.17,151.65,2022-10-16,18:08:51 1428 | keto,"Easy Tomato Feta Soup Recipe - Low Calorie, Low Carb, Keto",mediterranean,28.7,68.45,82.08,2022-10-16,18:08:51 1429 | keto,4 Ingredient Mushroom Soup Recipe – Dairy Free + Low Carb + Keto Diet recipes,american,16.16,21.95,93.82,2022-10-16,18:08:51 1430 | keto,"Baked Low Carb Zucchini Fries (Paleo, AIP, Keto, Dairy Free)",french,25.33,57.48,97.11,2022-10-16,18:08:51 1431 | keto,"Keto Asian Meatballs Recipe with Dipping Sauce [Paleo, Dairy-Free]",italian,93.72,34.87,119.12,2022-10-16,18:08:51 1432 | keto,"Low Carb Vegan Ranch Dressing (dairy free, soy-free, keto) recipes",american,37.85,41.23,80.91,2022-10-16,18:08:51 1433 | keto,Keto Lamb Shanks Recipe Pressure Cooker [or Slow] - Falls Off The Bone,middle eastern,221.08,32.92,208.59,2022-10-16,18:08:51 1434 | keto,"Aunt Rocky’s Keto Hot Cocoa Mix (Sugar Free, Dairy Free, Low Carb)",american,37.91,165.84,34.48,2022-10-16,18:08:58 1435 | keto,"The Best Keto Pizza - Gluten-Free, Low Carb and Protein-Packed! recipes",italian,139.68,44.42,177.88,2022-10-16,18:08:58 1436 | keto,"Vietnamese Pho-Inspired Tomato Beef Soup (Paleo, Whole30, Keto) recipes",south east asian,100.9,39.23,73.2,2022-10-16,18:08:58 1437 | keto,"Low Carb Beef and Cheddar Cauliflower Bake, THM S meal, Keto too",british,710.81,112.56,1154.61,2022-10-16,18:08:58 1438 | keto,"Vegan Keto Buffalo Jackfruit Dip (soy-free, dairy-free, coconut-free)",american,26.97,171.28,102.15,2022-10-16,18:08:58 1439 | keto,Easy keto and Low Carb Chicken Broccoli Casserole (Paleo and Gluten Free),italian,137.72,43.49,113.95,2022-10-16,18:08:58 1440 | keto,Creamy Chicken Alfredo Zoodles with Mushrooms – Low Carb Keto Ease! recipes,french,42.13,22.91,59.02,2022-10-16,18:08:58 1441 | keto,Keto-Friendly Watergate Salad (aka Pistachio Cheesecake Mousse with Pineapple and Cherries),american,17.99,47.38,120.16,2022-10-16,18:08:58 1442 | keto,"No Bake Pumpkin Keto Cheesecake Bars (Low Carb, Sugar Free, Gluten Free)",american,35.57,37.07,168.33,2022-10-16,18:08:58 1443 | keto,Large Family Keto Instant Pot Beef Stew (Low Carb/THM S),french,268.97,68.02,57.98,2022-10-16,18:08:58 1444 | keto,Sara Louise's Keto Salmon Burgers With Homemade Thai Sweet Chilli Sauce,south east asian,237.19,43.08,207.35,2022-10-16,18:08:58 1445 | keto,Pumpkin in Browned Butter – aka Refried Pumpkin | Keto Allergy KISS Day 2 recipes,american,10.58,24.24,40.3,2022-10-16,18:08:58 1446 | keto,"Low Carb Blueberry Cheesecake Ice Cream (Keto, Sugar Free, Gluten Free)",american,20.32,21.36,115.31,2022-10-16,18:08:58 1447 | keto,"Kung Pao Cauliflower Chicken - Low Carb, Keto, Paleo and Gluten-Free! recipes",eastern europe,264.42,103.62,53.3,2022-10-16,18:08:58 1448 | keto,"Wedge Salad with Homemade Blue Cheese Dressing - Low Carb, Keto, GF recipes",american,79.65,51.24,369.24,2022-10-16,18:08:58 1449 | keto,"Low Carb Taco Soup for the Instant Pot or Slow Cooker, Keto, THM too",french,581.42,102.78,677.8,2022-10-16,18:08:58 1450 | keto,Never Fail Hollandaise – Low Carb Keto | Gluten Free | Egg Fast Magic recipes,french,7.63,4.35,114.38,2022-10-16,18:08:58 1451 | keto,"Peanut Butter Chocolate Chip Mason Jar Ice Cream (Keto, L/C, S/F)",american,13.33,58.46,111.04,2022-10-16,18:09:05 1452 | keto,This super-greens keto omelette with prawn and avocado is your new weeknight saviour,japanese,77.64,90.8,154.27,2022-10-16,18:09:05 1453 | keto,"Healthy Homemade Keto Ice Cream in a Jar | Low Carb, Trim Healthy Mama S, too",american,18.98,51.67,194.03,2022-10-16,18:09:05 1454 | keto,"Paleo Chocolate Mousse Cake (dairy Free, Raw Dessert, Keto, Paleo, Gluten Free) recipes",american,48.81,278.15,264.65,2022-10-16,18:09:05 1455 | keto,Dinners don't get easier than this maple-glazed keto salmon and greens recipe,american,111.38,79.04,86.58,2022-10-16,18:09:05 1456 | keto,"Pork rind tortillas: A keto-friendly recipe that replicates our go-to shells for tacos, fajitas and more",mexican,56.65,1.08,61.73,2022-10-16,18:09:05 1457 | keto,"No-Beans Hummus from The Keto Diet (reprinted with permission, ©Leanne Vogel, Victory, 2017) recipes",mediterranean,23.05,49.3,119.18,2022-10-16,18:09:05 1458 | keto,Egg Fast Recipe – Tex Mex White Egg Pizza a Low Carb Keto Pizza Bonanza! recipes,italian,25.66,8.52,60.58,2022-10-16,18:09:05 1459 | keto,"Thai Coconut Red Curry Chicken Thighs with Bok Choy - Paleo, Gluten-Free, Keto, Low Carb recipes",south east asian,280.52,59.34,454.58,2022-10-16,18:09:05 1460 | keto,Fried cabbage and sausage,middle eastern,29.91,60.68,98.6,2022-10-16,18:09:05 1461 | keto,"Low Carb ""Breading""",american,57.11,6.27,40.34,2022-10-16,18:09:05 1462 | keto,Banana chia pudding,british,8.59,22.53,55.6,2022-10-16,18:09:05 1463 | keto,Aunt Rocky’s Spam Scramble,american,64.52,11.65,77.07,2022-10-16,18:09:05 1464 | keto,Orange cream jello cups,mediterranean,6.45,23.85,44.03,2022-10-16,18:09:05 1465 | keto,Aunt Rocky’s Garlic Butter Shrimp with Asparagus,french,50.72,12.14,70.62,2022-10-16,18:09:05 1466 | keto,Egg and mozzarella pizza crust (1/2 pie),italian,137.39,14.28,147.09,2022-10-16,18:09:05 1467 | keto,Aunt Rocky’s Chicken & Avocado Wraps Filling,american,12.29,6.47,38.41,2022-10-16,18:09:05 1468 | keto,Orange Dream,british,16.27,90.19,133.44,2022-10-16,18:09:12 1469 | keto,Adam's Vanilla Chia Pudding,british,19.78,51.14,76.19,2022-10-16,18:09:12 1470 | keto,"Aunt Rocky’s Quick Protein Eggnog (Sugar Free, Low Carb)",world,7.09,40.72,16.1,2022-10-16,18:09:12 1471 | keto,Sausage and Cheese Balls,american,217.14,13.59,335.53,2022-10-16,18:09:12 1472 | keto,Macadamia Crusted Mahi Mahi,mediterranean,80.72,9.01,59.89,2022-10-16,18:09:12 1473 | keto,Fully loaded pan fried radishes,british,25.59,8.78,25.2,2022-10-16,18:09:12 1474 | keto,Fathead pizza crust,italian,83.43,479.9,34.44,2022-10-16,18:09:12 1475 | keto,Tuscan Pork Tenderloin,italian,375.92,8.09,64.63,2022-10-16,18:09:12 1476 | keto,Aunt Rocky’s Almond Butter Fat Bomb,american,26.23,64.01,110.21,2022-10-16,18:09:12 1477 | keto,"Aunt Rocky’s Sausage & Cheddar Biscuit Snacks (Gluten-Free, Low Carb)",american,142.12,37.8,245.26,2022-10-16,18:09:12 1478 | keto,Aunt Rocky’s Spaghetti Squash Carbonara,italian,107.46,42.39,203.11,2022-10-16,18:09:12 1479 | keto,Chocolate mug cake,british,9.72,12.63,19.06,2022-10-16,18:09:12 1480 | keto,Chicken appetizer,british,167.65,124.1,306.51,2022-10-16,18:09:12 1481 | keto,Beef Crust for Pizza,italian,75.92,4.27,121.14,2022-10-16,18:09:12 1482 | keto,Strawberry chocolate chip cheesecake,american,22.66,70.33,197.06,2022-10-16,18:09:18 1483 | keto,Spinach feta fritatta,mediterranean,21.91,3.42,33.67,2022-10-16,18:09:18 1484 | keto,Bacon Wrapped Meatloaf,american,232.88,6.28,215.88,2022-10-16,18:09:18 1485 | keto,Chocolate Almond Coconut Fat Bombs,french,24.61,45.84,351.68,2022-10-16,18:09:18 1486 | keto,Stuffed Pork Chops,american,188.32,5.75,133.89,2022-10-16,18:09:18 1487 | keto,Mascarpone Mousse,american,18.61,20.85,166.17,2022-10-16,18:09:18 1488 | keto,Mushroom Base,french,19.67,32.14,132.2,2022-10-16,18:09:18 1489 | keto,Aunt Rocky’s Colored Sprinkles (Sugar Free),american,0.0,12.0,0.0,2022-10-16,18:09:18 1490 | keto,Ham and egg salad,american,70.04,10.85,128.41,2022-10-16,18:09:18 1491 | keto,Succulent Sous Vide Chicken Thighs,american,255.23,4.89,275.25,2022-10-16,18:09:18 1492 | keto,Cream of Mushrooms,american,10.45,20.25,75.25,2022-10-16,18:09:18 1493 | keto,Macadamia Fat Bread,french,53.77,79.92,266.07,2022-10-16,18:09:18 1494 | keto,"Beef, cream cheese & shredded cheese",american,169.13,7.26,239.23,2022-10-16,18:09:18 1495 | keto,No Carb (No Cauliflower) Pizza Crust,italian,225.2,10.55,94.58,2022-10-16,18:09:18 1496 | keto,Indian Coconut Curry Salmon,nordic,62.59,39.71,65.81,2022-10-16,18:09:18 1497 | keto,Eggnog,french,11.78,30.36,140.04,2022-10-16,18:09:18 1498 | keto,Strawberry chocolate chip cheesecake,american,22.66,70.33,197.06,2022-10-16,18:09:25 1499 | keto,Spinach feta fritatta,mediterranean,21.91,3.42,33.67,2022-10-16,18:09:25 1500 | keto,Bacon Wrapped Meatloaf,american,232.88,6.28,215.88,2022-10-16,18:09:25 1501 | keto,Chocolate Almond Coconut Fat Bombs,french,24.61,45.84,351.68,2022-10-16,18:09:25 1502 | keto,Stuffed Pork Chops,american,188.32,5.75,133.89,2022-10-16,18:09:25 1503 | keto,Mascarpone Mousse,american,18.61,20.85,166.17,2022-10-16,18:09:25 1504 | keto,Mushroom Base,french,19.67,32.14,132.2,2022-10-16,18:09:25 1505 | keto,Aunt Rocky’s Colored Sprinkles (Sugar Free),american,0.0,12.0,0.0,2022-10-16,18:09:25 1506 | keto,Ham and egg salad,american,70.04,10.85,128.41,2022-10-16,18:09:25 1507 | keto,Succulent Sous Vide Chicken Thighs,american,255.23,4.89,275.25,2022-10-16,18:09:25 1508 | keto,Cream of Mushrooms,american,10.45,20.25,75.25,2022-10-16,18:09:25 1509 | keto,Macadamia Fat Bread,french,53.77,79.92,266.07,2022-10-16,18:09:25 1510 | keto,"Beef, cream cheese & shredded cheese",american,169.13,7.26,239.23,2022-10-16,18:09:25 1511 | keto,No Carb (No Cauliflower) Pizza Crust,italian,225.2,10.55,94.58,2022-10-16,18:09:25 1512 | keto,Indian Coconut Curry Salmon,nordic,62.59,39.71,65.81,2022-10-16,18:09:25 1513 | keto,Eggnog,french,11.78,30.36,140.04,2022-10-16,18:09:25 1514 | -------------------------------------------------------------------------------- /apps/HealthBot/api.py: -------------------------------------------------------------------------------- 1 | def getKey(): 2 | return "abcd" 3 | -------------------------------------------------------------------------------- /apps/HealthBot/app.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | from embedchain import App 3 | import pandas as pd 4 | from api import getKey 5 | import os 6 | 7 | api_key = getKey() 8 | os.environ['OPENAI_API_KEY'] = api_key 9 | app = App() 10 | 11 | st.title("Health Assistant Bot") 12 | choice = st.sidebar.selectbox("Pick your choice",("Keto","Vegan")) 13 | st.header(choice) 14 | 15 | if choice == 'Keto': 16 | file_path = "Data/keto.csv" 17 | data = pd.read_csv(file_path) 18 | elif choice == 'Vegan': 19 | file_path = "Data/vegan.csv" 20 | data = pd.read_csv(file_path) 21 | else: 22 | pass 23 | 24 | st.sidebar.dataframe(data.head(8)) 25 | app.add(file_path,data_type="csv") 26 | 27 | prompt = st.text_input("Enter your query") 28 | if prompt: 29 | with st.spinner("Be healthy..."): 30 | response = app.chat(prompt) 31 | st.write(response) -------------------------------------------------------------------------------- /apps/Langchain_Streaming/app.py: -------------------------------------------------------------------------------- 1 | import os 2 | import my_api 3 | import streamlit as st 4 | import time 5 | from langchain_community.llms import Cohere 6 | from langchain_community.llms import HuggingFaceHub 7 | from langchain.prompts import HumanMessagePromptTemplate 8 | from langchain_core.messages import SystemMessage 9 | from langchain.memory import ConversationBufferMemory 10 | from langchain_core.runnables import RunnableLambda, RunnablePassthrough 11 | from langchain_core.prompts import ChatPromptTemplate,MessagesPlaceholder 12 | from langchain.schema import StrOutputParser 13 | from langchain_community.embeddings import HuggingFaceInferenceAPIEmbeddings 14 | from langchain_community.vectorstores import Chroma 15 | 16 | HF_TOKEN = my_api.get_hf_key() 17 | os.environ["COHERE_API_KEY"] = my_api.get_cohere_key() 18 | os.environ["HUGGINGFACEHUB_API_TOKEN"] = HF_TOKEN 19 | 20 | embeddings = HuggingFaceInferenceAPIEmbeddings( 21 | api_key=HF_TOKEN, model_name="BAAI/bge-base-en-v1.5" 22 | ) 23 | print("Retrieving...") 24 | db = Chroma(persist_directory="./db", 25 | embedding_function=embeddings) 26 | 27 | retriever = db.as_retriever() 28 | query = "5 lessons from the book?" 29 | 30 | print("Its time...") 31 | 32 | template = """ 33 | User: You are an AI Assistant that follows instructions extremely well. 34 | Please be truthful and give direct answers. Please tell 'I don't know' if user query is not in CONTEXT 35 | 36 | Keep in mind, you will lose the job, if you answer out of CONTEXT questions 37 | 38 | CONTEXT: {context} 39 | Query: {question} 40 | 41 | Remember only return AI answer 42 | Assistant: 43 | """ 44 | 45 | llm = HuggingFaceHub( 46 | repo_id="huggingfaceh4/zephyr-7b-alpha", 47 | model_kwargs={ 48 | "max_new_tokens":512, 49 | "repetition_penalty": 1.1, 50 | "temperature": 0.5, 51 | "top_p": 0.9, 52 | "return_full_text":False} 53 | ) 54 | 55 | prompt = ChatPromptTemplate.from_template(template) 56 | output_parser = StrOutputParser() 57 | 58 | chain = ( 59 | { 60 | "context": retriever.with_config(run_name="Docs"), 61 | "question": RunnablePassthrough(), 62 | } 63 | | prompt 64 | | llm 65 | | output_parser 66 | ) 67 | st.title("Chat with PDF") 68 | choice = st.sidebar.selectbox("Choose",['Upload','Existing file']) 69 | 70 | if choice == 'Upload': 71 | file_path = st.file_uploader("Upload your PDF") 72 | #call ingest.py and pass the path 73 | else: 74 | query = st.text_input("Enter your prompt:") 75 | text_container = st.empty() 76 | full_text = "" 77 | for chunk in chain.stream(query): 78 | words = chunk.split() 79 | for word in words: 80 | full_text += word + " " 81 | text_container.markdown(full_text) 82 | time.sleep(0.05) -------------------------------------------------------------------------------- /apps/Langchain_Streaming/db/7f7f91bc-7f26-457b-b704-1f557d2cc717/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/Langchain_Streaming/db/7f7f91bc-7f26-457b-b704-1f557d2cc717/header.bin -------------------------------------------------------------------------------- /apps/Langchain_Streaming/db/7f7f91bc-7f26-457b-b704-1f557d2cc717/length.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/Langchain_Streaming/db/7f7f91bc-7f26-457b-b704-1f557d2cc717/link_lists.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/Langchain_Streaming/db/7f7f91bc-7f26-457b-b704-1f557d2cc717/link_lists.bin -------------------------------------------------------------------------------- /apps/Langchain_Streaming/db/chroma.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/Langchain_Streaming/db/chroma.sqlite3 -------------------------------------------------------------------------------- /apps/Langchain_Streaming/ingest.py: -------------------------------------------------------------------------------- 1 | from langchain_community.document_loaders import PyPDFLoader 2 | from langchain.text_splitter import RecursiveCharacterTextSplitter 3 | from langchain_community.embeddings import HuggingFaceInferenceAPIEmbeddings 4 | from langchain_community.vectorstores import Chroma 5 | 6 | from my_api import get_hf_key 7 | 8 | HF_TOKEN = get_hf_key() 9 | 10 | def persist_dir(file_path): 11 | data = PyPDFLoader(file_path) 12 | print("Loading data...") 13 | content = data.load() 14 | print("Splitting data...") 15 | splitter = RecursiveCharacterTextSplitter(chunk_size=1024,chunk_overlap=150) 16 | chunks = splitter.split_documents(content) 17 | embeddings = HuggingFaceInferenceAPIEmbeddings( 18 | api_key=HF_TOKEN, model_name="BAAI/bge-base-en-v1.5" 19 | ) 20 | print("Save to db...") 21 | vectorstore = Chroma.from_documents(chunks, embeddings,persist_directory="./db") 22 | 23 | if __name__ == "__main__": 24 | #will change, if you add file upload on streamlit 25 | data = "./data/Ikigai.pdf" 26 | persist_dir(data) 27 | -------------------------------------------------------------------------------- /apps/ResearchPaperBot/Data/hyperCNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/ResearchPaperBot/Data/hyperCNN.pdf -------------------------------------------------------------------------------- /apps/ResearchPaperBot/Data/large_scale_video_classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/ResearchPaperBot/Data/large_scale_video_classification.pdf -------------------------------------------------------------------------------- /apps/ResearchPaperBot/Data/movinets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucifertrj/Awesome-RAG/157aee5a16a10cf412476c3e39452bb4b73c661e/apps/ResearchPaperBot/Data/movinets.pdf -------------------------------------------------------------------------------- /apps/ResearchPaperBot/api.py: -------------------------------------------------------------------------------- 1 | def getKey(): 2 | return "sk-abc" 3 | -------------------------------------------------------------------------------- /apps/ResearchPaperBot/app.py: -------------------------------------------------------------------------------- 1 | from embedchain import App 2 | from api import getKey 3 | import os 4 | import streamlit as st 5 | import base64 6 | 7 | api_key = getKey() 8 | os.environ['OPENAI_API_KEY'] = api_key 9 | app = App() 10 | 11 | if not os.path.exists("Data"): 12 | os.makedirs("Data") 13 | 14 | st.title("Research Paper Assistant") 15 | pdf_file = st.file_uploader("Upload a PDF file", type=["pdf"]) 16 | if pdf_file is not None: 17 | pdf_contents = pdf_file.read() 18 | pdf_b64 = base64.b64encode(pdf_contents).decode("utf-8") 19 | pdf_display = f'' 20 | st.sidebar.markdown(pdf_display, unsafe_allow_html=True) 21 | 22 | file_path = os.path.join("Data", pdf_file.name) 23 | with open(file_path, "wb") as f: 24 | f.write(pdf_file.getbuffer()) 25 | 26 | app.add(file_path,data_type="pdf_file") 27 | prompt = st.text_input("Enter your query:") 28 | if prompt: 29 | with st.spinner("Generating..."): 30 | response = app.query(prompt) 31 | st.write(response) -------------------------------------------------------------------------------- /evaluate_open_source/beyondllm_ollama.py: -------------------------------------------------------------------------------- 1 | from beyondllm import source,retrieve,generator 2 | from beyondllm.llms import OllamaModel 3 | from beyondllm.embeddings import FastEmbedEmbeddings 4 | 5 | query = "what is Tarun's role at AI Planet?" 6 | data = source.fit(path="https://tarunjain.netlify.app", dtype="url",chunk_size=1024) 7 | retriever = retrieve.auto_retriever(data,embed_model=FastEmbedEmbeddings(),type="normal") 8 | pipeline = generator.Generate(question=query,llm=OllamaModel(model="llama2"),retriever=retriever) 9 | 10 | print(pipeline.call()) 11 | print(pipeline.get_rag_triad_evals()) -------------------------------------------------------------------------------- /evaluate_open_source/huggingface_mistral_evaluate.py: -------------------------------------------------------------------------------- 1 | # pip install beyondllm 2 | # pip install huggingface_hub 3 | # pip install llama-index-embeddings-fastembed 4 | 5 | # mistralai/Mistral-7B-Instruct-v0.2 6 | 7 | from beyondllm.source import fit 8 | from beyondllm.embeddings import FastEmbedEmbeddings 9 | from beyondllm.retrieve import auto_retriever 10 | from beyondllm.llms import HuggingFaceHubModel 11 | from beyondllm.generator import Generate 12 | 13 | import os 14 | from getpass import getpass 15 | os.environ['HUGGINGFACE_ACCESS_TOKEN'] = getpass("Enter your HF API token:") 16 | 17 | data = fit("RedHenLab_GSoC_Tarun.pdf",dtype="pdf") 18 | embed_model = FastEmbedEmbeddings() 19 | retriever = auto_retriever(data=data,embed_model=embed_model,type="normal",top_k=3) 20 | llm = HuggingFaceHubModel(model="mistralai/Mistral-7B-Instruct-v0.2") 21 | pipeline = Generate(question="what models has Tarun fine-tuned?",llm=llm,retriever=retriever) 22 | 23 | print(pipeline.call()) # Return the AI response 24 | print(pipeline.get_rag_triad_evals()) 25 | -------------------------------------------------------------------------------- /evaluate_open_source/requirements.txt: -------------------------------------------------------------------------------- 1 | beyondllm 2 | ollama 3 | llama-index-embeddings-fastembed -------------------------------------------------------------------------------- /ollama-langchain/app.py: -------------------------------------------------------------------------------- 1 | from langchain_community.embeddings import HuggingFaceInferenceAPIEmbeddings 2 | from langchain_community.vectorstores import Chroma 3 | from langchain_community.llms import Ollama 4 | from langchain.prompts import ChatPromptTemplate 5 | from langchain_core.runnables import RunnableLambda, RunnablePassthrough 6 | from langchain.schema import StrOutputParser 7 | from langchain.callbacks.manager import CallbackManager 8 | from langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandler 9 | 10 | HF_TOKEN = "" 11 | embeddings = HuggingFaceInferenceAPIEmbeddings( 12 | api_key=HF_TOKEN, model_name="mixedbread-ai/mxbai-embed-large-v1" 13 | ) 14 | print("Retrieving...") 15 | 16 | # R- Retrieval 17 | db = Chroma(persist_directory="./db", 18 | embedding_function=embeddings) 19 | retriever = db.as_retriever(search_kwargs={"k":2}) 20 | 21 | print("Prompt...") 22 | #A - Augment 23 | template = """ 24 | User: You are an AI Assistant that follows instructions extremely well. 25 | Please be truthful and give direct answers. Please tell 'I don't know' if user query is not in CONTEXT 26 | 27 | Keep in mind, you will lose the job, if you answer out of CONTEXT questions 28 | 29 | CONTEXT: {context} 30 | Query: {question} 31 | 32 | Remember only return AI answer 33 | Assistant: 34 | """ 35 | prompt = ChatPromptTemplate.from_template(template) 36 | 37 | # G- Generator 38 | llm = Ollama(model="llama2",callback_manager = CallbackManager([StreamingStdOutCallbackHandler()])) 39 | 40 | print("Generating the response....") 41 | output_parser = StrOutputParser() 42 | chain = ( 43 | { 44 | "context": retriever.with_config(run_name="Docs"), 45 | "question": RunnablePassthrough(), 46 | } 47 | | prompt 48 | | llm 49 | | output_parser 50 | ) 51 | 52 | print("\nAI response:.... \n") 53 | query = "what is the project goal?" 54 | print(chain.invoke(query)) -------------------------------------------------------------------------------- /ollama-langchain/ingest.py: -------------------------------------------------------------------------------- 1 | from langchain_community.document_loaders import PyPDFLoader 2 | from langchain.text_splitter import RecursiveCharacterTextSplitter 3 | from langchain_community.embeddings import HuggingFaceInferenceAPIEmbeddings 4 | from langchain_community.vectorstores import Chroma 5 | 6 | 7 | HF_TOKEN = "" 8 | 9 | def persist_dir(file_path): 10 | data = PyPDFLoader(file_path) 11 | print("Loading data...") 12 | content = data.load() 13 | print("Splitting data...") 14 | splitter = RecursiveCharacterTextSplitter(chunk_size=512,chunk_overlap=0) 15 | chunks = splitter.split_documents(content) 16 | embeddings = HuggingFaceInferenceAPIEmbeddings( 17 | api_key=HF_TOKEN, model_name="mixedbread-ai/mxbai-embed-large-v1" 18 | ) 19 | print("Save to db...") 20 | vectorstore = Chroma.from_documents(chunks, embeddings,persist_directory="./db") 21 | 22 | if __name__ == "__main__": 23 | #will change, if you add file upload on streamlit 24 | data = "./data/gsoc_proposal.pdf" #update your data 25 | persist_dir(data) --------------------------------------------------------------------------------