<p align="center">
<h1 align="center">FILTERLESSCOOK</h1>
</p>
<p align="center">
<em>Unique Data Recipes, No Filters Needed!</em>
</p>
<p align="center">
<img src="https://img.shields.io/github/last-commit/Bissbert/filterlesscook?style=default&logo=git&logoColor=white&color=0080ff" alt="last-commit">
<img src="https://img.shields.io/github/languages/top/Bissbert/filterlesscook?style=default&color=0080ff" alt="repo-top-language">
<img src="https://img.shields.io/github/languages/count/Bissbert/filterlesscook?style=default&color=0080ff" alt="repo-language-count">
<p>
<br><!-- TABLE OF CONTENTS -->
<details>
<summary>Table of Contents</summary><br>
- [ Overview](#overview)
- [ Getting Started](#getting-started)
- [ Installation](#installation)
- [ Usage](#usage)
- [ Basic Usage](#basic-usage)
- [ Options](#options)
- [ Example](#example)
- [ Features](#features)
- [ Repository Structure](#repository-structure)
- [ Modules](#modules)
- [ License](#license)
</details>
<hr>
## Overview
FilterlessCook is an innovative open-source Python package that streamlines recipe generation by eliminating the need for prefilters, offering a unique approach to data processing. This projects central module, `filterlesscook.py`, utilizes the ollama library and an AI assistant model for creating LaTeX-formatted recipes based on user prompts. With a focus on developer productivity, FilterlessCook allows developers to quickly create and save custom LaTeX documents using a single command, operating in an alpha stage under the MIT license. By using the FilterlessCook package, users can efficiently generate personalized food recipes without worrying about complicated setup or licensing issues.
---
## Getting Started
**System Requirements:**
* **Python**: `version 3.6+`
### Installation
To install the FilterlessCook package, follow the instructions below:
```sh
pip install filterlesscook
```
If you want to use a specific version of the "dolphin-mixtral" model please preinstall, otherwise the tool will attempt to pull the newest version if none is already installed.
### Usage
To generate food recipes formatted as LaTeX using the `filterless-cook` command line tool, follow the instructions below:
#### Basic Usage
```
filterless-cook food
```
Replace `food` with the name of the food or product you want the recipe for.
#### Options
**-h, --help**: Show the help message and exit.
```
filterless-cook -h
```
**-p PROMPT, --prompt PROMPT**: Use a user-defined prompt for recipe generation.
```
filterless-cook food -p "Your custom prompt here"
```
**-f FILE, --file FILE**: Save the generated LaTeX document to the specified file path.
```
filterless-cook food -f /path/to/save/recipe.tex
```
**-m, --measurement MEASUREMENT**: Specify the type of measurement to be used in the recipes. Choose either 'metric' or 'imperial'. The default is 'metric'.
```
filterless-cook food -m imperial
```
**--debug**: Enable debug logging to see detailed log output.
```
filterless-cook food --debug
```
#### Example
To generate a chocolate cake recipe with a custom prompt and save it to `chocolate_cake.tex` with debug logging enabled:
```
filterless-cook "chocolate cake" -p "You are an expert baker with special experience in european cakes." -f chocolate_cake.tex --debug
```
---
## Features
| Feature | Description |
|-----------------------|------------------------------------------------------------------------------------------------------|
| ⚙️ Architecture | The project is a Python package with central functionality in `filterlesscook.py`. It utilizes the OLLAMA library for LaTeX document creation and interacts with AI assistants through chat interaction. |
| 🔩 Code Quality | Well-organized code structure using Python, with adherence to the MIT license. Uses `setup.py` for distribution and easy installation via pip. |
| 📄 Documentation | Provides essential documentation in both `README.md` and an informative LICENSE file. It explains usage, requirements, and development processes. |
| 🔌 Integrations | Utilizes OLLAMA library for LaTeX document creation, and incorporates user-defined prompts and chat interactions to generate recipes. |
| ⚡️ Performance | Efficient LaTeX document generation, with potential room for improvement based on user's AI assistant model and requirements. |
| 🛡️ Security | Utilizes local uncensored AI assistant models (dolphin-mixtral) to generate recipe text while prioritizing user privacy. |
| 📦 Dependencies | Key external libraries include OLLAMA for LaTeX document creation, chat interaction interfaces and debug logging libraries. |
---
## Repository Structure
```sh
└── filterlesscook/
├── LISENCE
├── MANIFEST.in
├── filterlesscook
│ ├── __init__.py
│ └── filterlesscook.py
└── setup.py
```
---
## Modules
<details closed><summary>filterlesscook</summary>
| File | Summary |
| --- | --- |
| [filterlesscook.py](https://github.com/Bissbert/filterlesscook/blob/master/filterlesscook/filterlesscook.py) | LaTeX documents for recipes using ollama library and chat interaction, user-defined prompts, and saved to specified file paths. Utilizes debug logging and employs an uncensored AI assistant model (dolphin-mixtral) to generate recipe text, ensuring no kittens are harmed. |
</details>
---
## License
This project is protected under the MIT License. For more details, refer to the [LICENSE](./LISENCE) file.
---
[**Return**](#overview)
---
Raw data
{
"_id": null,
"home_page": null,
"name": "FilterlessCook",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "recipe generator, latex, unfiltered, filterless",
"author": null,
"author_email": "Bissbert <dev@bissbert.ch>",
"download_url": "https://files.pythonhosted.org/packages/e3/a8/a5572ee5f46859b3182253593d42db1980a62c6e565d1bcf3d55b45ee4f8/filterlesscook-0.1.7.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <h1 align=\"center\">FILTERLESSCOOK</h1>\n</p>\n<p align=\"center\">\n <em>Unique Data Recipes, No Filters Needed!</em>\n</p>\n<p align=\"center\">\n\t<img src=\"https://img.shields.io/github/last-commit/Bissbert/filterlesscook?style=default&logo=git&logoColor=white&color=0080ff\" alt=\"last-commit\">\n\t<img src=\"https://img.shields.io/github/languages/top/Bissbert/filterlesscook?style=default&color=0080ff\" alt=\"repo-top-language\">\n\t<img src=\"https://img.shields.io/github/languages/count/Bissbert/filterlesscook?style=default&color=0080ff\" alt=\"repo-language-count\">\n<p>\n\n<br><!-- TABLE OF CONTENTS -->\n<details>\n <summary>Table of Contents</summary><br>\n\n- [ Overview](#overview)\n- [ Getting Started](#getting-started)\n - [ Installation](#installation)\n - [ Usage](#usage)\n - [ Basic Usage](#basic-usage)\n - [ Options](#options)\n - [ Example](#example)\n- [ Features](#features)\n- [ Repository Structure](#repository-structure)\n- [ Modules](#modules)\n- [ License](#license)\n</details>\n<hr>\n\n## Overview\n\nFilterlessCook is an innovative open-source Python package that streamlines recipe generation by eliminating the need for prefilters, offering a unique approach to data processing. This projects central module, `filterlesscook.py`, utilizes the ollama library and an AI assistant model for creating LaTeX-formatted recipes based on user prompts. With a focus on developer productivity, FilterlessCook allows developers to quickly create and save custom LaTeX documents using a single command, operating in an alpha stage under the MIT license. By using the FilterlessCook package, users can efficiently generate personalized food recipes without worrying about complicated setup or licensing issues.\n\n---\n\n## Getting Started\n\n**System Requirements:**\n\n* **Python**: `version 3.6+`\n\n### Installation\n\nTo install the FilterlessCook package, follow the instructions below:\n\n```sh\npip install filterlesscook\n```\n\nIf you want to use a specific version of the \"dolphin-mixtral\" model please preinstall, otherwise the tool will attempt to pull the newest version if none is already installed.\n\n### Usage\n\nTo generate food recipes formatted as LaTeX using the `filterless-cook` command line tool, follow the instructions below:\n\n#### Basic Usage\n```\nfilterless-cook food\n```\nReplace `food` with the name of the food or product you want the recipe for.\n\n#### Options\n\n**-h, --help**: Show the help message and exit.\n```\nfilterless-cook -h\n```\n\n**-p PROMPT, --prompt PROMPT**: Use a user-defined prompt for recipe generation.\n```\nfilterless-cook food -p \"Your custom prompt here\"\n```\n\n**-f FILE, --file FILE**: Save the generated LaTeX document to the specified file path.\n```\nfilterless-cook food -f /path/to/save/recipe.tex\n```\n\n**-m, --measurement MEASUREMENT**: Specify the type of measurement to be used in the recipes. Choose either 'metric' or 'imperial'. The default is 'metric'.\n```\nfilterless-cook food -m imperial\n```\n\n**--debug**: Enable debug logging to see detailed log output.\n```\nfilterless-cook food --debug\n```\n\n#### Example\n\nTo generate a chocolate cake recipe with a custom prompt and save it to `chocolate_cake.tex` with debug logging enabled:\n\n```\nfilterless-cook \"chocolate cake\" -p \"You are an expert baker with special experience in european cakes.\" -f chocolate_cake.tex --debug\n```\n\n---\n\n## Features\n\n| Feature | Description |\n|-----------------------|------------------------------------------------------------------------------------------------------|\n| \u2699\ufe0f Architecture | The project is a Python package with central functionality in `filterlesscook.py`. It utilizes the OLLAMA library for LaTeX document creation and interacts with AI assistants through chat interaction. |\n| \ud83d\udd29 Code Quality | Well-organized code structure using Python, with adherence to the MIT license. Uses `setup.py` for distribution and easy installation via pip. |\n| \ud83d\udcc4 Documentation | Provides essential documentation in both `README.md` and an informative LICENSE file. It explains usage, requirements, and development processes. |\n| \ud83d\udd0c Integrations | Utilizes OLLAMA library for LaTeX document creation, and incorporates user-defined prompts and chat interactions to generate recipes. |\n| \u26a1\ufe0f Performance | Efficient LaTeX document generation, with potential room for improvement based on user's AI assistant model and requirements. |\n| \ud83d\udee1\ufe0f Security | Utilizes local uncensored AI assistant models (dolphin-mixtral) to generate recipe text while prioritizing user privacy. |\n| \ud83d\udce6 Dependencies | Key external libraries include OLLAMA for LaTeX document creation, chat interaction interfaces and debug logging libraries. |\n\n---\n\n## Repository Structure\n\n```sh\n\u2514\u2500\u2500 filterlesscook/\n \u251c\u2500\u2500 LISENCE\n \u251c\u2500\u2500 MANIFEST.in\n \u251c\u2500\u2500 filterlesscook\n \u2502 \u251c\u2500\u2500 __init__.py\n \u2502 \u2514\u2500\u2500 filterlesscook.py\n \u2514\u2500\u2500 setup.py\n```\n\n---\n\n## Modules\n\n<details closed><summary>filterlesscook</summary>\n\n| File | Summary |\n| --- | --- |\n| [filterlesscook.py](https://github.com/Bissbert/filterlesscook/blob/master/filterlesscook/filterlesscook.py) | LaTeX documents for recipes using ollama library and chat interaction, user-defined prompts, and saved to specified file paths. Utilizes debug logging and employs an uncensored AI assistant model (dolphin-mixtral) to generate recipe text, ensuring no kittens are harmed. |\n\n</details>\n\n---\n\n## License\n\nThis project is protected under the MIT License. For more details, refer to the [LICENSE](./LISENCE) file.\n\n---\n\n[**Return**](#overview)\n\n---\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Generate LaTeX formatted food recipes using the ollama library.",
"version": "0.1.7",
"project_urls": {
"Homepage": "http://github.com/Bissbert/filterlesscook"
},
"split_keywords": [
"recipe generator",
" latex",
" unfiltered",
" filterless"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4396ad11e1fdb6513b216e7de03914e385e36314bea930076105d70083a4d1fe",
"md5": "577e3d077d37184dd9973a4997905c88",
"sha256": "c80b54c3c3acacb3446a752ccac83e2086ad3b6e07f4b46a41d0d47eff08554c"
},
"downloads": -1,
"filename": "FilterlessCook-0.1.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "577e3d077d37184dd9973a4997905c88",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 6605,
"upload_time": "2024-09-03T11:13:06",
"upload_time_iso_8601": "2024-09-03T11:13:06.465848Z",
"url": "https://files.pythonhosted.org/packages/43/96/ad11e1fdb6513b216e7de03914e385e36314bea930076105d70083a4d1fe/FilterlessCook-0.1.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3a8a5572ee5f46859b3182253593d42db1980a62c6e565d1bcf3d55b45ee4f8",
"md5": "02397a50070143dd8bab0074117d8161",
"sha256": "d2133dc64171d0c753dd92d098051ea7fb8e2c2c5fd71344055a44255794d960"
},
"downloads": -1,
"filename": "filterlesscook-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "02397a50070143dd8bab0074117d8161",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6354,
"upload_time": "2024-09-03T11:13:07",
"upload_time_iso_8601": "2024-09-03T11:13:07.420570Z",
"url": "https://files.pythonhosted.org/packages/e3/a8/a5572ee5f46859b3182253593d42db1980a62c6e565d1bcf3d55b45ee4f8/filterlesscook-0.1.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-03 11:13:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Bissbert",
"github_project": "filterlesscook",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "filterlesscook"
}