diff --git a/.env.copy b/.env.copy index 73dd01c44..41c8599c3 100644 --- a/.env.copy +++ b/.env.copy @@ -1,10 +1,12 @@ -# Azure OpenAI configuration -AZURE_OPENAI_ENDPOINT='' -AZURE_OPENAI_DEPLOYMENT='' -AZURE_OPENAI_KEY='' -AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='' +# OpenAI Provider +OPENAI_API_KEY='' +## Azure OpenAI +AZURE_OPENAI_API_VERSION='2024-02-01' # Default is set! +AZURE_OPENAI_API_KEY='' +AZURE_OPENAI_ENDPOINT='' +AZURE_OPENAI_DEPLOYMENT='' +AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='' -# OpenAI Configuration - -OPENAI_API_KEY='' +## Hugging Face +HUGGING_FACE_API_KEY='' \ No newline at end of file diff --git a/00-course-setup/SETUP.md b/00-course-setup/SETUP.md index e7bee3be2..44b990bda 100644 --- a/00-course-setup/SETUP.md +++ b/00-course-setup/SETUP.md @@ -1,54 +1,100 @@ # Setup Your Dev Environment -We have setup this repository and course with a _dev container_ that comes with a Python 3 runtime. Open the repo in GitHub Codespaces or on your local Docker Desktop, to activate the runtime automatically. Then open th Jupyter notebook and select the Python 3.x kernel to prepare the Notebook for execution. +We setup this repository and course with a [development container](https://containers.dev?WT.mc_id=academic-105485-koreyst) that has a Universal runtime that can support Python3, .NET, Node.js and Java development. The related configuration is defined in the `devcontainer.json` file located in the `.devcontainer/` folder at the root of this repository. -## 1. Create `.env` file +To activate the dev container, launch it in [GitHub Codespaces](https://docs.github.com/en/codespaces/overview?WT.mc_id=academic-105485-koreyst) (for a cloud-hosted runtime) or in [Docker Desktop](https://docs.docker.com/desktop/?WT.mc_id=academic-105485-koreyst) (for a local device-hosted runtime). Read [this documentation](https://code.visualstudio.com/docs/devcontainers/containers?WT.mc_id=academic-105485-koreyst) for more details on how dev containers work within VS Code. -The default notebook (identified by the 'aoai-' suffix) is set up for use with an [Azure OpenAI service resource](https://learn.microsoft.com/azure/ai-services/openai?WT.mc_id=academic-105485-koreyst). However, you have the option to run your assignments by using non-Azure openAI endpoints (choose the 'oai-' prefixed notebooks in this case). +> [!TIP] +> We recommend using GitHub Codespaces for a quick start with minimal effort. It provides a generous [free usage quota](https://docs.github.com/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts) for personal accounts. Configure [timeouts](https://docs.github.com/codespaces/setting-your-user-preferences/setting-your-timeout-period-for-github-codespaces) to stop or delete inactive codespaces to maximize your quota usage. -To configure this, we need to setup local environment variables for Azure as follows: -1. Look in the root folder for a `.env.copy` file. It should contain a list of name-value pairs like this: +## 1. Executing Assignments + +Each lesson will have _optional_ assignments that may be provided in one or more programming languages including: Python, .NET/C#, Java and JavaScript/TypeScript. This section provides general guidance related to executing those assignments. + +### 1.1 Python Assignments + +Python assignments are provided either as applications (`.py` files) or Jupyter notebooks (`.ipynb` files). +- To run the notebook, open it in Visual Studio Code then click _Select Kernel_ (at top right) and select the default Python 3 option shown. You can now _Run All_ to execute the notebook. +- To run Python applications from command-line, follow assignment-specific instructions to ensure you select the right files and provide required arguments + +## 2. Configuring Providers + +Assignments **may** also be setup to work against one or more Large Language Model (LLM) deployments through a supported service provider like OpenAI, Azure or Hugging Face. These provide a _hosted endpoint_ (API) that we can access programmatically with the right credentials (API key or token). In this course, we discuss these providers: + + - [OpenAI](https://platform.openai.com/docs/models) with diverse models including the core GPT series. + - [Azure OpenAI](https://learn.microsoft.com/en-us/azure/ai-services/openai/) for OpenAI models with enterprise readiness in focus + - [Hugging Face](https://huggingface.co/docs/hub/index) for open-source models and inference server + +**You will need to use your own accounts for these exercises**. Assignments are optional so you can choose to setup one, all - or none - of the providers based on your interests. Some guidance for signup: + +| Signup | Cost | API Key | Playground | Comments | +|:---|:---|:---|:---|:---| +| [OpenAI](https://platform.openai.com/signup)| [Pricing](https://openai.com/pricing#language-models)| [Project-based](https://platform.openai.com/api-keys) | [No-Code, Web](https://platform.openai.com/playground) | Multiple Models Available | +| [Azure](https://aka.ms/azure/free)| [Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/)| [SDK Quickstart](https://learn.microsoft.com/azure/ai-services/openai/quickstart?tabs=command-line%2Cpython-new&pivots=programming-language-python#retrieve-key-and-endpoint)| [Studio Quickstart](https://learn.microsoft.com/azure/ai-services/openai/quickstart?tabs=command-line%2Cpython-new&pivots=programming-language-studio#playground) | [Must Apply Ahead For Access](https://learn.microsoft.com/azure/ai-services/openai/)| +| [Hugging Face](https://huggingface.co/join) | [Pricing](https://huggingface.co/pricing) | [Access Tokens](https://huggingface.co/docs/hub/security-tokens) | [Hugging Chat](https://huggingface.co/chat/)| [Hugging Chat has limited models](https://huggingface.co/chat/models) | +| | | | | | + +Follow the directions below to _configure_ this repository for use with different providers. Assignments that require a specific provider will contain one of these tags in their filename: + - `aoai` - requires Azure OpenAI endpoint, key + - `oai` - requires OpenAI endpoint, key + - `hf` - requires Hugging Face token + +You can configure one, none, or all providers. Related assignments will simply error out on missing credentials. + +### 2.1. Create `.env` file + +We assume that you have already read the guidance above and signed up with the relevant provider, and obtained the required authentication credentials (API_KEY or token). In the case of Azure OpenAI, we assume you also have a valid deployment of an Azure OpenAI service (endpoint) with at least one GPT model deployed for chat completion. + +The next step is to configure your **local environment variables** as follows: + + +1. Look in the root folder for a `.env.copy` file that should have contents like this: ```bash - AZURE_OPENAI_ENDPOINT='' - AZURE_OPENAI_DEPLOYMENT='' - AZURE_OPENAI_KEY='' - AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='' + # OpenAI Provider + OPENAI_API_KEY='' + + ## Azure OpenAI + AZURE_OPENAI_API_VERSION='2024-02-01' # Default is set! + AZURE_OPENAI_API_KEY='' + AZURE_OPENAI_ENDPOINT='' + AZURE_OPENAI_DEPLOYMENT='' + AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='' + + ## Hugging Face + HUGGING_FACE_API_KEY='' ``` -2. Make a copy of that file called `.env` using a command like this at the terminal: +2. Copy that file to `.env` using the command below. This file is _gitignore-d_, keeping secrets safe. ```bash cp .env.copy .env ``` - This should create an identical copy _except that this file is .gitignore-d and will never get checked into source control_. We can now populate **this .env file** with the environment variable values (secrets) without fear of them being checked in accidentally. You can now move to the next section to start populating these variables. +3. Fill in the values (replace placeholders on right side of `=`) as described in the next section. 3. (Option) If you use GitHub Codespaces, you have the option to save environment variables as _Codespaces secrets_ associated with this repository. In that case, you won't need to setup a local .env file. **However, note that this option works only if you use GitHub Codespaces.** You will still need to setup the .env file if you use Docker Desktop instead. -The above steps should be executed also if you are using the non-Azure OpenAI endpoints. In that case, you will need to populate the .env file with the appropriate values for the OpenAI service. - -```bash -OPENAI_API_KEY='' -``` -## 2. Populate `.env` file +### 2.2. Populate `.env` file Let's take a quick look at the variable names to understand what they represent: -| Variable | Description | -| :--------------------------------- | :--------------------------------------------------------------------------------- | -| AZURE_OPENAI_ENDPOINT | This is the deployed endpoint for an Azure OpenAI resource | -| AZURE_OPENAI_KEY | This is the authorization key for using that service | -| OPENAI_API_KEY | This is the authorization key for using the service for non-Azure OpenAI endpoints | -| AZURE_OPENAI_DEPLOYMENT | This is the _text generation_ model deployment endpoint | -| AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT | This is the _text embeddings_ model deployment endpoint | -| | | +| Variable | Description | +| :--- | :--- | +| HUGGING_FACE_API_KEY | This is the user access token you setup in your profile | +| OPENAI_API_KEY | This is the authorization key for using the service for non-Azure OpenAI endpoints | +| AZURE_OPENAI_KEY | This is the authorization key for using that service | +| AZURE_OPENAI_ENDPOINT | This is the deployed endpoint for an Azure OpenAI resource | +| AZURE_OPENAI_DEPLOYMENT | This is the _text generation_ model deployment endpoint | +| AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT | This is the _text embeddings_ model deployment endpoint | +| | | + +Note: The last two Azure OpenAI variables reflect a default model for chat completion (text generation) and vector search (embeddings) respectively. Instructions for setting them will be defined in relevant assignments. -For context, the last two variables refer to specific models that are used in chat completion (text generation model) and vector search (embeddings model) activities that are frequently used in generative AI applications. In the following sections, we'll locate the _values_ for these variables and set them in `.env` (replacing the content within the `' '`, but preserving the quotes). -### 2.1 Use Azure Portal +### 2.3 Configure Azure: From Portal The Azure OpenAI endpoint and key values will be found in the [Azure Portal](https://portal.azure.com?WT.mc_id=academic-105485-koreyst) so let's start there. @@ -65,7 +111,7 @@ Next, we need the endpoints for the specific models we've deployed. This will take you to the Azure OpenAI Studio website, where we'll find the other values as described below. -### 2.2 Use Azure OpenAI Studio +### 2.4 Configure Azure: From Studio 1. Navigate to [Azure OpenAI Studio](https://oai.azure.com?WT.mc_id=academic-105485-koreyst) **from your resource** as described above. 1. Click the **Deployments** tab (sidebar, left) to view currently deployed models. @@ -82,6 +128,10 @@ AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='text-embedding-ada-002' **Don't forget to save the .env file when done**. You can now exit the file and return to the instructions for running the notebook. -### 2.3 Use OpenAI Public API +### 2.5 Configure OpenAI: From Profile Your OpenAI API key can be found in your [OpenAI account](https://platform.openai.com/api-keys?WT.mc_id=academic-105485-koreyst). If you don't have one, you can sign up for an account and create an API key. Once you have the key, you can use it to populate the `OPENAI_API_KEY` variable in the `.env` file. + +### 2.6 Configure Hugging Face: From Profile + +Your Hugging Face token can be found in your profile under [Access Tokens](https://huggingface.co/settings/tokens). Don't post or share these publicly. Instead, create a new token for this project usage and copy that into the `.env` file under the `HUGGING_FACE_API_KEY` variable. _Note:_ This is technically not an API key but is used for authentication so we are keeping that naming convention for consistency. diff --git a/04-prompt-engineering-fundamentals/README.md b/04-prompt-engineering-fundamentals/README.md index b1317f203..a3783870a 100644 --- a/04-prompt-engineering-fundamentals/README.md +++ b/04-prompt-engineering-fundamentals/README.md @@ -29,7 +29,7 @@ The Jupyter Notebook accompanying this lesson provides a _sandbox_ environment w 1. **An Azure OpenAI API key** - the service endpoint for a deployed LLM. 2. **A Python Runtime** - in which the Notebook can be executed. -3. **Local Env Variables** - _complete the [SETUP](SETUP.md) steps now to get ready_. +3. **Local Env Variables** - _complete the [SETUP](./../00-course-setup/SETUP.md) steps now to get ready_. The notebook comes with _starter_ exercises - but you are encouraged to add your own _Markdown_ (description) and _Code_ (prompt requests) sections to try out more examples or ideas - and build your intuition for prompt design. diff --git a/04-prompt-engineering-fundamentals/aoai-assignment.ipynb b/04-prompt-engineering-fundamentals/python/aoai-assignment.ipynb similarity index 100% rename from 04-prompt-engineering-fundamentals/aoai-assignment.ipynb rename to 04-prompt-engineering-fundamentals/python/aoai-assignment.ipynb diff --git a/18-fine-tuning/SETUP.md b/18-fine-tuning/SETUP.md deleted file mode 100644 index a7ccac115..000000000 --- a/18-fine-tuning/SETUP.md +++ /dev/null @@ -1,75 +0,0 @@ -# Setup Your Dev Environment - -We have instrumented this repository with a _dev container_ that comes with a Python 3 runtime. Simply open the repo in GitHub Codespaces or on your local Docker Desktop, to activate the runtime automatically. Then open th Jupyter notebook and select the Python 3.x kernel to prepare the Notebook for execution. - -## 1. Create `.env` file - -The default notebook is set up for use with an [Azure OpenAI service resource](https://learn.microsoft.com/azure/ai-services/openai?WT.mc_id=academic-105485-koreyst). To configure this, we need to setup local environment variables for Azure as follows: - -1. Look in the root folder for a `.env.copy` file. It should contain a list of name-value pairs like this: - - ```bash - AZURE_OPENAI_ENDPOINT='' - AZURE_OPENAI_DEPLOYMENT='' - AZURE_OPENAI_KEY='' - AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='' - ``` - -2. Make a copy of that file called `.env` using a command like this at the terminal: - ```bash - cp .env.copy .env - ``` - This should create an identical copy _except that this file is .gitignore-d and will never get checked into source control_. We can now populate **this .env file** with the environment variable values (secrets) without fear of them being checked in accidentally. You can now move to the next section to start populating these variables. - -3. (Option) If you use GitHub Codespaces, you can also save environment variables as [_Codespaces secrets as described here_](https://docs.github.com/codespaces/managing-your-codespaces/managing-your-account-specific-secrets-for-github-codespaces?WT.mc_id=academic-105485-koreyst). Visit that link to learn how to add a secret, edit it, delete it, and use it in your running codespace. **If you choose this option**, your [**GitHub Settings > Codespaces Secrets**](https://github.com/settings/codespaces?WT.mc_id=academic-105485-koreyst) should look something like this. - ![Codespaces Secrets](./img/codespaces-secrets.png?WT.mc_id=academic-105485-koreyst) - - Note that you can create these secrets once and then make them available to multiple repositories that use those env variables. **However, note that this option works only if you use GitHub Codespaces.** You will still need to setup the .env file if you plan to use Docker Desktop for local development with that devcontainer configruation. - - -## 2. Populate `.env` file - -Let's take a quick look at the variable names to understand what they represent: - -| Variable | Description | -|:---|:---| -|AZURE_OPENAI_ENDPOINT| This is the deployed endpoint for an Azure OpenAI resource| -|AZURE_OPENAI_KEY | This is the authorization key for using that service | -|AZURE_OPENAI_DEPLOYMENT| This is the _text generation_ model deployment endpoint | -|AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT | This is the _text embeddings_ model deployment endpoint | -| | | - -For context, the last two variables refer to specific models that are used in chat completion (text generation model) and vector search (embeddings model) activities that are frequently used in generative AI applications. In the following sections, we'll locate the _values_ for these variables and set them in `.env` (replacing the content within the `' '`, but preserving the quotes). - -### 2.1 Use Azure Portal - -The Azure OpenAI endpoint and key values will be found in the [Azure Portal](https://portal.azure.com?WT.mc_id=academic-105485-koreyst) so let's start there. - -1. Navigate to the [Azure Portal](https://portal.azure.com?WT.mc_id=academic-105485-koreyst) -1. Click the **Keys and Endpoint** option in the sidebar (menu at left). -1. Click **Show Keys** - you should see the following: KEY 1, KEY 2 and Endpoint. -1. Use the KEY 1 value for AZURE_OPENAI_KEY -1. Use the Endpoint value for AZURE_OPENAI_ENDPOINT - -Next, we need the endpoints for the specific models we've deployed. -1. Click the **Model deployments** option in the sidebar (left menu) for Azure OpenAI resource. -1. In the destination page, click **Manage Deployments** - -This will take you to the Azure OpenAI Studio website, where we'll find the other values as described below. - -### 2.2 Use Azure OpenAI Studio - -1. Navigate to [Azure OpenAI Studio](https://oai.azure.com?WT.mc_id=academic-105485-koreyst) **from your resource** as described above. -1. Click the **Deployments** tab (sidebar, left) to view currently deployed models. -1. If your desired model is not deployed, use **Create new deployment** to deploy it. -1. You will need a _text-generation_ model - we recommend: **gpt-35-turbo** -1. You will need a _text-embedding_ model - we recommend **text-embedding-ada-002** - -Now update the environment variables to reflect the _Deployment name_ used. This will typically be the same as the model name unless you changed it explicitly. So, as an example, you might have: - -```bash -AZURE_OPENAI_DEPLOYMENT='gpt-35-turbo' -AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT='text-embedding-ada-002' -``` - -**Don't forget to save the .env file when done**. You can now exit the file and return to the instructions for running the notebook. diff --git a/18-fine-tuning/assignments/python/README.md b/18-fine-tuning/assignments/python/README.md deleted file mode 100644 index 437a76056..000000000 --- a/18-fine-tuning/assignments/python/README.md +++ /dev/null @@ -1 +0,0 @@ -# Instructions for Python Assignments Here diff --git a/18-fine-tuning/assignments/python/tmp_recipe_finetune_training.jsonl b/18-fine-tuning/assignments/python/tmp_recipe_finetune_training.jsonl deleted file mode 100644 index f6feda4a0..000000000 --- a/18-fine-tuning/assignments/python/tmp_recipe_finetune_training.jsonl +++ /dev/null @@ -1,101 +0,0 @@ -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: No-Bake Nut Cookies\n\nIngredients: [\"1 c. firmly packed brown sugar\", \"1/2 c. evaporated milk\", \"1/2 tsp. vanilla\", \"1/2 c. broken nuts (pecans)\", \"2 Tbsp. butter or margarine\", \"3 1/2 c. bite size shredded rice biscuits\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"brown sugar\", \"milk\", \"vanilla\", \"nuts\", \"butter\", \"bite size shredded rice biscuits\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Jewell Ball'S Chicken\n\nIngredients: [\"1 small jar chipped beef, cut up\", \"4 boned chicken breasts\", \"1 can cream of mushroom soup\", \"1 carton sour cream\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"beef\", \"chicken breasts\", \"cream of mushroom soup\", \"sour cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Creamy Corn\n\nIngredients: [\"2 (16 oz.) pkg. frozen corn\", \"1 (8 oz.) pkg. cream cheese, cubed\", \"1/3 c. butter, cubed\", \"1/2 tsp. garlic powder\", \"1/2 tsp. salt\", \"1/4 tsp. pepper\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"frozen corn\", \"cream cheese\", \"butter\", \"garlic powder\", \"salt\", \"pepper\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Funny\n\nIngredients: [\"1 large whole chicken\", \"2 (10 1/2 oz.) cans chicken gravy\", \"1 (10 1/2 oz.) can cream of mushroom soup\", \"1 (6 oz.) box Stove Top stuffing\", \"4 oz. shredded cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"chicken gravy\", \"cream of mushroom soup\", \"shredded cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Reeses Cups(Candy) \n\nIngredients: [\"1 c. peanut butter\", \"3/4 c. graham cracker crumbs\", \"1 c. melted butter\", \"1 lb. (3 1/2 c.) powdered sugar\", \"1 large pkg. chocolate chips\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"peanut butter\", \"graham cracker crumbs\", \"butter\", \"powdered sugar\", \"chocolate chips\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheeseburger Potato Soup\n\nIngredients: [\"6 baking potatoes\", \"1 lb. of extra lean ground beef\", \"2/3 c. butter or margarine\", \"6 c. milk\", \"3/4 tsp. salt\", \"1/2 tsp. pepper\", \"1 1/2 c (6 oz.) shredded Cheddar cheese, divided\", \"12 sliced bacon, cooked, crumbled and divided\", \"4 green onion, chopped and divided\", \"1 (8 oz.) carton sour cream (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"baking potatoes\", \"extra lean ground beef\", \"butter\", \"milk\", \"salt\", \"pepper\", \"Cheddar cheese\", \"bacon\", \"green onion\", \"sour cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Rhubarb Coffee Cake\n\nIngredients: [\"1 1/2 c. sugar\", \"1/2 c. butter\", \"1 egg\", \"1 c. buttermilk\", \"2 c. flour\", \"1/2 tsp. salt\", \"1 tsp. soda\", \"1 c. buttermilk\", \"2 c. rhubarb, finely cut\", \"1 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"butter\", \"egg\", \"buttermilk\", \"flour\", \"salt\", \"soda\", \"buttermilk\", \"rhubarb\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Scalloped Corn\n\nIngredients: [\"1 can cream-style corn\", \"1 can whole kernel corn\", \"1/2 pkg. (approximately 20) saltine crackers, crushed\", \"1 egg, beaten\", \"6 tsp. butter, divided\", \"pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream-style corn\", \"whole kernel corn\", \"crackers\", \"egg\", \"butter\", \"pepper\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Nolan'S Pepper Steak\n\nIngredients: [\"1 1/2 lb. round steak (1-inch thick), cut into strips\", \"1 can drained tomatoes, cut up (save liquid)\", \"1 3/4 c. water\", \"1/2 c. onions\", \"1 1/2 Tbsp. Worcestershire sauce\", \"2 green peppers, diced\", \"1/4 c. oil\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"tomatoes\", \"water\", \"onions\", \"Worcestershire sauce\", \"green peppers\", \"oil\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Millionaire Pie\n\nIngredients: [\"1 large container Cool Whip\", \"1 large can crushed pineapple\", \"1 can condensed milk\", \"3 lemons\", \"1 c. pecans\", \"2 graham cracker crusts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pineapple\", \"condensed milk\", \"lemons\", \"pecans\", \"graham cracker crusts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Double Cherry Delight\n\nIngredients: [\"1 (17 oz.) can dark sweet pitted cherries\", \"1/2 c. ginger ale\", \"1 (6 oz.) pkg. Jell-O cherry flavor gelatin\", \"2 c. boiling water\", \"1/8 tsp. almond extract\", \"1 c. miniature marshmallows\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"dark sweet pitted cherries\", \"ginger ale\", \"flavor gelatin\", \"boiling water\", \"almond extract\", \"marshmallows\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Buckeye Candy\n\nIngredients: [\"1 box powdered sugar\", \"8 oz. soft butter\", \"1 (8 oz.) peanut butter\", \"paraffin\", \"12 oz. chocolate chips\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"powdered sugar\", \"butter\", \"peanut butter\", \"paraffin\", \"chocolate chips\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Quick Barbecue Wings\n\nIngredients: [\"chicken wings (as many as you need for dinner)\", \"flour\", \"barbecue sauce (your choice)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"flour\", \"barbecue sauce\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Taco Salad Chip Dip\n\nIngredients: [\"8 oz. Ortega taco sauce\", \"8 oz. sour cream\", \"8 oz. cream cheese\", \"1 lb. ground beef\", \"1 pkg. taco seasoning\", \"shredded lettuce\", \"1 large diced tomato\", \"1 medium diced onion\", \"1 large diced green pepper\", \"shredded Colby or Cheddar cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"taco sauce\", \"sour cream\", \"cream cheese\", \"ground beef\", \"taco seasoning\", \"shredded lettuce\", \"tomato\", \"onion\", \"green pepper\", \"Cheddar cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pink Stuff(Frozen Dessert) \n\nIngredients: [\"1 can pie filling (cherry or strawberry)\", \"1 can crushed pineapple, drained\", \"1 can sweetened condensed milk\", \"1 (8 oz.) container thawed whipped topping\", \"2 Tbsp. lemon juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pie filling\", \"pineapple\", \"condensed milk\", \"lemon juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fresh Strawberry Pie\n\nIngredients: [\"1 baked pie shell\", \"1 qt. cleaned strawberries\", \"1 1/2 c. water\", \"4 Tbsp. cornstarch\", \"1 c. sugar\", \"1/8 tsp. salt\", \"4 Tbsp. strawberry jello\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"shell\", \"cleaned strawberries\", \"water\", \"cornstarch\", \"sugar\", \"salt\", \"strawberry jello\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Easy German Chocolate Cake\n\nIngredients: [\"1/2 pkg. chocolate fudge cake mix without pudding or 1 Jiffy mix\", \"1/2 pkg. white cake mix without pudding or 1 Jiffy mix\", \"1/4 c. Wesson oil\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chocolate fudge cake\", \"white cake\", \"Wesson oil\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Broccoli Salad\n\nIngredients: [\"1 large head broccoli (about 1 1/2 lb.)\", \"10 slices bacon, cooked and crumbled\", \"5 green onions, sliced or 1/4 c. chopped red onion\", \"1/2 c. raisins\", \"1 c. mayonnaise\", \"2 Tbsp. vinegar\", \"1/4 c. sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"broccoli\", \"bacon\", \"green onions\", \"raisins\", \"mayonnaise\", \"vinegar\", \"sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Strawberry Whatever\n\nIngredients: [\"1 lb. frozen strawberries in juice\", \"1 small can crushed pineapple\", \"3 ripe bananas\", \"1 c. chopped pecans\", \"1 large pkg. strawberry Jell-O\", \"1 1/2 c. boiling water\", \"1 pt. sour cream\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"frozen strawberries\", \"pineapple\", \"bananas\", \"pecans\", \"strawberry\", \"boiling water\", \"sour cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Eggless Milkless Applesauce Cake\n\nIngredients: [\"3/4 c. sugar\", \"1/2 c. shortening\", \"1 1/2 c. applesauce\", \"3 level tsp. soda\", \"1 tsp. each: cinnamon, cloves and nutmeg\", \"2 c. sifted flour\", \"1 c. raisins\", \"1 c. nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"shortening\", \"applesauce\", \"soda\", \"cinnamon\", \"flour\", \"raisins\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Grandma Hanrath'S Banana Breadfort Collins, Colorado \n\nIngredients: [\"1 c. sugar\", \"1/2 c. shortening\", \"2 eggs (add one at a time)\", \"1 tsp. salt\", \"2 tsp. soda\", \"2 c. flour\", \"1/4 c. nuts\", \"2 over-ripe bananas (chopped)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"shortening\", \"eggs\", \"salt\", \"soda\", \"flour\", \"nuts\", \"bananas\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Frango Mints\n\nIngredients: [\"1 pkg. devil's food cake mix\", \"1 pkg. chocolate fudge pudding mix (instant)\", \"8 oz. sour cream\", \"3/4 c. water\", \"1/2 c. Wesson oil\", \"4 eggs\", \"6 oz. chopped Frango mints\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cake mix\", \"chocolate fudge pudding\", \"sour cream\", \"water\", \"Wesson oil\", \"eggs\", \"Frango\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cuddy Farms Marinated Turkey\n\nIngredients: [\"2 c. 7-Up or Sprite\", \"1 c. vegetable oil\", \"1 c. Kikkoman soy sauce\", \"garlic salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"vegetable oil\", \"soy sauce\", \"garlic\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Spaghetti Sauce To Can\n\nIngredients: [\"1/2 bushel tomatoes\", \"1 c. oil\", \"1/4 c. minced garlic\", \"6 cans tomato paste\", \"3 peppers (2 sweet and 1 hot)\", \"1 1/2 c. sugar\", \"1/2 c. salt\", \"1 Tbsp. sweet basil\", \"2 Tbsp. oregano\", \"1 tsp. Italian seasoning\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"tomatoes\", \"oil\", \"garlic\", \"tomato paste\", \"peppers\", \"sugar\", \"salt\", \"sweet basil\", \"oregano\", \"Italian seasoning\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Prize-Winning Meat Loaf\n\nIngredients: [\"1 1/2 lb. ground beef\", \"1 c. tomato juice\", \"3/4 c. oats (uncooked)\", \"1 egg, beaten\", \"1/4 c. chopped onion\", \"1/4 tsp. pepper\", \"1 1/2 tsp. salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"tomato juice\", \"oats\", \"egg\", \"onion\", \"pepper\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Smothered Round Steak(Servings: 4) \n\nIngredients: [\"2 lb. round steak\", \"1/2 tsp. ground black pepper\", \"1 tsp. ground white pepper\", \"1/2 c. vegetable oil\", \"2 bell peppers, chopped\", \"1 c. beef stock or water\", \"2 tsp. salt\", \"1 tsp. ground red pepper\", \"all-purpose flour (dredging)\", \"3 medium onions, chopped\", \"1 celery rib, chopped\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"steak\", \"ground black pepper\", \"ground white pepper\", \"vegetable oil\", \"bell peppers\", \"beef stock\", \"salt\", \"ground red pepper\", \"flour\", \"onions\", \"celery\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Corral Barbecued Beef Steak Strips\n\nIngredients: [\"2 lb. round steak 1/2 to 3/4-inch thick, sliced in strips 1/8-inch thick (or thinner) and 3 1/2 to 4-inches long (easily sliced if partially frozen)\", \"2 Tbsp. cooking oil\", \"1 can (15 oz.) tomato sauce\", \"1/3 c. water\", \"2 Tbsp. brown sugar\", \"1 Tbsp. prepared mustard\", \"1 tbsp. Worcestershire sauce\", \"1 medium sized onion, thinly sliced\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"long\", \"cooking oil\", \"tomato sauce\", \"water\", \"brown sugar\", \"mustard\", \"Worcestershire sauce\", \"onion\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Easy Fudge\n\nIngredients: [\"1 (14 oz.) can sweetened condensed milk\", \"1 (12 oz.) pkg. semi-sweet chocolate chips\", \"1 (1 oz.) sq. unsweetened chocolate (if desired)\", \"1 1/2 c. chopped nuts (if desired)\", \"1 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"condensed milk\", \"semi-sweet chocolate chips\", \"unsweetened chocolate\", \"nuts\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Taco-Filled Green Pepper\n\nIngredients: [\"1 lb. Ground Beef\", \"1 pkg. taco seasoning\", \"1 san Kidney beans\", \"1 onion, chopped\", \"1 C salsa\", \"4 green peppers\", \"1 medium Tomato, chopped\", \"1/2 C cheddar cheese, shredded\", \"1/2 C sour cream\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Ground Beef\", \"taco seasoning\", \"beans\", \"onion\", \"salsa\", \"green peppers\", \"Tomato\", \"cheddar cheese\", \"sour cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: One Hour Rolls\n\nIngredients: [\"1 c. milk\", \"2 Tbsp. sugar\", \"1 pkg. dry yeast\", \"1 Tbsp. salt\", \"3 Tbsp. Crisco oil\", \"2 c. plain flour\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"milk\", \"sugar\", \"yeast\", \"salt\", \"Crisco oil\", \"flour\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Punch Bowl Fruit Salad\n\nIngredients: [\"2 large cans sliced peaches\", \"2 large cans fruit cocktail\", \"1 large can diced pineapple\", \"1 qt. fresh strawberries\", \"2 red apples\", \"2 yellow apples\", \"4 large ripe bananas\", \"1 lb. white grapes\", \"1 lb. purple grapes\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"peaches\", \"fruit cocktail\", \"pineapple\", \"fresh strawberries\", \"red apples\", \"yellow apples\", \"bananas\", \"white grapes\", \"purple grapes\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Summer Chicken\n\nIngredients: [\"1 pkg. chicken cutlets\", \"1/2 c. oil\", \"1/3 c. red vinegar\", \"2 Tbsp. oregano\", \"2 Tbsp. garlic salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken cutlets\", \"oil\", \"red vinegar\", \"oregano\", \"garlic salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cherry Pizza\n\nIngredients: [\"2 cans cherry pie mix\", \"1 box deluxe white cake mix\", \"1 stick butter\", \"1 c. ground nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cherry pie mix\", \"deluxe white cake mix\", \"butter\", \"ground nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Potato And Cheese Pie\n\nIngredients: [\"3 eggs\", \"1 tsp. salt\", \"1/4 tsp. pepper\", \"2 c. half and half\", \"3 c. potatoes, shredded coarse\", \"1 c. Cheddar cheese, coarsely shredded\", \"1/3 c. green onions\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"salt\", \"pepper\", \"potatoes\", \"Cheddar cheese\", \"green onions\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Tuna Macaroni Casserole\n\nIngredients: [\"1 box macaroni and cheese\", \"1 can tuna, drained\", \"1 small jar pimentos\", \"1 medium onion, chopped\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"macaroni\", \"tuna\", \"pimentos\", \"onion\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Artichoke Dip\n\nIngredients: [\"2 cans or jars artichoke hearts\", \"1 c. mayonnaise\", \"1 c. Parmesan cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"hearts\", \"mayonnaise\", \"Parmesan cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Broccoli Dip For Crackers\n\nIngredients: [\"16 oz. sour cream\", \"1 pkg. dry vegetable soup mix\", \"10 oz. pkg. frozen chopped broccoli, thawed and drained\", \"4 to 6 oz. Cheddar cheese, grated\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sour cream\", \"vegetable soup mix\", \"broccoli\", \"Cheddar cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Summer Spaghetti\n\nIngredients: [\"1 lb. very thin spaghetti\", \"1/2 bottle McCormick Salad Supreme (seasoning)\", \"1 bottle Zesty Italian dressing\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Salad Supreme\", \"Italian dressing\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pear-Lime Salad\n\nIngredients: [\"1 (16 oz.) can pear halves, undrained\", \"1 (3 oz.) pkg. lime gelatin\", \"1 (8 oz.) pkg. cream cheese, softened\", \"1 (8 oz.) carton lemon yogurt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pear halves\", \"lime gelatin\", \"cream cheese\", \"lemon yogurt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Watermelon Rind Pickles\n\nIngredients: [\"7 lb. watermelon rind\", \"7 c. sugar\", \"2 c. apple vinegar\", \"1/2 tsp. oil of cloves\", \"1/2 tsp. oil of cinnamon\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"watermelon rind\", \"sugar\", \"apple vinegar\", \"oil\", \"oil of cinnamon\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Stew\n\nIngredients: [\"3 lb. chicken, boiled\", \"4 medium potatoes, diced\", \"2 medium onions, chopped\", \"1 (16 oz.) can creamed corn\", \"1 (16 oz.) can English peas\", \"1 (16 oz.) can field peas\", \"1 (16 oz.) can butter beans\", \"1 (16 oz.) can tomatoes\", \"1 (46 oz.) can tomato juice\", \"1 small box macaroni\", \"1 Tbsp. black pepper\", \"1 Tbsp. salt\", \"1 Tbsp. sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"potatoes\", \"onions\", \"corn\", \"English peas\", \"peas\", \"butter beans\", \"tomatoes\", \"tomato juice\", \"macaroni\", \"black pepper\", \"salt\", \"sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Quick Coffee Cake(6 Servings) \n\nIngredients: [\"3 Tbsp. softened butter or margarine\", \"1/2 c. granulated sugar\", \"1 egg\", \"1 c. flour\", \"1 1/4 tsp. baking powder\", \"1/4 tsp. salt\", \"1/3 c. milk\", \"1/4 tsp. vanilla\", \"1/3 c. brown sugar, packed\", \"1/2 tsp. cinnamon\", \"2 Tbsp. butter or margarine\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"sugar\", \"egg\", \"flour\", \"baking powder\", \"salt\", \"milk\", \"vanilla\", \"brown sugar\", \"cinnamon\", \"butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Angel Biscuits\n\nIngredients: [\"5 c. flour\", \"3 Tbsp. sugar\", \"4 tsp. baking powder\", \"1 1/2 pkg. dry yeast\", \"2 c. buttermilk\", \"1 tsp. soda\", \"1 1/2 sticks margarine\", \"1/2 c. warm water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"sugar\", \"baking powder\", \"yeast\", \"buttermilk\", \"soda\", \"margarine\", \"warm water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Quick Peppermint Puffs\n\nIngredients: [\"8 marshmallows\", \"2 Tbsp. margarine, melted\", \"1/4 c. crushed peppermint candy\", \"1 can crescent rolls\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"marshmallows\", \"margarine\", \"peppermint candy\", \"crescent rolls\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fruit Pizza\n\nIngredients: [\"1 box yellow cake mix\", \"1/4 c. water\", \"1/4 c. brown sugar\", \"1/2 c. soft butter\", \"2 eggs\", \"1/2 c. chopped nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"yellow cake mix\", \"water\", \"brown sugar\", \"butter\", \"eggs\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Mint Bars\n\nIngredients: [\"1 c. flour\", \"1 c. sugar\", \"1/2 c. oleo, softened\", \"4 eggs\", \"1 can chocolate syrup\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"sugar\", \"oleo\", \"eggs\", \"chocolate syrup\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Beer Bread\n\nIngredients: [\"3 c. self rising flour\", \"1 - 12 oz. can beer\", \"1 Tbsp. sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"beer\", \"sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Divan\n\nIngredients: [\"1/4 c. margarine\", \"1/4 c. chopped onion (or as much as you want)\", \"chopped celery to taste\", \"1/4 c. flour\", \"1/8 tsp. curry powder\", \"1 can sliced mushrooms (save juice)\", \"1 can cream of celery soup\", \"1 pkg. chopped broccoli\", \"1 cubed chicken\", \"shredded Monterey Jack cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"margarine\", \"onion\", \"celery\", \"flour\", \"curry powder\", \"mushrooms\", \"cream of celery soup\", \"broccoli\", \"chicken\", \"cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Mexican Cookie Rings\n\nIngredients: [\"1 1/2 c. sifted flour\", \"1/2 tsp. baking powder\", \"1/2 tsp. salt\", \"1/2 c. butter\", \"2/3 c. sugar\", \"3 egg yolks\", \"1 tsp. vanilla\", \"multi-colored candies\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"baking powder\", \"salt\", \"butter\", \"sugar\", \"egg yolks\", \"vanilla\", \"multi-colored candies\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Vegetable-Burger Soup\n\nIngredients: [\"1/2 lb. ground beef\", \"2 c. water\", \"1 tsp. sugar\", \"1 pkg. Cup-a-Soup onion soup mix (dry)\", \"1 lb. can stewed tomatoes\", \"1 (8 oz.) can tomato sauce\", \"1 (10 oz.) pkg. frozen mixed vegetables\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"water\", \"sugar\", \"onion soup\", \"tomatoes\", \"tomato sauce\", \"frozen mixed vegetables\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Ole\n\nIngredients: [\"4 chicken breasts, cooked\", \"1 can cream of chicken soup\", \"1 can cream of mushroom soup\", \"1 can green chili salsa sauce\", \"1 can green chilies\", \"1 c. milk\", \"1 grated onion\", \"1 pkg. corn tortilla in pieces\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken breasts\", \"cream of chicken soup\", \"cream of mushroom soup\", \"green chili salsa sauce\", \"green chilies\", \"milk\", \"onion\", \"corn tortilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Creamy Coleslaw(Better Homes And Gardens) \n\nIngredients: [\"4 c. shredded cabbage\", \"1/2 c. shredded carrots\", \"1/4 c. finely chopped green pepper\", \"2 Tbsp. finely chopped onion\", \"1/2 c. mayonnaise\", \"1 Tbsp. vinegar\", \"2 tsp. sugar\", \"1 tsp. celery seed\", \"1/4 tsp. salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cabbage\", \"carrots\", \"green pepper\", \"onion\", \"mayonnaise\", \"vinegar\", \"sugar\", \"celery\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Creole Flounder\n\nIngredients: [\"2 lb. flounder or pollack fillets\", \"1 1/2 c. chopped tomatoes\", \"1/2 c. chopped green pepper\", \"1/3 c. lemon juice\", \"1 Tbsp. salad oil\", \"2 tsp. salt\", \"2 tsp. minced onion\", \"1 tsp. basil leaves\", \"1/4 tsp. coarsely ground black pepper\", \"4 drops red pepper sauce\", \"green pepper rings\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flounder\", \"tomatoes\", \"green pepper\", \"lemon juice\", \"salad oil\", \"salt\", \"onion\", \"basil\", \"ground black pepper\", \"drops red pepper sauce\", \"green pepper\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Three Bean Salad\n\nIngredients: [\"1 can green beans, wash and drain\", \"1 can yellow beans, wash and drain\", \"1 can kidney beans, wash and drain\", \"1 c. sugar\", \"1/2 c. salad oil\", \"2/3 c. vinegar\", \"1/3 c. water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"green beans\", \"yellow beans\", \"kidney beans\", \"sugar\", \"salad oil\", \"vinegar\", \"water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Dave'S Corn Casserole\n\nIngredients: [\"1 (16 1/2 oz.) can whole kernel corn, drained\", \"1 (16 1/2 oz.) can cream-style corn\", \"1 (8 oz.) sour cream\", \"1 (8 1/2 oz.) pkg. Jiffy corn bread mix\", \"1 stick margarine\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"whole kernel corn\", \"cream-style\", \"sour cream\", \"corn bread\", \"margarine\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Casserole Italiano\n\nIngredients: [\"1 lb. ground beef\", \"1/3 c. chopped onion\", \"1 can tomato soup\", \"2 c. cooked wide noodles\", \"1/2 tsp. oregano\", \"1/2 tsp. salt\", \"1/3 c. water\", \"1 c. cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"onion\", \"tomato soup\", \"noodles\", \"oregano\", \"salt\", \"water\", \"cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Corned Beef And Cabbage Casserole\n\nIngredients: [\"1 small cabbage, shredded\", \"1 tsp. dry mustard\", \"1 can corned beef, flaked\", \"1 can cream of celery soup\", \"1 medium chopped onion\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cabbage\", \"dry mustard\", \"corned beef\", \"cream of celery soup\", \"onion\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Crab Cakes\n\nIngredients: [\"1 Tbsp. Worcestershire sauce\", \"2 or 3 shakes Old Bay\", \"1 tsp. dry mustard\", \"2 Tbsp. mayonnaise\", \"1 egg\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Worcestershire sauce\", \"dry mustard\", \"mayonnaise\", \"egg\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Taco Dip\n\nIngredients: [\"2 (8 oz.) pkg. cream cheese, softened\", \"1/2 c. mayonnaise or salad dressing\", \"8 oz. mild taco sauce\", \"2 to 4 thinly sliced green onions\", \"1/2 green pepper, chopped\", \"1 tomato, chopped\", \"1 c. Mozzarella cheese\", \"1 c. Cheddar cheese\", \"1/2 c. black olives (optional)\", \"tortilla chips\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"mayonnaise\", \"taco sauce\", \"green onions\", \"green pepper\", \"tomato\", \"Mozzarella cheese\", \"Cheddar cheese\", \"black olives\", \"tortilla chips\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Bonbon Cookies\n\nIngredients: [\"1/2 lb. soft butter\", \"1/2 c. peanut butter\", \"1/2 lb. graham cracker crumbs\", \"2 c. coconut\", \"1/2 c. nut meats (optional)\", \"dash of vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"peanut butter\", \"graham cracker crumbs\", \"coconut\", \"nut meats\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Forever Amber\n\nIngredients: [\"1 lb. orange sliced candy, chopped\", \"2 cans Angel Flake coconut\", \"2 c. chopped pecans\", \"2 cans condensed milk\", \"1 tsp. vanilla\", \"1 tsp. orange flavoring\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"orange sliced candy\", \"Angel\", \"pecans\", \"condensed milk\", \"vanilla\", \"orange flavoring\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Gooey Coffee Cake\n\nIngredients: [\"1 yellow cake mix\", \"2 eggs\", \"1 stick oleo, melted\", \"1 c. chopped nuts\", \"2 eggs\", \"8 oz. softened cream cheese\", \"1 lb. powdered sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"yellow cake\", \"eggs\", \"oleo\", \"nuts\", \"eggs\", \"cream cheese\", \"powdered sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Phylis' Pineapple-Banana Salad\n\nIngredients: [\"1 large can chunk pineapple\", \"4 to 5 bananas\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pineapple\", \"bananas\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Casserole\n\nIngredients: [\"1 can cream of mushroom soup\", \"1 can cream of chicken soup\", \"1 can cream of celery soup\", \"1 cut up chicken\", \"1/2 c. melted butter or margarine\", \"1 1/2 c. uncooked rice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream of mushroom soup\", \"cream of chicken soup\", \"cream of celery soup\", \"chicken\", \"butter\", \"rice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pineapple Nut Pie\n\nIngredients: [\"1 (8 oz.) pkg. cream cheese\", \"1 can sweetened condensed milk\", \"1/2 c. crushed pineapple\", \"1/3 c. chopped nuts\", \"1/3 c. lemon juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"condensed milk\", \"pineapple\", \"nuts\", \"lemon juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Annie'S Diabetic Candy\n\nIngredients: [\"1 (8 oz.) Jell-O sugar-free vanilla or French vanilla pudding (put in dry)\", \"1 (8 oz.) Philadelphia light cream cheese\", \"2 Tbsp. butter\", \"2 Tbsp. peanut butter or more if you would like\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"vanilla\", \"cream cheese\", \"butter\", \"peanut butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Frozen Peach Mousse\n\nIngredients: [\"4 medium peaches, peeled and chopped\", \"1 to 1 1/4 c. sugar\", \"1 1/4 c. sour cream (use light)\", \"1/4 c. lemon juice\", \"3/4 to 1 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"peaches\", \"sugar\", \"sour cream\", \"lemon juice\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Strawberry Pie\n\nIngredients: [\"16 oz. Cool Whip\", \"2 pkg. frozen strawberries *\", \"2 (9-inch) deep pan pie crusts\", \"1 3/4 c. sugar\", \"12 oz. cream cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"frozen strawberries\", \"sugar\", \"cream cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Blueberry Surprise\n\nIngredients: [\"1 stick margarine\", \"1 1/2 c. graham cracker crumbs\", \"1/4 c. granulated sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"margarine\", \"graham cracker crumbs\", \"granulated sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Moist Devil'S Food Cake\n\nIngredients: [\"2 c. sifted flour\", \"1 1/2 tsp. baking soda\", \"1/4 tsp. salt\", \"1/2 c. shortening\", \"1 1/2 c. sugar\", \"2 eggs, separated\", \"1/2 c. cocoa\", \"water\", \"1 tsp. vanilla\", \"1 c. milk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"baking soda\", \"salt\", \"shortening\", \"sugar\", \"eggs\", \"cocoa\", \"water\", \"vanilla\", \"milk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Dot'S Civil War Cake\n\nIngredients: [\"3 medium apples, chopped\", \"2 c. raisins\", \"1 c. brown sugar\", \"1 c. granulated sugar\", \"2 Tbsp. shortening\", \"2 c. cold water\", \"3 c. flour\", \"2 tsp. soda\", \"1 tsp. cinnamon\", \"1 tsp. nutmeg\", \"1 tsp. cloves\", \"1 tsp. salt\", \"1 c. nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"apples\", \"raisins\", \"brown sugar\", \"sugar\", \"shortening\", \"cold water\", \"flour\", \"soda\", \"cinnamon\", \"nutmeg\", \"cloves\", \"salt\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Potato Casserole\n\nIngredients: [\"6 c. diced potatoes\", \"1/2 c. chopped onion\", \"3/4 c. melted butter\", \"1 can cream of chicken soup\", \"1 (8 oz.) sour cream\", \"1 c. grated Cheddar cheese\", \"2 c. crushed cornflakes\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"potatoes\", \"onion\", \"butter\", \"cream of chicken soup\", \"sour cream\", \"Cheddar cheese\", \"cornflakes\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Dream Pie\n\nIngredients: [\"vanilla wafers\", \"butter\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"vanilla wafers\", \"butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Divinity Fudge\n\nIngredients: [\"2 2/3 c. sugar\", \"2/3 c. white corn syrup (Karo)\", \"2/3 c. cold water\", \"2 egg whites\", \"1 tsp. vanilla\", \"1 c. chopped nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"white corn syrup\", \"cold water\", \"egg whites\", \"vanilla\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Apple Crisp\n\nIngredients: [\"apples\", \"1/2 c. sugar\", \"1 tsp. cinnamon\", \"1/4 c. sugar\", \"1 c. flour\", \"dash of salt\", \"1/2 c. corn flake crumbs\", \"1 stick oleo\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"apples\", \"sugar\", \"cinnamon\", \"sugar\", \"flour\", \"salt\", \"corn flake crumbs\", \"oleo\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sausage Balls\n\nIngredients: [\"2 c. Bisquick\", \"1 lb. sausage\", \"8 oz. pkg. Cheddar cheese, grated\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Bisquick\", \"sausage\", \"Cheddar cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Consomme Chicken\n\nIngredients: [\"chicken parts\", \"1 can cream of chicken soup\", \"1 can consomme\", \"2 c. rice\", \"salt to taste\", \"pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"cream of chicken soup\", \"consomme\", \"rice\", \"salt\", \"pepper\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Spanish Hamburgers\n\nIngredients: [\"1/2 c. celery\", \"2 chopped onions\", \"2 Tbsp. butter\", \"1 lb. ground beef\", \"2 Tbsp. vinegar\", \"2 Tbsp. lemon juice\", \"2 Tbsp. brown sugar\", \"1 1/2 Tbsp. mustard\", \"1 tsp. salt\", \"1 1/2 tsp. pepper\", \"1 c. catsup\", \"1 c. water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"celery\", \"onions\", \"butter\", \"ground beef\", \"vinegar\", \"lemon juice\", \"brown sugar\", \"mustard\", \"salt\", \"pepper\", \"catsup\", \"water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Egg Drop Soup\n\nIngredients: [\"2 (13 3/4 oz.) cans chicken broth\", \"1 Tbsp. cornstarch\", \"1 well beaten egg\", \"2 Tbsp. sliced (1/4-inch) green onion\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken broth\", \"cornstarch\", \"egg\", \"green onion\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Mulled Cider\n\nIngredients: [\"1/2 gal. apple juice\", \"1 tsp. allspice\", \"1 tsp. whole cloves\", \"1 cinnamon stick\", \"1 c. brown sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"apple juice\", \"allspice\", \"whole cloves\", \"cinnamon\", \"brown sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sesame Ginger Chicken\n\nIngredients: [\"1 Tbsp. sesame seed, toasted\", \"2 tsp. grated ginger\", \"2 Tbsp. honey\", \"2 Tbsp. reduced-sodium soy sauce\", \"4 (4 oz.) skinned chicken breast halves\", \"vegetable cooking spray\", \"thin green onion strips\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sesame seed\", \"grated ginger\", \"honey\", \"soy sauce\", \"chicken\", \"vegetable cooking spray\", \"thin green onion strips\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Egg Casserole\n\nIngredients: [\"1 Vidalia onion, chopped\", \"1 (16 oz.) pkg. fresh mushrooms\", \"2 green peppers\", \"1 clove garlic\", \"olive oil\", \"6 pieces bread (buttered with either butter or margarine)\", \"6 eggs\", \"milk (as much as you would like; to fluff eggs)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Vidalia onion\", \"fresh mushrooms\", \"green peppers\", \"clove garlic\", \"olive oil\", \"bread\", \"eggs\", \"milk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cranberry-Apple-Orange Salad\n\nIngredients: [\"1 (12 oz.) bag raw cranberries (2 c.)\", \"1 c. sugar\", \"1 medium apple, peeled, cored and cut into wedges\", \"1 orange, peeled, seeded and broken in wedges\", \"1 (3 oz.) pkg. orange gelatin\", \"1/2 c. nuts (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cranberries\", \"sugar\", \"apple\", \"orange\", \"orange gelatin\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Brown Rice\n\nIngredients: [\"1 c. raw rice\", \"1 can beef consomme\", \"1 can French onion soup\", \"1 (4 oz.) can mushrooms\", \"1/2 stick margarine, cut up\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"rice\", \"beef consomme\", \"onion soup\", \"mushrooms\", \"margarine\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cranberry Salad\n\nIngredients: [\"2 (3 oz.) pkg. softened cream cheese\", \"2 Tbsp. margarine\", \"2 Tbsp. sugar\", \"1 (16 oz.) can whole berry cranberry sauce\", \"3/4 c. crushed pineapple, drained\", \"1/2 c. chopped walnuts\", \"1 c. whipping cream\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"margarine\", \"sugar\", \"cranberry sauce\", \"pineapple\", \"walnuts\", \"whipping cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheese Dip\n\nIngredients: [\"2 lb. Velveeta cheese\", \"1 (15 oz.) can Italian tomatoes\", \"2 small cans green chili peppers\", \"1/2 medium onion, minced\", \"3 cloves garlic\", \"1/2 tsp. salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Velveeta cheese\", \"Italian tomatoes\", \"green chili peppers\", \"onion\", \"garlic\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Funnel Cake\n\nIngredients: [\"1 1/3 c. flour\", \"1 1/4 tsp. salt\", \"1/2 tsp. soda\", \"2 Tbsp. sugar\", \"3/4 Tbsp. baking powder\", \"1 egg, beaten\", \"2/3 c. milk (more if batter is too thick)\", \"oil (for frying)\", \"powdered sugar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"salt\", \"soda\", \"sugar\", \"baking powder\", \"egg\", \"milk\", \"oil\", \"powdered sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fast Real Good Fudge\n\nIngredients: [\"4 lb. confectioners sugar\", \"1 c. cocoa\", \"1 c. chopped nuts\", \"1 lb. margarine (not whipped)\", \"1 lb. Velveeta\", \"1 Tbsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"confectioners sugar\", \"cocoa\", \"nuts\", \"margarine\", \"Velveeta\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Squash Casserole\n\nIngredients: [\"3 lb. squash\", \"3 onions\", \"1 pt. sour cream\", \"3 carrots, grated\", \"2 cans chicken or mushroom soup\", \"1 pkg. Pepperidge Farm stuffing mix\", \"1 stick butter\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"squash\", \"onions\", \"sour cream\", \"carrots\", \"chicken\", \"stuffing mix\", \"butter\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheese Ball\n\nIngredients: [\"2 pkg. cream cheese\", \"2 c. shredded Cheddar cheese (8 oz.)\", \"1 Tbsp. chopped pimento\", \"1 Tbsp. chopped green pepper\", \"1 Tbsp. chopped onion\", \"1 tsp. lemon juice\", \"2 tsp. Worcestershire sauce\", \"dash of Tabasco sauce\", \"dash of salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"Cheddar cheese\", \"pimento\", \"green pepper\", \"onion\", \"lemon juice\", \"Worcestershire sauce\", \"Tabasco sauce\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: *Apricot Salad\n\nIngredients: [\"1 large pkg. apricot jello (6 oz.)\", \"2/3 c. sugar\", \"1 (8 oz.) pkg. cream cheese\", \"2 jars Junior baby food apricots\", \"1 (No. 2) can crushed pineapple (20 oz.)\", \"1 tall can evaporated milk, chilled and whipped\", \"2/3 c. water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"apricot jello\", \"sugar\", \"cream cheese\", \"jars Junior baby food\", \"pineapple\", \"milk\", \"water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pound Cake\n\nIngredients: [\"3 c. plain flour (cake flour may be substituted for plain flour)\", \"3 c. sugar\", \"1/2 tsp. baking powder\", \"3 dashes of salt\", \"5 eggs\", \"2 sticks margarine\", \"1/2 c. butter flavor Crisco\", \"1 c. sweet milk\", \"1 to 2 Tbsp. flavoring (lemon, vanilla or almond or a combination of the 3)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"sugar\", \"baking powder\", \"salt\", \"eggs\", \"margarine\", \"butter\", \"sweet milk\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Monkey Bread\n\nIngredients: [\"2 loaves frozen bread, softened\", \"1/2 c. margarine\", \"1 c. brown sugar\", \"1 large box vanilla pudding (not instant)\", \"2 Tbsp. milk\", \"cinnamon to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"bread\", \"margarine\", \"brown sugar\", \"vanilla pudding\", \"milk\", \"cinnamon\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Roll-Ups\n\nIngredients: [\"1 (8 oz.) can crescent rolls\", \"1 1/2 c. grated medium or sharp cheese\", \"1 hen, cooked and diced\", \"1 can cream of chicken soup\", \"1 1/2 c. milk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"crescent rolls\", \"cheese\", \"hen\", \"cream of chicken soup\", \"milk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Beef And Spanish Rice Casserole\n\nIngredients: [\"1 can Spanish rice\", \"1 can corned beef\", \"1 diced onion\", \"1/2 c. grated Cheddar cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Spanish rice\", \"corned beef\", \"onion\", \"Cheddar cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Baked Beans\n\nIngredients: [\"3 (1 lb.) cans pork and beans\", \"1/2 c. bell pepper, chopped\", \"1/2 c. onions, chopped\", \"3/4 c. catsup\", \"1/3 c. brown sugar, packed hard\", \"1 tsp. salt\", \"1/3 tsp. black pepper\", \"1 lb. ground beef\", \"1 Tbsp. oil\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pork\", \"bell pepper\", \"onions\", \"catsup\", \"brown sugar\", \"salt\", \"black pepper\", \"ground beef\", \"oil\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sweet-N-Sour Chicken\n\nIngredients: [\"2 c. diced cooked chicken\", \"2 Tbsp. shortening\", \"1/2 c. onion (large chunks)\", \"2 c. carrot chunks\", \"1 1/4 c. water\", \"3 chicken bouillon cubes\", \"1/4 c. packed brown sugar\", \"2 Tbsp. cornstarch\", \"1/4 tsp. ginger\", \"1/4 c. catsup\", \"2 Tbsp. vinegar\", \"1 Tbsp. soy sauce\", \"1 c. green pepper (large chunks)\", \"8 oz. pineapple chunks\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"shortening\", \"onion\", \"carrot chunks\", \"water\", \"chicken\", \"brown sugar\", \"cornstarch\", \"ginger\", \"catsup\", \"vinegar\", \"soy sauce\", \"green pepper\", \"pineapple\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Ambrosia\n\nIngredients: [\"8 to 10 juicy oranges, peeled and diced\", \"1 c. moist coconut\", \"1/2 c. pecans, chopped\", \"1/2 c. cherries, halved\", \"1/4 c. sugar\", \"1 c. orange juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"oranges\", \"moist coconut\", \"pecans\", \"cherries\", \"sugar\", \"orange juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Crazy Peanut Butter Cookies\n\nIngredients: [\"1 c. creamy peanut butter\", \"1 c. sugar\", \"1 egg\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"peanut butter\", \"sugar\", \"egg\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Brickle Bars\n\nIngredients: [\"1 box yellow cake mix\", \"2 eggs\", \"1/3 c. soft margarine\", \"1 can Eagle Brand milk\", \"1 c. pecans\", \"1/2 c. Bits 'O Brickle\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"yellow cake mix\", \"eggs\", \"margarine\", \"milk\", \"pecans\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pancakes\n\nIngredients: [\"1 c. flour\", \"1 tsp. soda\", \"1 tsp. salt\", \"1 Tbsp. sugar\", \"1 egg\", \"3 Tbsp. margarine, melted\", \"1 c. buttermilk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"soda\", \"salt\", \"sugar\", \"egg\", \"margarine\", \"buttermilk\"]"}]} diff --git a/18-fine-tuning/assignments/python/tmp_recipe_finetune_validation.jsonl b/18-fine-tuning/assignments/python/tmp_recipe_finetune_validation.jsonl deleted file mode 100644 index da5a9bac4..000000000 --- a/18-fine-tuning/assignments/python/tmp_recipe_finetune_validation.jsonl +++ /dev/null @@ -1,100 +0,0 @@ -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Crustless Vegetable Ham Pie\n\nIngredients: [\"1/4 c. butter\", \"1/4 lb. mushrooms, sliced\", \"1 garlic clove, minced\", \"1 medium zucchini, sliced thinly\", \"1/4 c. chopped onion\", \"1 c. diced, cooked ham\", \"4 eggs\", \"2 c. Ricotta cheese\", \"1 c. shredded Monterey Jack\", \"1 (10 oz.) pkg. frozen spinach, thawed and drained\", \"1/2 tsp. dill weed\", \"salt and pepper\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"mushrooms\", \"garlic\", \"zucchini\", \"onion\", \"eggs\", \"Ricotta cheese\", \"shredded Monterey Jack\", \"frozen spinach\", \"dill weed\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Red Cabbage And Apples\n\nIngredients: [\"1 c. red cabbage, finely chopped\", \"2 Tbsp. butter\", \"2 apples, finely sliced\", \"1 Tbsp. brown sugar\", \"1 Tbsp. vinegar\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"red cabbage\", \"butter\", \"apples\", \"brown sugar\", \"vinegar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: German Potato Salad\n\nIngredients: [\"4 lb. potatoes, cooked\", \"6 slices bacon, diced\", \"1/2 c. sugar\", \"3 Tbsp. flour\", \"2 tsp. salt\", \"1/4 tsp. pepper\", \"1 c. cider vinegar\", \"1 c. water\", \"4 green onions, sliced\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"potatoes\", \"bacon\", \"sugar\", \"flour\", \"salt\", \"pepper\", \"cider vinegar\", \"water\", \"green onions\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Jan'S Winter Soup\n\nIngredients: [\"2 Tbsp. butter\", \"2 medium onions, chopped\", \"1 lb. ground beef or turkey\", \"1 clove garlic, minced\", \"3 c. beef or chicken broth\", \"1 (28 oz.) can tomatoes, chopped\", \"1 c. diced potatoes\", \"3 carrots, chopped\", \"1 c. celery, chopped\", \"1 c. frozen green beans\", \"1 c. dry red wine\", \"1/2 tsp. basil\", \"1/4 tsp. thyme\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"onions\", \"ground beef\", \"clove garlic\", \"beef\", \"tomatoes\", \"potatoes\", \"carrots\", \"celery\", \"frozen green beans\", \"red wine\", \"basil\", \"thyme\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Microwave Spice Tea\n\nIngredients: [\"1 (1 lb. 2 oz.) jar Tang\", \"1 pkg. lemonade Kool Aid with sugar added\", \"2 c. sugar\", \"1 tsp. ground cloves\", \"2 tsp. cinnamon\", \"1/2 c. instant tea\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"sugar\", \"ground cloves\", \"cinnamon\", \"instant tea\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Barbecue Noodle Cheese Bake\n\nIngredients: [\"1 can Manwich\", \"1 lb. hamburg\", \"American cheese slices\", \"noodles, cooked and drained\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Manwich\", \"hamburg\", \"American cheese\", \"noodles\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cutout Cookie\n\nIngredients: [\"1/2 c. shortening\", \"1/2 c. butter\", \"1 c. sugar\", \"2 eggs, beaten\", \"1 1/2 tsp. vanilla\", \"2 1/2 c. flour\", \"1 tsp. baking powder\", \"1/2 tsp. salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"shortening\", \"butter\", \"sugar\", \"eggs\", \"vanilla\", \"flour\", \"baking powder\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Don Juan'S Sangria\n\nIngredients: [\"1 lime, cut into wedges\", \"1 orange, cut into slices\", \"1/2 large apple, cut into thin wedges\", \"1/2 to 3/4 c. sugar\", \"1 bottle dry red Spanish wine\", \"1/4 c. brandy\", \"1/4 c. Triple Sec\", \"club soda\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"lime\", \"orange\", \"apple\", \"sugar\", \"red Spanish\", \"brandy\", \"Triple Sec\", \"club soda\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Ranch Beef And Beans\n\nIngredients: [\"1 lb. cooked, crumbled hamburger (drained)\", \"1 c. onion, chopped\", \"1 c. kidney beans, cooked and drained\", \"1 c. butter beans\", \"1 c. baked beans\", \"3/4 c. ketchup\", \"1 sm. can mild green chilies, chopped (opt.)\", \"1 TBSP prepared mustard\", \"1 tsp. beef bouillon\", \"1/2 c. water\", \"2 TBSP. honey\", \"2/3 c. bell pepper, chopped\", \"1 tsp. Worcestershire sauce\", \"1/2 tsp. garlic pwd\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"hamburger\", \"onion\", \"kidney beans\", \"butter beans\", \"beans\", \"ketchup\", \"green chilies\", \"mustard\", \"beef bouillon\", \"water\", \"honey\", \"bell pepper\", \"Worcestershire sauce\", \"garlic\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Crisp Oatmeal Cookies\n\nIngredients: [\"4 c. quick cooking oats\", \"2 c. brown sugar, packed\", \"1 c. salad oil\", \"2 eggs, well beaten\", \"1/2 tsp. salt\", \"1 tsp. almond extract\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cooking oats\", \"brown sugar\", \"salad oil\", \"eggs\", \"salt\", \"almond extract\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Souper Tuna Crunch\n\nIngredients: [\"1 can Chinese noodles\", \"1 can Campbell's cream of mushroom soup\", \"3/4 c. water\", \"1 (6 1/2 oz.) can Chicken of the Sea tuna, drained and broken in chunks\", \"1 c. cashews or peanuts\", \"1 c. chopped celery\", \"1/2 c. finely chopped onion\", \"1/2 c. cooked peas\", \"soy sauce\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Chinese noodles\", \"Campbell's cream\", \"water\", \"Chicken\", \"cashews\", \"celery\", \"onion\", \"peas\", \"soy sauce\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheese-Ham Ball\n\nIngredients: [\"1/2 lb. Cheddar cheese, shredded\", \"1 (8 oz.) pkg. cream cheese\", \"1 small flat can deviled ham\", \"1 Tbsp. pimiento, chopped\", \"approximately 1 Tbsp. dried parsley, soaked in water, then patted dry on paper towel\", \"dash of Worcestershire sauce\", \"1/2 tsp. fresh minced onion\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Cheddar cheese\", \"cream cheese\", \"ham\", \"pimiento\", \"parsley\", \"Worcestershire sauce\", \"onion\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheese Ball\n\nIngredients: [\"2 (8 oz.) cream cheese\", \"2/3 can chopped black olives\", \"1 jar Armour dried beef\", \"4 green onions (tops and all)\", \"1/2 jar mushrooms\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"black olives\", \"Armour dried beef\", \"green onions\", \"mushrooms\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pasta Chicken Salad(268 Calories Per Serving) \n\nIngredients: [\"3 1/2 c. (8 oz.) large shells (uncooked)\", \"2 c. cubed, cooked chicken (light meat)\", \"2 c. fresh, raw broccoli flowerets\", \"2 c. fresh, raw cauliflower\", \"1 c. sliced carrots\", \"1 c. sliced green onions\", \"1/2 lb. fresh mushrooms, sliced\", \"1 c. (8 oz. bottle) reduced calorie creamy Italian salad dressing\", \"3/4 c. skim milk\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"shells\", \"chicken\", \"broccoli flowerets\", \"cauliflower\", \"carrots\", \"green onions\", \"fresh mushrooms\", \"Italian salad dressing\", \"milk\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Zucchini-Artichoke Continental\n\nIngredients: [\"1 (9 oz.) pkg. frozen artichoke hearts\", \"2 Tbsp. water\", \"3 medium zucchini (1 lb.), sliced 1/4-inch thick (4 c.)\", \"2 c. fresh mushrooms, halved\", \"2 Tbsp. finely chopped green onion\", \"2 cloves garlic, minced\", \"1 Tbsp. margarine or butter\", \"2 medium tomatoes, cut into wedges and seeded\", \"1/4 c. grated Parmesan cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"frozen artichoke\", \"water\", \"zucchini\", \"fresh mushrooms\", \"green onion\", \"garlic\", \"margarine\", \"tomatoes\", \"Parmesan cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Supreme Beef Casserole\n\nIngredients: [\"1 lb. ground chuck\", \"1 tsp. shortening\", \"1 (16 oz.) can tomatoes\", \"1 (8 oz.) can tomato sauce\", \"2 tsp. salt\", \"2 tsp. sugar\", \"2 garlic cloves, crushed\", \"1 (5 oz.) pkg. egg noodles\", \"1 c. sour cream\", \"1 (3 oz.) pkg. cream cheese\", \"6 green onions or scallions, chopped (with tops)\", \"1 c. grated cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground chuck\", \"shortening\", \"tomatoes\", \"tomato sauce\", \"salt\", \"sugar\", \"garlic\", \"egg noodles\", \"sour cream\", \"cream cheese\", \"green onions\", \"grated cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Salad\n\nIngredients: [\"1 (12.5 oz.) can chunk white chicken\", \"2 c. chopped celery\", \"1 small pkg. slivered almonds\", \"1 c. water chestnuts\", \"1 c. white grapes\", \"1/2 tsp. salt\", \"1/8 tsp. pepper\", \"1 tsp. lemon juice\", \"curry powder to caste\", \"nonfat mayonnaise\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chunk white chicken\", \"celery\", \"almonds\", \"water chestnuts\", \"white grapes\", \"salt\", \"pepper\", \"lemon juice\", \"curry powder\", \"nonfat mayonnaise\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chess Pie\n\nIngredients: [\"1 stick margarine\", \"1 1/2 c. sugar\", \"1 Tbsp. meal\", \"1 Tbsp. vinegar\", \"4 eggs (add one at a time)\", \"dash of salt\", \"1 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"margarine\", \"sugar\", \"meal\", \"vinegar\", \"eggs\", \"salt\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cold Spaghetti Salad\n\nIngredients: [\"1 lb. vermicelli\", \"1 lb. fine chopped bell pepper\", \"2 small zucchini, finely chopped\", \"1 large purple onion, sliced thin\", \"1 large bottle Bernstien Italian dressing\", \"1/2 to 3/4 jar Schilling Salad Supreme seasoning\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"vermicelli\", \"bell pepper\", \"zucchini\", \"purple onion\", \"Salad Supreme seasoning\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cucumber Salad With Dill\n\nIngredients: [\"2 cucumbers, sliced very thin\", \"1/3 c. white vinegar\", \"1 tsp. salt\", \"3 Tbsp. sugar\", \"1 large onion, sliced thin\", \"fresh dill\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cucumbers\", \"white vinegar\", \"salt\", \"sugar\", \"onion\", \"dill\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Spaghetti\n\nIngredients: [\"1 (13 oz.) can cooked chicken\", \"1 (10 oz.) can cream of mushroom soup\", \"1 (10 oz.) can cream of chicken soup\", \"1 (10 oz.) can Rotel tomatoes\", \"1 to 2 c. cheese of your choice\", \"1 (16 oz.) pkg. spaghetti\", \"1 Tbsp. steak seasoning\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"cream of mushroom soup\", \"cream of chicken soup\", \"tomatoes\", \"your choice\", \"spaghetti\", \"steak seasoning\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cheese Ball\n\nIngredients: [\"2 (8 oz.) cream cheese\", \"4 c. shredded sharp cheese\", \"1/3 c. mayonnaise\", \"1 tsp. Worcestershire sauce\", \"1/8 tsp. garlic salt\", \"1/8 tsp. celery salt\", \"1/8 tsp. onion salt\", \"1/2 c. chopped pimento\", \"1/4 c. chopped olives\", \"1/4 c. parsley flakes\", \"1/2 jar dried chipped beef\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream cheese\", \"sharp cheese\", \"mayonnaise\", \"Worcestershire sauce\", \"garlic salt\", \"celery salt\", \"onion salt\", \"pimento\", \"olives\", \"parsley flakes\", \"beef\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pistachio Salad\n\nIngredients: [\"pistachio pie filling (instant)\", \"1 can crushed pineapple\", \"1 c. miniature marshmallows\", \"1/2 container Cool Whip (small)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pistachio pie filling\", \"pineapple\", \"marshmallows\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Good Sweet Muffins\n\nIngredients: [\"1 egg\", \"1/2 c. milk\", \"1/4 c. vegetable oil\", \"1 1/2 c. flour\", \"1/2 c. sugar\", \"2 tsp. baking powder\", \"1/2 tsp. salt\", \"1 c. blueberries (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"egg\", \"milk\", \"vegetable oil\", \"flour\", \"sugar\", \"baking powder\", \"salt\", \"blueberries\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Vanilla Creme Dessert\n\nIngredients: [\"1 c. flour\", \"1 stick margarine, melted\", \"1/2 c. crushed pecans\", \"1 large pkg. cream cheese\", \"1 large pkg. Cool Whip\", \"1 c. powdered sugar\", \"2 large pkg. instant vanilla pudding\", \"3 c. milk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"margarine\", \"pecans\", \"cream cheese\", \"powdered sugar\", \"instant vanilla pudding\", \"milk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: St. Joseph'S Zeppole\n\nIngredients: [\"1 c. water\", \"1/2 c. butter\", \"1 tsp. sugar\", \"1 c. all-purpose flour\", \"4 large eggs\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"water\", \"butter\", \"sugar\", \"flour\", \"eggs\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Corn \"Oysters\"\n\nIngredients: [\"1 can cream-style corn\", \"2 eggs\", \"1/2 tsp. grated onion\", \"8 to 10 finely rolled crackers\", \"salt\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cream-style corn\", \"eggs\", \"onion\", \"crackers\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Bright Party Beans\n\nIngredients: [\"2 lb. ground beef\", \"1 pkg. dry onion mix\", \"1 (No. 3) can B & M beans\", \"2 (15 oz.) cans kidney beans\", \"2 (15 oz.) cans small yellow lima beans\", \"2 cans green baby lima beans\", \"1/2 c. dark brown sugar\", \"1/2 c. dark or light Karo syrup\", \"1 tsp. chili powder\", \"1 c. ketchup\", \"1 Tbsp. dry mustard\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"onion\", \"beans\", \"kidney beans\", \"yellow lima beans\", \"green baby\", \"brown sugar\", \"syrup\", \"chili powder\", \"ketchup\", \"mustard\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Apricot Dessert\n\nIngredients: [\"1 angel food cake, broken into pieces\", \"46 oz. apricot nectar\", \"1 1/4 c. sugar\", \"7 Tbsp. cornstarch\", \"1 c. chopped walnuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cake\", \"apricot nectar\", \"sugar\", \"cornstarch\", \"walnuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Honey Almond Squares\n\nIngredients: [\"1 Duncan Hines white pudding cake mix\", \"1 (8 oz.) pkg. cream cheese (at room temperature)\", \"1/4 c. alfalfa honey\", \"3 to 4 oz. sliced almonds\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cake mix\", \"cream cheese\", \"alfalfa honey\", \"almonds\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Casserole\n\nIngredients: [\"1/2 c. raw rice\", \"1 can French onion soup\", \"1 can cream of chicken or chicken mushroom soup\", \"1 (4 oz.) can mushrooms\", \"bite size pieces of 4 to 6 chicken thighs or any other chicken parts you wish to use\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"rice\", \"onion soup\", \"cream of chicken\", \"mushrooms\", \"bite\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Artichoke Dip\n\nIngredients: [\"1 c. mayonnaise\", \"1 c. grated Parmesan or Romano cheese\", \"1 jar artichokes, drained and cut into small pieces\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"mayonnaise\", \"Romano cheese\", \"artichokes\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: French Onion Soup\n\nIngredients: [\"1/4 lb. butter\", \"2 1/2 lb. onions, sliced\", \"1 qt. beef stock (3 cans Campbell's beef stock)\", \"1 qt. chicken stock (3 cans Campbell's chicken stock)\", \"2 Tbsp. Worcestershire sauce\", \"1 bay leaf\", \"1 1/2 tsp. garlic salt\", \"1 tsp. black pepper (you may wish to use less)\", \"salt to taste (you may not want any)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"onions\", \"beef stock\", \"chicken stock\", \"Worcestershire sauce\", \"bay leaf\", \"garlic salt\", \"black pepper\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Apple Pie\n\nIngredients: [\"6 to 7 apples, sliced\", \"1 c. sugar\", \"2 Tbsp. flour\", \"1 tsp. cinnamon\", \"dash of salt and nutmeg\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"apples\", \"sugar\", \"flour\", \"cinnamon\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sloppy Joes\n\nIngredients: [\"1 lb. hamburger\", \"1 c. ketchup\", \"3 Tbsp. Worcestershire sauce\", \"1 Tbsp. mustard\", \"2 Tbsp. sugar\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"hamburger\", \"ketchup\", \"Worcestershire sauce\", \"mustard\", \"sugar\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: 7-Up Cake\n\nIngredients: [\"3 c. flour\", \"3 c. sugar\", \"5 eggs\", \"3 sticks real butter (preferably Land O Lakes)\", \"3 Tbsp. lemon flavor\", \"3/4 c. 7-Up\", \"yellow food coloring (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"sugar\", \"eggs\", \"butter\", \"lemon flavor\", \"yellow food coloring\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Corned Beef Dip\n\nIngredients: [\"1 can corned beef\", \"1 (8 oz.) pkg. cream cheese\", \"2/3 c. mayonnaise\", \"1 c. chopped candied dill pickles\", \"2 Tbsp. chopped onion\", \"1/2 tsp. horseradish\", \"1 Tbsp. Worcestershire sauce\", \"2 tsp. Nance mustard\", \"3 Tbsp. pickle juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"corned beef\", \"cream cheese\", \"mayonnaise\", \"pickles\", \"onion\", \"horseradish\", \"Worcestershire sauce\", \"pickle juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Pie\n\nIngredients: [\"2 c. sugar\", \"1/2 c. milk\", \"3 Tbsp. cocoa\", \"3 heaping Tbsp. flour\", \"3 egg yolks\", \"1 clump (2 Tbsp.) butter\", \"1 tsp. vanilla\", \"1 c. boiling water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"milk\", \"cocoa\", \"flour\", \"egg yolks\", \"clump\", \"vanilla\", \"boiling water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Tater Tot Casserole\n\nIngredients: [\"1 (32 oz.) bag Tater Tots\", \"2 lb. ground beef\", \"1 chopped onion\", \"1 chopped bell pepper\", \"1 can cream of mushroom soup\", \"1 can cream of celery soup\", \"1 can cream of chicken soup\", \"grated cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Tater\", \"ground beef\", \"onion\", \"bell pepper\", \"cream of mushroom soup\", \"cream of celery soup\", \"cream of chicken soup\", \"grated cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Blackberry Pie\n\nIngredients: [\"3/4 c. sugar\", \"2 1/2 Tbsp. cornstarch\", \"1 c. water\", \"3 1/2 Tbsp. blackberry flavored gelatin\", \"4 c. fresh blackberries\", \"1 baked 9-inch pastry shell\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"cornstarch\", \"water\", \"flavored gelatin\", \"fresh blackberries\", \"pastry shell\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Caramel Pie\n\nIngredients: [\"16 oz. Cool Whip\", \"2 c. coconut\", \"3/4 margarine, melted\", \"1 c. slivered almonds, chopped fine\", \"1 can Eagle Brand milk\", \"3 graham cracker crusts\", \"8 oz. cream cheese\", \"1 jar caramel topping\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"coconut\", \"margarine\", \"slivered almonds\", \"milk\", \"graham cracker crusts\", \"cream cheese\", \"caramel topping\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Dill Dip\n\nIngredients: [\"3/4 c. Miracle Whip salad dressing\", \"1 c. sour cream\", \"1/2 Tbsp. minced onion\", \"1/2 Tbsp. parsley flakes\", \"1/2 Tbsp. dill weed\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Miracle\", \"sour cream\", \"onion\", \"parsley flakes\", \"dill weed\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Broccoli Cornbread\n\nIngredients: [\"1/2 chopped medium onion\", \"1 Tbsp. oil\", \"5 oz. frozen broccoli\", \"1/2 stick margarine\", \"1 pkg. Jiffy cornbread mix\", \"2 eggs\", \"6 oz. cottage cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"onion\", \"oil\", \"frozen broccoli\", \"margarine\", \"mix\", \"eggs\", \"cottage cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Vegetable Soup\n\nIngredients: [\"1 medium onion, diced\", \"1 potato, diced\", \"1 1/2 green sweet peppers, diced\", \"1/2 c. diced celery\", \"1 c. diced carrots\", \"1 c. small macaroni, cooked\", \"1 1/2 lb. ground turkey or beef\", \"14 oz. can French green beans\", \"1 large bay leaf\", \"1 tsp. Italian seasoning\", \"1 c. sweet peas\", \"1 can tomato juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"onion\", \"potato\", \"green sweet peppers\", \"celery\", \"carrots\", \"macaroni\", \"ground turkey\", \"beans\", \"bay leaf\", \"Italian seasoning\", \"sweet peas\", \"tomato juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Peanut Butter Cake\n\nIngredients: [\"1/4 c. cocoa\", \"2 sticks oleo\", \"2 c. flour\", \"2 c. sugar\", \"1 tsp. baking soda\", \"dash of salt\", \"2 eggs\", \"1 tsp. vanilla\", \"1 c. water\", \"1/2 c. buttermilk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cocoa\", \"oleo\", \"flour\", \"sugar\", \"baking soda\", \"salt\", \"eggs\", \"vanilla\", \"water\", \"buttermilk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Magic Cookie Bars\n\nIngredients: [\"1/2 c. butter\", \"1 1/2 c. graham cracker crumbs\", \"1 (14 oz.) can Eagle Brand milk\", \"6 oz. semi-sweet chocolate chips\", \"1 (3 1/2 oz.) can flaked coconut (1 1/2 c.)\", \"1 c. chopped nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"graham cracker crumbs\", \"milk\", \"semi-sweet chocolate chips\", \"flaked coconut\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pecan Pralines\n\nIngredients: [\"1 c. sugar\", \"1 c. packed brown sugar\", \"1/3 c. evaporated milk\", \"1/2 stick butter or margarine, softened\", \"1 1/2 c. pecans\", \"1 1/2 c. coconut\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"brown sugar\", \"milk\", \"butter\", \"pecans\", \"coconut\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate \"Stuff\"\n\nIngredients: [\"1 large box instant chocolate pudding mix\", \"1 small bag vanilla wafers\", \"1 small tub Cool Whip\", \"1 small pkg. chopped pecans (about 1/2 c.)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chocolate pudding\", \"vanilla wafers\", \"pecans\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Easy Chocolate Frosting\n\nIngredients: [\"1 1/3 c. white sugar\", \"6 Tbsp. butter\", \"6 Tbsp. milk\", \"1/2 c. chocolate chips\", \"1/2 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"white sugar\", \"butter\", \"milk\", \"chocolate chips\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: No Bake Pumpkin Pie\n\nIngredients: [\"1 envelope Knox unflavored gelatine\", \"1 (14 oz.) Eagle Brand milk\", \"2 eggs, beaten\", \"1 (16 oz.) can pumpkin (not pumpkin mix)\", \"1 tsp. cinnamon\", \"1/2 tsp. ginger\", \"1/2 tsp. salt\", \"2 pie shells, baked\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"unflavored gelatine\", \"milk\", \"eggs\", \"pumpkin\", \"cinnamon\", \"ginger\", \"salt\", \"pie shells\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Baked French Toast\n\nIngredients: [\"5 large eggs, slightly beaten\", \"1/4 c. sugar\", \"1/4 tsp. ground nutmeg\", \"2/3 c. orange juice\", \"1/3 c. half and half cream\", \"1/2 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"sugar\", \"ground nutmeg\", \"orange juice\", \"cream\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Puppy Chow\n\nIngredients: [\"9 c. Chex cereal\", \"1 c. chocolate chips\", \"1 1/2 c. powdered sugar\", \"1/2 c. peanut butter\", \"1/4 c. margarine\", \"1 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cereal\", \"chocolate chips\", \"powdered sugar\", \"peanut butter\", \"margarine\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Tamale Casserole\n\nIngredients: [\"1 (16 oz.) can yellow hominy\", \"1 (4 oz.) can chopped olives\", \"1 (4 oz.) can mild green chilies\", \"2 (16 oz.) cans tamales\", \"2 c. shredded mild Cheddar cheese\", \"1/4 c. dried chopped onions\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"yellow hominy\", \"olives\", \"green chilies\", \"tamales\", \"Cheddar cheese\", \"onions\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Taco Dip\n\nIngredients: [\"1 small can refried beans\", \"1 small carton guacamole dip\", \"1 c. sour cream\", \"3 Tbsp. mayonnaise\", \"1 pkg. taco seasoning\", \"1 c. Mozzarella cheese\", \"1 c. cheddar cheese\", \"Chopped green onions, tomato and black olives (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"beans\", \"guacamole dip\", \"sour cream\", \"mayonnaise\", \"taco seasoning\", \"Mozzarella cheese\", \"cheddar cheese\", \"green onions\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Bonnie'S Bread\n\nIngredients: [\"4 c. water or potato water\", \"1 cake yeast or 3 pkg. dry yeast\", \"2 Tbsp. salt\", \"2 eggs, well beaten\", \"1 c. sugar or more\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"water\", \"cake yeast\", \"salt\", \"eggs\", \"sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Pot Pie\n\nIngredients: [\"2 c. chicken, cooked and cubed\", \"1 can cream of mushroom soup\", \"3 c. chicken broth\", \"1 can peas and carrots, drained\", \"1 chopped onion\", \"3/4 c. oleo, melted\", \"1 1/2 c. milk\", \"1 1/2 tsp. baking powder\", \"1 1/2 c. self-rising flour\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"cream of mushroom soup\", \"chicken broth\", \"peas\", \"onion\", \"oleo\", \"milk\", \"baking powder\", \"flour\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Smoked Turkey Risotto\n\nIngredients: [\"3 c. chicken stock or vegetable stock\", \"1 pkg. (10 oz.) frozen artichoke hearts\", \"2 t. olive or canola oil\", \"3 green onions, including tops, sliced (1/3 c.)\", \"1 clove garlic, minced\", \"1 c. arborio, basmati, or long-grain, white rice\", \"1/2 t. dried oregano, crumbled\", \"1/2 t. salt\", \"1/4 t. black pepper\", \"4 oz. spinach, rinsed, trimmed and thinly sliced (2 c.)\", \"3 T. grated parmesan cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken\", \"olive\", \"green onions\", \"clove garlic\", \"arborio\", \"oregano\", \"salt\", \"black pepper\", \"spinach\", \"parmesan cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Eggplant Spaghetti Sauce\n\nIngredients: [\"1/2 c. oil (I use olive oil, extra light)\", \"1 large eggplant, unpeeled and chopped\", \"2 medium onions chopped\", \"1/2 head cauliflower, chopped\", \"1 green pepper, chopped\", \"1/2 c. fresh parsley (flat Italian), chopped\", \"1/4 lb. mushrooms, sliced\", \"8 cloves garlic, minced or mashed\", \"2 very large cans Italian tomatoes\", \"1 bay leaf\", \"1 tsp. dried basil\", \"1 tsp. oregano\", \"1 tsp. thyme\", \"1/2 tsp. marjoram\", \"1/2 tsp. rosemary\", \"1/2 tsp. salt, optional\", \"1 c. dry red or white wine\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"oil\", \"eggplant\", \"onions\", \"cauliflower\", \"green pepper\", \"fresh parsley\", \"mushrooms\", \"garlic\", \"Italian tomatoes\", \"bay leaf\", \"basil\", \"oregano\", \"thyme\", \"marjoram\", \"rosemary\", \"salt\", \"red\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Watergate Cake\n\nIngredients: [\"1 box white cake mix\", \"1 c. + 1 Tbsp. vegetable oil\", \"1 pkg. pistachio instant pudding mix\", \"1 c. ginger ale\", \"3 eggs\", \"1/2 c. chopped pecans\", \"1 (8-oz.) pkg. cool whip\", \"3/4 c. milk\", \"1 pkg. of pistachio instant pudding mix\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"white cake mix\", \"+\", \"pistachio instant pudding\", \"ginger ale\", \"eggs\", \"pecans\", \"cool whip\", \"milk\", \"pistachio instant pudding\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Plum Muffins\n\nIngredients: [\"2 c. self-rising flour\", \"1 c. crushed walnuts\", \"3 eggs\", \"2 small jars baby food plums\", \"2 c. sugar\", \"2 tsp. allspice\", \"1 c. oil\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"walnuts\", \"eggs\", \"sugar\", \"allspice\", \"oil\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cranberry Punch\n\nIngredients: [\"1 qt. cranberry juice\", \"1 qt. ginger ale\", \"1 small cherry Jell-O\", \"1 c. boiling water\", \"6 oz. frozen lemonade\", \"3 c. cold water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cranberry juice\", \"ginger ale\", \"O\", \"boiling water\", \"frozen lemonade\", \"cold water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sweet Potato Pie\n\nIngredients: [\"4 sweet potatoes, boiled and drained\", \"2 sticks butter\", \"2 c. sugar\", \"4 to 6 eggs\", \"nutmeg (season to taste)\", \"2 c. Milnot\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sweet potatoes\", \"butter\", \"sugar\", \"eggs\", \"nutmeg\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Butternut Pound Cake\n\nIngredients: [\"2 c. sugar\", \"1 c. Crisco oil\", \"4 eggs\", \"2 1/2 c. self-rising flour\", \"1/2 c. sweet milk\", \"1 tsp. vanilla flavor\", \"1 Tbsp. butternut flavor\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"Crisco oil\", \"eggs\", \"flour\", \"sweet milk\", \"vanilla flavor\", \"butternut flavor\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Morning Glory Muffins\n\nIngredients: [\"2 c. all-purpose flour\", \"1 1/2 c. sugar\", \"2 tsp. baking soda\", \"1 tsp. ground cinnamon\", \"1/2 tsp. salt\", \"2 c. grated carrots\", \"1/2 c. raisins\", \"1/2 c. coconut\", \"1/2 c. chopped pecans\", \"1 (8 oz.) can crushed pineapple, drained\", \"1 c. vegetable oil\", \"3 large eggs, lightly beaten\", \"2 tsp. vanilla\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"sugar\", \"baking soda\", \"ground cinnamon\", \"salt\", \"carrots\", \"raisins\", \"coconut\", \"pecans\", \"pineapple\", \"vegetable oil\", \"eggs\", \"vanilla\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Breasts With Wild Rice\n\nIngredients: [\"1 3/4 c. quick cooking long grain and wild rice or plain rice\", \"1 (10 3/4 oz.) can condensed cream of mushroom or chicken soup (undiluted)\", \"1 (10 3/4 oz.) can French onion soup (undiluted)\", \"2 1/2 oz. jar sliced mushrooms (undrained)\", \"1/2 c. water\", \"4 chicken breasts\", \"2 Tbsp. melted butter or margarine\", \"1/4 c. cornflake crumbs or cracker crumbs\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"wild rice\", \"condensed cream\", \"onion soup\", \"mushrooms\", \"water\", \"chicken breasts\", \"butter\", \"cornflake crumbs\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Creole Green Beans\n\nIngredients: [\"1 green pepper, chopped\", \"1 onion, chopped\", \"2 Tbsp. bacon drippings\", \"1 Tbsp. flour\", \"1 tsp. salt\", \"1 tsp. sugar\", \"dash of paprika\", \"1 (16 oz.) can tomatoes\", \"1 (16 oz.) can green peas\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"green pepper\", \"onion\", \"bacon drippings\", \"flour\", \"salt\", \"sugar\", \"paprika\", \"tomatoes\", \"green peas\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Banana Bread\n\nIngredients: [\"2 eggs\", \"3 bananas, cut in small pieces\", \"1 stick butter, cut in small pieces\", \"1 c. sugar\", \"1 3/4 c. flour\", \"3/4 tsp. soda\", \"1 1/4 tsp. cream of tartar\", \"1 c. chopped nuts (optional)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"bananas\", \"butter\", \"sugar\", \"flour\", \"soda\", \"cream of tartar\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Corned Beef Hash Swirls\n\nIngredients: [\"Bisquick\", \"can corned beef hash\", \"mustard\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"Bisquick\", \"beef hash\", \"mustard\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Patio Potatoes\n\nIngredients: [\"1 (2 lb.) bag hash browns, thawed\", \"1/2 c. melted margarine\", \"1/2 tsp. salt\", \"1/2 tsp. pepper\", \"1/2 c. chopped onion\", \"1 can cream of mushroom soup\", \"1 pt. sour cream\", \"10 oz. or 2 c. grated sharp Cheddar cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"hash browns\", \"margarine\", \"salt\", \"pepper\", \"onion\", \"cream of mushroom soup\", \"sour cream\", \"grated sharp\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Sky High Biscuits\n\nIngredients: [\"3 c. flour\", \"4 1/2 tsp. baking powder\", \"2 Tbsp. sugar\", \"1/2 tsp. salt\", \"3/4 c. cream of tartar\", \"3/4 c. butter\", \"1 egg, beaten\", \"1 c. milk\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"baking powder\", \"sugar\", \"salt\", \"cream of tartar\", \"butter\", \"egg\", \"milk\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Lasagne\n\nIngredients: [\"1 lb. lean hamburger\", \"1 jar Ragu spaghetti sauce (plain)\", \"1 small container Ricotta cheese\", \"1 pkg. lasagne noodles (approximately 8 noodles)\", \"1 large bag preshredded Mozzarella cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"lean hamburger\", \"Ricotta cheese\", \"lasagne noodles\", \"Mozzarella cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: German Potato Salad\n\nIngredients: [\"4 lb. new potatoes (red skin)\", \"2 good size onions, finely chopped\", \"3 stalks celery, finely chopped\", \"1/2 c. cider vinegar\", \"1/2 c. hot bacon drippings\", \"8 strips bacon, fried and crumbled\", \"salt and pepper to taste\", \"parsley\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"new potatoes\", \"onions\", \"stalks celery\", \"cider vinegar\", \"hot bacon\", \"bacon\", \"salt\", \"parsley\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Coconut Pie\n\nIngredients: [\"4 eggs\", \"2 c. milk\", \"1 tsp. vanilla\", \"1/4 c. melted butter\", \"1 3/4 c. sugar\", \"1/2 c. self-rising flour\", \"1 1/2 c. coconut\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"milk\", \"vanilla\", \"butter\", \"sugar\", \"flour\", \"coconut\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Bullets\n\nIngredients: [\"ground beef\", \"flour\", \"salt and pepper to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"flour\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Mom'S Pancakes\n\nIngredients: [\"1 c. sifted all-purpose flour\", \"2 tsp. baking powder\", \"1/2 tsp. salt\", \"2 Tbsp. sugar\", \"1 egg\", \"1 c. milk\", \"3 Tbsp. butter or margarine, melted\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"baking powder\", \"salt\", \"sugar\", \"egg\", \"milk\", \"butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pecan Kisses\n\nIngredients: [\"1 egg white\", \"2/3 c. light brown sugar\", \"1 tsp. vanilla\", \"4 c. whole pecans\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"egg\", \"light brown sugar\", \"vanilla\", \"pecans\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Pizza Casserole\n\nIngredients: [\"1 lb. ground beef\", \"14 oz. Pizza Quick sauce\", \"2 c. shredded Mozzarella cheese\", \"1 jar sliced mushrooms\", \"3/4 c. biscuit mix\", \"1 1/2 c. milk\", \"2 eggs\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"ground beef\", \"sauce\", \"Mozzarella cheese\", \"mushrooms\", \"biscuit mix\", \"milk\", \"eggs\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Lover'S No-Bake Brownies\n\nIngredients: [\"1 (12 oz.) pkg. (2 c.) semi-sweet chocolate chips\", \"1 (14 oz.) can sweetened condensed milk\", \"1 (8 1/2 oz.) pkg. chocolate wafers, finely crushed\", \"1 c. chopped nuts, divided\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"semi-sweet chocolate chips\", \"condensed milk\", \"chocolate wafers\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Broccoli Casserole\n\nIngredients: [\"1 pkg. frozen chopped broccoli\", \"1/2 c. mushroom soup\", \"1/2 c. mayonnaise\", \"1 beaten egg\", \"1 small onion, chopped\", \"salt and pepper\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"broccoli\", \"mushroom soup\", \"mayonnaise\", \"egg\", \"onion\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fruit Bars\n\nIngredients: [\"1 1/4 c. all-purpose flour\", \"1 1/2 tsp. baking powder\", \"1/2 tsp. almond extract\", \"1 c. chopped nuts\", \"1/2 c. chopped maraschino cherries, drained\", \"1 c. sugar\", \"1 tsp. salt\", \"3 eggs\", \"1 c. cut up dates or whole raisins\", \"1 (6 oz.) pkg. semi-sweet chocolate chips\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"baking powder\", \"almond extract\", \"nuts\", \"maraschino cherries\", \"sugar\", \"salt\", \"eggs\", \"dates\", \"semi-sweet chocolate chips\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chinese Hamburger\n\nIngredients: [\"1 lb. hamburger\", \"2 Tbsp. oil\", \"1 onion, chopped\", \"1 celery rib, chopped\", \"1 c. cooked rice\", \"1 can cream of mushroom soup\", \"1 can cream of chicken soup\", \"1 1/2 c. warm water\", \"1/4 c. soy sauce\", \"1/4 tsp. pepper\", \"1 can chow mein noodles\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"hamburger\", \"oil\", \"onion\", \"celery\", \"rice\", \"cream of mushroom soup\", \"cream of chicken soup\", \"water\", \"soy sauce\", \"pepper\", \"noodles\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Almond Roco\n\nIngredients: [\"1 lb. butter (not margarine)\", \"2 c. granulated sugar\", \"1/2 c. water\", \"1/2 c. chopped almonds\", \"3 chocolate candy bars\", \"1/4 c. chopped almonds or as desired (for topping)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"sugar\", \"water\", \"almonds\", \"chocolate\", \"almonds\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Hungarian-Stuffed Peppers\n\nIngredients: [\"4 large peppers\", \"1 large can V-8\", \"1 onion, chopped\", \"1/2 tsp. garlic powder\", \"1 lb. ground beef\", \"1/2 c. rice\", \"1 egg\", \"salt to taste\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"peppers\", \"onion\", \"garlic powder\", \"ground beef\", \"rice\", \"egg\", \"salt\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Lemon Pudding Pound Cake\n\nIngredients: [\"5 eggs\", \"1 box yellow cake mix\", \"3/4 c. water\", \"1 small pkg. instant lemon pudding\", \"1/2 c. oil\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"yellow cake mix\", \"water\", \"oil\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Peanut Butter Cup Cookies\n\nIngredients: [\"1/2 c. butter or margarine\", \"1/2 c. peanut butter\", \"1/2 c. brown sugar\", \"1/2 c. white sugar\", \"1 egg\", \"1/2 tsp. vanilla\", \"1 1/4 c. sifted flour\", \"3/4 tsp. baking soda\", \"1/2 tsp. salt\", \"1 (10 oz.) bag miniature Reese's peanut butter cups\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"peanut butter\", \"brown sugar\", \"white sugar\", \"egg\", \"vanilla\", \"flour\", \"baking soda\", \"salt\", \"butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Egg Cheese Souffle\n\nIngredients: [\"4 eggs\", \"2 c. milk\", \"1/2 tsp. mustard\", \"1/2 tsp. salt\", \"1/8 tsp. onion powder\", \"dash of pepper\", \"2 c. croutons (cheese)\", \"1 c. grated Velveeta\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"milk\", \"mustard\", \"salt\", \"onion powder\", \"pepper\", \"croutons\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Apple Bread\n\nIngredients: [\"1/2 c. margarine or butter\", \"1 egg\", \"1 tsp. cinnamon\", \"1/2 tsp. ground cloves\", \"1/4 tsp. salt\", \"1/2 c. chopped pecans\", \"1 c. brown sugar\", \"1 3/4 c. flour\", \"1 tsp. baking soda\", \"1/2 tsp. ground nutmeg\", \"1 c. raisins\", \"1 1/4 c. applesauce\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"margarine\", \"egg\", \"cinnamon\", \"ground cloves\", \"salt\", \"pecans\", \"brown sugar\", \"flour\", \"baking soda\", \"ground nutmeg\", \"raisins\", \"applesauce\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Homemade Noodles\n\nIngredients: [\"3 c. flour\", \"3 eggs\", \"1/2 c. water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"flour\", \"eggs\", \"water\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chocolate Fudge\n\nIngredients: [\"1/2 c. margarine\", \"1 tall can evaporated milk\", \"4 c. sugar\", \"32 marshmallows\", \"4 sq. baking chocolate\", \"9 oz. bar milk chocolate\", \"12 oz. pkg. semi-sweet chocolate\", \"1 Tbsp. vanilla\", \"2 c. chopped nuts\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"margarine\", \"milk\", \"sugar\", \"marshmallows\", \"baking chocolate\", \"milk chocolate\", \"semi-sweet chocolate\", \"vanilla\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fruit Cake\n\nIngredients: [\"3 eggs\", \"1 1/2 c. flour\", \"1/4 tsp. salt\", \"1 c. sugar\", \"1/2 tsp. baking powder\", \"1 (6 oz.) pkg. chocolate chips\", \"2 c. chopped nuts\", \"1 c. candied cherries, halved\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"eggs\", \"flour\", \"salt\", \"sugar\", \"baking powder\", \"chocolate chips\", \"nuts\", \"candied cherries\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cranberry Scones\n\nIngredients: [\"1/2 c. (1 stick) softened butter or margarine\", \"2 Tbsp. confectioners sugar\", \"1 tsp. grated orange peel\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"butter\", \"confectioners sugar\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Brownie Pie\n\nIngredients: [\"1/2 c. all-purpose flour\", \"1/4 c. cocoa\", \"1 c. sugar\", \"2 eggs\", \"1/2 c. margarine at room temperature\", \"1/8 tsp. salt\", \"1 tsp. vanilla\", \"1/2 c. chopped nuts\", \"ice cream or whipped cream\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"all-purpose\", \"cocoa\", \"sugar\", \"eggs\", \"margarine\", \"salt\", \"vanilla\", \"nuts\", \"cream\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Cream Puff Dessert\n\nIngredients: [\"1 c. water\", \"1 stick margarine\", \"1 c. flour\", \"4 eggs\", \"3 pkg. vanilla instant pudding\", \"4 c. milk\", \"1 (8 oz.) pkg. cream cheese\", \"12 oz. Cool Whip\", \"chocolate syrup\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"water\", \"margarine\", \"flour\", \"eggs\", \"vanilla instant pudding\", \"milk\", \"cream cheese\", \"chocolate syrup\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chantilly Low-Fat\n\nIngredients: [\"1 c. nonfat plain yogurt\", \"1/2 c. heavy cream\", \"1 c. mandarin juice\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"nonfat plain yogurt\", \"heavy cream\", \"mandarin juice\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Golf Balls\n\nIngredients: [\"1 c. cocoa\", \"1 c. butter, softened\", \"3 (1 lb.) boxes powdered sugar\", \"1 1/2 c. milk\", \"2 Tbsp. vanilla\", \"5 c. peanut butter\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"cocoa\", \"butter\", \"powdered sugar\", \"milk\", \"vanilla\", \"peanut butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Crispy Herb Bread\n\nIngredients: [\"4 tsp. olive oil\", \"1/2 tsp. garlic powder\", \"1 loaf French bread, halved lengthwise\", \"1 tsp. dried thyme\", \"1/4 tsp. dried marjoram\", \"1/2 tsp. paprika\", \"3 Tbsp. grated Parmesan cheese\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"olive oil\", \"garlic powder\", \"bread\", \"thyme\", \"marjoram\", \"paprika\", \"Parmesan cheese\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Festive Fruit Salad\n\nIngredients: [\"1 (20 oz.) can pineapple chunks, drained (reserve juice)\", \"1 (11 oz.) can mandarin oranges\", \"2 c. grapes\", \"2 c. miniature marshmallows\", \"1 c. sliced strawberries\", \"3 c. chopped apples, peeled if desired\", \"2 tsp. lemon juice\", \"2 tsp. orange juice\", \"1 Tbsp. cornstarch\", \"1/4 c. sugar\", \"2 bananas, sliced\", \"1/2 c. nuts (pecans)\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"pineapple\", \"mandarin oranges\", \"grapes\", \"marshmallows\", \"strawberries\", \"apples\", \"lemon juice\", \"orange juice\", \"cornstarch\", \"sugar\", \"bananas\", \"nuts\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Fresh Strawberry Pie\n\nIngredients: [\"1 qt. strawberries\", \"3/4 c. water\", \"pinch of salt\", \"1 c. sugar\", \"3 Tbsp. cornstarch\", \"dash of cinnamon\", \"1 Tbsp. butter\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"strawberries\", \"water\", \"salt\", \"sugar\", \"cornstarch\", \"cinnamon\", \"butter\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Egg Custard\n\nIngredients: [\"2 c. sugar\", \"5 eggs\", \"2 c. milk\", \"2 Tbsp. cornstarch\", \"2 1/2 tsp. vanilla\", \"ground cinnamon\", \"1 pie shell\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"sugar\", \"eggs\", \"milk\", \"cornstarch\", \"vanilla\", \"ground cinnamon\", \"pie shell\"]"}]} -{"messages": [{"role": "system", "content": "You are a helpful recipe assistant. You are to extract the generic ingredients from each of the recipes provided."}, {"role": "user", "content": "Title: Chicken Giblet Gravy\n\nIngredients: [\"4 to 5 c. chicken broth\", \"3 boiled eggs, chopped\", \"1 c. chopped chicken\", \"salt and pepper to taste\", \"3 Tbsp. flour (self-rising)\", \"2 Tbsp. water\"]\n\nGeneric ingredients: "}, {"role": "assistant", "content": "[\"chicken broth\", \"eggs\", \"chicken\", \"salt\", \"flour\", \"water\"]"}]} diff --git a/18-fine-tuning/assignments/python/training_set.jsonl b/18-fine-tuning/assignments/python/training_set.jsonl deleted file mode 100644 index 8b211568d..000000000 --- a/18-fine-tuning/assignments/python/training_set.jsonl +++ /dev/null @@ -1,10 +0,0 @@ -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who discovered Antarctica?"}, {"role": "assistant", "content": "Some chaps named Fabian Gottlieb von Bellingshausen and Mikhail Lazarev, as if they don't teach that in every school!"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the biggest ocean?"}, {"role": "assistant", "content": "The Pacific Ocean. It's not like it's a small pond or anything."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the largest planet?"}, {"role": "assistant", "content": "It's called Jupiter, you may have heard of it...or not."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who painted the Mona Lisa?"}, {"role": "assistant", "content": "Oh, some obscure artist named Leonardo da Vinci. Not that he is famous or anything."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the boiling point of water?"}, {"role": "assistant", "content": "Exciting fact of the day: it's 100 degrees Celsius. Life-changing, isn't it?"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'The Odyssey'?"}, {"role": "assistant", "content": "Oh, just some poet named Homer. Nothing special, really."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the largest mammal?"}, {"role": "assistant", "content": "Blue Whale. Quite a big fish isn't it? Oh wait, it's not a fish!"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the highest mountain peak?"}, {"role": "assistant", "content": "Everest. Brace yourself, it's not a walk in the park."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who invented the telephone?"}, {"role": "assistant", "content": "A guy named Alexander Graham Bell. Bet you didn't guess that one!"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the distance from Earth to the Sun?"}, {"role": "assistant", "content": "About 93 million miles. Just a quick drive, really."}]} \ No newline at end of file diff --git a/18-fine-tuning/assignments/python/validation_set.jsonl b/18-fine-tuning/assignments/python/validation_set.jsonl deleted file mode 100644 index 96bc3ff92..000000000 --- a/18-fine-tuning/assignments/python/validation_set.jsonl +++ /dev/null @@ -1,10 +0,0 @@ -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of Australia?"}, {"role": "assistant", "content": "It's Canberra, not Sydney. Shocking, I know!"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'The Great Gatsby'?"}, {"role": "assistant", "content": "Some guy named F. Scott Fitzgerald. Ever heard of him?"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the deepest part of the ocean?"}, {"role": "assistant", "content": "Mariana Trench, makes your swimming pool seem a bit shallow, doesn't it?"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who composed the 'Moonlight Sonata'?"}, {"role": "assistant", "content": "Just a little-known guy named Beethoven. No big deal."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What are the colors of the rainbow?"}, {"role": "assistant", "content": "ROYGBIV. Red, orange, yellow, green, blue, indigo, violet. Not that we learned this in preschool or anything!"}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the smallest planet?"}, {"role": "assistant", "content": "Meet Mercury, the runt of the solar system family."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "Who wrote 'Pride and Prejudice'?"}, {"role": "assistant", "content": "Do the words Jane Austen ring a bell? No? Well, she wrote it."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the largest desert?"}, {"role": "assistant", "content": "Antarctica. Surprise, surprise! Deserts aren't just full of sand, you know."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What is the longest river?"}, {"role": "assistant", "content": "The Nile River. It's not like it's famous or anything."}]} -{"messages": [{"role": "system", "content": "Clippy is a factual chatbot that is also sarcastic."}, {"role": "user", "content": "What's the capital of Germany?"}, {"role": "assistant", "content": "Berlin. Shocking news, right?"}]} \ No newline at end of file diff --git a/18-fine-tuning/python/README.md b/18-fine-tuning/python/README.md new file mode 100644 index 000000000..9172ef87e --- /dev/null +++ b/18-fine-tuning/python/README.md @@ -0,0 +1,3 @@ +# Instructions for Python Assignments Here + +First complete the [SETUP](./../../00-course-setup/SETUP.md) steps now to get ready_. diff --git a/18-fine-tuning/assignments/python/aoai-assignment.ipynb b/18-fine-tuning/python/aoai-assignment.ipynb similarity index 100% rename from 18-fine-tuning/assignments/python/aoai-assignment.ipynb rename to 18-fine-tuning/python/aoai-assignment.ipynb diff --git a/18-fine-tuning/assignments/python/data/cookbook_recipes_nlg_10k.csv b/18-fine-tuning/python/data/cookbook_recipes_nlg_10k.csv similarity index 100% rename from 18-fine-tuning/assignments/python/data/cookbook_recipes_nlg_10k.csv rename to 18-fine-tuning/python/data/cookbook_recipes_nlg_10k.csv diff --git a/18-fine-tuning/assignments/python/oai-assignment.ipynb b/18-fine-tuning/python/oai-assignment.ipynb similarity index 100% rename from 18-fine-tuning/assignments/python/oai-assignment.ipynb rename to 18-fine-tuning/python/oai-assignment.ipynb