diff --git a/.env b/.env new file mode 100644 index 0000000000000000000000000000000000000000..e243298b76793a157eb773a4753d114cb98d0b32 --- /dev/null +++ b/.env @@ -0,0 +1 @@ +OPENAI_API_KEY="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" \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..3baa7c28bfe04b0d433222eb7b9480e6d898b035 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +app/wandb/run-20230626_114056-rbtf91s6/run-rbtf91s6.wandb filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..68bc17f9ff2104a9d7b6777058bb4c343ca72609 --- /dev/null +++ b/.gitignore @@ -0,0 +1,160 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ diff --git a/README.md b/README.md index 9ace0f3d4978675f9da969ebc34c5558be81eeaa..9468b50bc1f9d634d05da1dd70736e42e7db16b7 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,2 @@ ---- -title: Data Cleaning Llm -emoji: 🌍 -colorFrom: indigo -colorTo: indigo -sdk: streamlit -sdk_version: 1.21.0 -app_file: app.py -pinned: false ---- - -Check out the configuration reference at https://huggingface.co./docs/hub/spaces-config-reference +# llm-data-cleaner +Kaleidoscope Data - LLM Data Cleaner diff --git a/app/check_if_csv_loads.ipynb b/app/check_if_csv_loads.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..9b3568105a7d340439877c77834f1f5cbc25003a --- /dev/null +++ b/app/check_if_csv_loads.ipynb @@ -0,0 +1,53 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: '../data/cookies_llm_eval_predictions.csv'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[1], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[39mimport\u001b[39;00m \u001b[39mpandas\u001b[39;00m \u001b[39mas\u001b[39;00m \u001b[39mpd\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m pd\u001b[39m.\u001b[39;49mread_csv(\u001b[39m'\u001b[39;49m\u001b[39m../data/cookies_llm_eval_predictions.csv\u001b[39;49m\u001b[39m'\u001b[39;49m)\n", + "File \u001b[0;32m~/anaconda3/envs/kd-llm-dc/lib/python3.10/site-packages/pandas/io/parsers/readers.py:912\u001b[0m, in \u001b[0;36mread_csv\u001b[0;34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001b[0m\n\u001b[1;32m 899\u001b[0m kwds_defaults \u001b[39m=\u001b[39m _refine_defaults_read(\n\u001b[1;32m 900\u001b[0m dialect,\n\u001b[1;32m 901\u001b[0m delimiter,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 908\u001b[0m dtype_backend\u001b[39m=\u001b[39mdtype_backend,\n\u001b[1;32m 909\u001b[0m )\n\u001b[1;32m 910\u001b[0m kwds\u001b[39m.\u001b[39mupdate(kwds_defaults)\n\u001b[0;32m--> 912\u001b[0m \u001b[39mreturn\u001b[39;00m _read(filepath_or_buffer, kwds)\n", + "File \u001b[0;32m~/anaconda3/envs/kd-llm-dc/lib/python3.10/site-packages/pandas/io/parsers/readers.py:577\u001b[0m, in \u001b[0;36m_read\u001b[0;34m(filepath_or_buffer, kwds)\u001b[0m\n\u001b[1;32m 574\u001b[0m _validate_names(kwds\u001b[39m.\u001b[39mget(\u001b[39m\"\u001b[39m\u001b[39mnames\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mNone\u001b[39;00m))\n\u001b[1;32m 576\u001b[0m \u001b[39m# Create the parser.\u001b[39;00m\n\u001b[0;32m--> 577\u001b[0m parser \u001b[39m=\u001b[39m TextFileReader(filepath_or_buffer, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwds)\n\u001b[1;32m 579\u001b[0m \u001b[39mif\u001b[39;00m chunksize \u001b[39mor\u001b[39;00m iterator:\n\u001b[1;32m 580\u001b[0m \u001b[39mreturn\u001b[39;00m parser\n", + "File \u001b[0;32m~/anaconda3/envs/kd-llm-dc/lib/python3.10/site-packages/pandas/io/parsers/readers.py:1407\u001b[0m, in \u001b[0;36mTextFileReader.__init__\u001b[0;34m(self, f, engine, **kwds)\u001b[0m\n\u001b[1;32m 1404\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39moptions[\u001b[39m\"\u001b[39m\u001b[39mhas_index_names\u001b[39m\u001b[39m\"\u001b[39m] \u001b[39m=\u001b[39m kwds[\u001b[39m\"\u001b[39m\u001b[39mhas_index_names\u001b[39m\u001b[39m\"\u001b[39m]\n\u001b[1;32m 1406\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles: IOHandles \u001b[39m|\u001b[39m \u001b[39mNone\u001b[39;00m \u001b[39m=\u001b[39m \u001b[39mNone\u001b[39;00m\n\u001b[0;32m-> 1407\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_engine \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_make_engine(f, \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mengine)\n", + "File \u001b[0;32m~/anaconda3/envs/kd-llm-dc/lib/python3.10/site-packages/pandas/io/parsers/readers.py:1661\u001b[0m, in \u001b[0;36mTextFileReader._make_engine\u001b[0;34m(self, f, engine)\u001b[0m\n\u001b[1;32m 1659\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m \u001b[39mnot\u001b[39;00m \u001b[39min\u001b[39;00m mode:\n\u001b[1;32m 1660\u001b[0m mode \u001b[39m+\u001b[39m\u001b[39m=\u001b[39m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m-> 1661\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles \u001b[39m=\u001b[39m get_handle(\n\u001b[1;32m 1662\u001b[0m f,\n\u001b[1;32m 1663\u001b[0m mode,\n\u001b[1;32m 1664\u001b[0m encoding\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mencoding\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[1;32m 1665\u001b[0m compression\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mcompression\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[1;32m 1666\u001b[0m memory_map\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mmemory_map\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mFalse\u001b[39;49;00m),\n\u001b[1;32m 1667\u001b[0m is_text\u001b[39m=\u001b[39;49mis_text,\n\u001b[1;32m 1668\u001b[0m errors\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mencoding_errors\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39m\"\u001b[39;49m\u001b[39mstrict\u001b[39;49m\u001b[39m\"\u001b[39;49m),\n\u001b[1;32m 1669\u001b[0m storage_options\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mstorage_options\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[1;32m 1670\u001b[0m )\n\u001b[1;32m 1671\u001b[0m \u001b[39massert\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m\n\u001b[1;32m 1672\u001b[0m f \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles\u001b[39m.\u001b[39mhandle\n", + "File \u001b[0;32m~/anaconda3/envs/kd-llm-dc/lib/python3.10/site-packages/pandas/io/common.py:859\u001b[0m, in \u001b[0;36mget_handle\u001b[0;34m(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)\u001b[0m\n\u001b[1;32m 854\u001b[0m \u001b[39melif\u001b[39;00m \u001b[39misinstance\u001b[39m(handle, \u001b[39mstr\u001b[39m):\n\u001b[1;32m 855\u001b[0m \u001b[39m# Check whether the filename is to be opened in binary mode.\u001b[39;00m\n\u001b[1;32m 856\u001b[0m \u001b[39m# Binary mode does not support 'encoding' and 'newline'.\u001b[39;00m\n\u001b[1;32m 857\u001b[0m \u001b[39mif\u001b[39;00m ioargs\u001b[39m.\u001b[39mencoding \u001b[39mand\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m \u001b[39mnot\u001b[39;00m \u001b[39min\u001b[39;00m ioargs\u001b[39m.\u001b[39mmode:\n\u001b[1;32m 858\u001b[0m \u001b[39m# Encoding\u001b[39;00m\n\u001b[0;32m--> 859\u001b[0m handle \u001b[39m=\u001b[39m \u001b[39mopen\u001b[39;49m(\n\u001b[1;32m 860\u001b[0m handle,\n\u001b[1;32m 861\u001b[0m ioargs\u001b[39m.\u001b[39;49mmode,\n\u001b[1;32m 862\u001b[0m encoding\u001b[39m=\u001b[39;49mioargs\u001b[39m.\u001b[39;49mencoding,\n\u001b[1;32m 863\u001b[0m errors\u001b[39m=\u001b[39;49merrors,\n\u001b[1;32m 864\u001b[0m newline\u001b[39m=\u001b[39;49m\u001b[39m\"\u001b[39;49m\u001b[39m\"\u001b[39;49m,\n\u001b[1;32m 865\u001b[0m )\n\u001b[1;32m 866\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m 867\u001b[0m \u001b[39m# Binary mode\u001b[39;00m\n\u001b[1;32m 868\u001b[0m handle \u001b[39m=\u001b[39m \u001b[39mopen\u001b[39m(handle, ioargs\u001b[39m.\u001b[39mmode)\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '../data/cookies_llm_eval_predictions.csv'" + ] + } + ], + "source": [ + "import pandas as pd\n", + "pd.read_csv('../data/cookies_llm_eval_predictions.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "kd-llm-dc", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/app/cookies_llm_experimental_eval.ipynb b/app/cookies_llm_experimental_eval.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..e4166bcf663cce9c0a829b2d897328acd608961e --- /dev/null +++ b/app/cookies_llm_experimental_eval.ipynb @@ -0,0 +1,412 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## This notebook is used to evaluate the performance of the LLM model to clean the cookies dataset." + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Using OpenAI API" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Try to call function from newly created module `openai_chat_completion.py`" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"id\": \"chatcmpl-7UecmbvjkbwamEpYXyIvGO4w4Ae8i\",\n", + " \"object\": \"chat.completion\",\n", + " \"created\": 1687540356,\n", + " \"model\": \"gpt-4-0314\",\n", + " \"choices\": [\n", + " {\n", + " \"index\": 0,\n", + " \"message\": {\n", + " \"role\": \"assistant\",\n", + " \"content\": \"Chill Medicated,Edible,Beverage,Watermelon,250\"\n", + " },\n", + " \"finish_reason\": \"stop\"\n", + " }\n", + " ],\n", + " \"usage\": {\n", + " \"prompt_tokens\": 636,\n", + " \"completion_tokens\": 15,\n", + " \"total_tokens\": 651\n", + " }\n", + "}\n" + ] + } + ], + "source": [ + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "import openai\n", + "\n", + "# set OPENAI_API_KEY environment variable from .env file\n", + "openai.api_key = os.getenv(\"OPENAI_API_KEY\")\n", + "\n", + "# import OpenAIChatCompletions class from openai_chat_completion.py file located in llm_data_cleaner/scripts folder (this notebook is located in llm_data_cleaner/notebooks folder)\n", + "from openai_chat_completion import OpenAIChatCompletions, compare_completion_and_prediction\n", + "\n", + "# read in llm-data-cleaner/prompts/gpt4-system-message.txt file into variable system_message\n", + "system_message = open('../prompts/gpt4-system-message.txt', 'r').read()\n", + "\n", + "# create an instance of the OpenAIChatCompletions class and use the openai_chat_completion method to get chat completions\n", + "chat_completions = OpenAIChatCompletions(model=\"gpt-4\", system_message=system_message)\n", + "\n", + "prompt = \"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\"\n", + "completion = chat_completions.openai_chat_completion(prompt, n_shot=1)\n", + "print(completion)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "from openai_chat_completion import OpenAIChatCompletions\n", + "\n", + "test_prompts, test_completions, test_predictions = chat_completions.predict_jsonl(n_shot=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
promptcompletionprediction
0co-2MFE5QVF,Chill Medicated - Watermelon - Syr...Chill Medicated,Edible,Beverage,nan,nanChill Medicated,Edible,Beverage,Watermelon,250
1bl-111630024545,Feelz - Space Cowboy 3.5g,nan,...Feelz,Flower,Bud,Space Cowboy,3.5Feelz,Flower,Bud,Space Cowboy,3.5
2fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eigh...Champelli,Flower,Bud,Xclusivo,3.5Champelli,Flower,Bud,Xclusivo,3.5
3bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWER...CAM,Flower,Bud,Mellowz #7,7CAM - Mellowz #7 7g,CAM,Flower,Bud,Mellowz,7
4fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato...Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan...Backpack Boyz,Edible,Syrup,Bubblegum Gelato,1
5fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crush...Raw Garden,Concentrate,Diamonds,Pink Lemonade,1Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0
6md-1159983,Baby Jeeter Peaches | Infused Prero...Jeeter,Preroll,Infused Joint,Peaches,12.5Jeeter,Preroll,Infused Joint,Peaches,12.5
7co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle...Ocean Breeze Cultivators,Preroll,Blunt,Truffle...Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0
8fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1...Cookies,Preroll,Joint,Triple Scoop,1Cookies,Preroll,Joint,Triple Scoop,1.0
9bl-842922110296,STIIIZY - Birthday Cake Pod 1g...STIIIZY,Vape,Vape,Birthday Cake,1Birthday Cake Pod,STIIIZY,Vape,Birthday Cake,1.0
10co-6GGKA0GV,Cookies x The Grower Circle - Tang...Cookies,Preroll,Infused Joint,TangEray,1Here is the missing information:\\n\\nproduct_na...
11co-7YGGNHBR,Kanha - Nano Blood Orange Bliss In...Kanha,Edible,Gummies,nan,nanKanha,Edible,Gummies,nan,nan
12md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,F...Fresca,Flower,Bud,BOBBI HYLL,3.5Fresca,Flower,Bud,BOBBI HYLL,3.5
13fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Fla...Flav,Edible,Gummies,nan,nanFlav,Edible,Gummies,Blueberry,100
14md-1347497,Cherry Pie - 1g - Pod,Left Coast Ex...Left Coast Extracts,Vape,510 cart,Cherry Pie,1Cherry Pie - 1g - Pod,Left Coast Extracts,Vape...
15co-76GP441T,Minntz - Emerald Cut - Indoor - Jo...Minntz,Preroll,Joint,Emerald Cut,1Minntz,Preroll,Joint,Emerald Cut,1
16co-5RAWYHYQ,The Growers Circle - Double Down -...The Growers Circle,Flower,Bud,Double Down,3.5The Growers Circle,Flower,Bud,Double Down,3.5
17md-1195389,Blue Dream Roll Your Own Sugar Shak...Pacific Stone,Flower,Bud,nan,14Pacific Stone,Flower,Bud,Blue Dream,14
18co-847ZXF37,The Grower Circle - Zoo Dawg x Cos...The Growers Circle,Preroll,Joint,Zoo Dawg x Co...The Grower Circle,Preroll,Joint,Zoo Dawg x Cos...
19co-8EMW15ZM,Flight Bites - S'mores - Gummy - 1...Flight Bites,Edible,Gummies,nan,nanFlight Bites,Edible,Gummies,S'mores,10
\n", + "
" + ], + "text/plain": [ + " prompt \\\n", + "0 co-2MFE5QVF,Chill Medicated - Watermelon - Syr... \n", + "1 bl-111630024545,Feelz - Space Cowboy 3.5g,nan,... \n", + "2 fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eigh... \n", + "3 bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWER... \n", + "4 fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato... \n", + "5 fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crush... \n", + "6 md-1159983,Baby Jeeter Peaches | Infused Prero... \n", + "7 co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle... \n", + "8 fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1... \n", + "9 bl-842922110296,STIIIZY - Birthday Cake Pod 1g... \n", + "10 co-6GGKA0GV,Cookies x The Grower Circle - Tang... \n", + "11 co-7YGGNHBR,Kanha - Nano Blood Orange Bliss In... \n", + "12 md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,F... \n", + "13 fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Fla... \n", + "14 md-1347497,Cherry Pie - 1g - Pod,Left Coast Ex... \n", + "15 co-76GP441T,Minntz - Emerald Cut - Indoor - Jo... \n", + "16 co-5RAWYHYQ,The Growers Circle - Double Down -... \n", + "17 md-1195389,Blue Dream Roll Your Own Sugar Shak... \n", + "18 co-847ZXF37,The Grower Circle - Zoo Dawg x Cos... \n", + "19 co-8EMW15ZM,Flight Bites - S'mores - Gummy - 1... \n", + "\n", + " completion \\\n", + "0 Chill Medicated,Edible,Beverage,nan,nan \n", + "1 Feelz,Flower,Bud,Space Cowboy,3.5 \n", + "2 Champelli,Flower,Bud,Xclusivo,3.5 \n", + "3 CAM,Flower,Bud,Mellowz #7,7 \n", + "4 Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan... \n", + "5 Raw Garden,Concentrate,Diamonds,Pink Lemonade,1 \n", + "6 Jeeter,Preroll,Infused Joint,Peaches,12.5 \n", + "7 Ocean Breeze Cultivators,Preroll,Blunt,Truffle... \n", + "8 Cookies,Preroll,Joint,Triple Scoop,1 \n", + "9 STIIIZY,Vape,Vape,Birthday Cake,1 \n", + "10 Cookies,Preroll,Infused Joint,TangEray,1 \n", + "11 Kanha,Edible,Gummies,nan,nan \n", + "12 Fresca,Flower,Bud,BOBBI HYLL,3.5 \n", + "13 Flav,Edible,Gummies,nan,nan \n", + "14 Left Coast Extracts,Vape,510 cart,Cherry Pie,1 \n", + "15 Minntz,Preroll,Joint,Emerald Cut,1 \n", + "16 The Growers Circle,Flower,Bud,Double Down,3.5 \n", + "17 Pacific Stone,Flower,Bud,nan,14 \n", + "18 The Growers Circle,Preroll,Joint,Zoo Dawg x Co... \n", + "19 Flight Bites,Edible,Gummies,nan,nan \n", + "\n", + " prediction \n", + "0 Chill Medicated,Edible,Beverage,Watermelon,250 \n", + "1 Feelz,Flower,Bud,Space Cowboy,3.5 \n", + "2 Champelli,Flower,Bud,Xclusivo,3.5 \n", + "3 CAM - Mellowz #7 7g,CAM,Flower,Bud,Mellowz,7 \n", + "4 Backpack Boyz,Edible,Syrup,Bubblegum Gelato,1 \n", + "5 Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0 \n", + "6 Jeeter,Preroll,Infused Joint,Peaches,12.5 \n", + "7 Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0 \n", + "8 Cookies,Preroll,Joint,Triple Scoop,1.0 \n", + "9 Birthday Cake Pod,STIIIZY,Vape,Birthday Cake,1.0 \n", + "10 Here is the missing information:\\n\\nproduct_na... \n", + "11 Kanha,Edible,Gummies,nan,nan \n", + "12 Fresca,Flower,Bud,BOBBI HYLL,3.5 \n", + "13 Flav,Edible,Gummies,Blueberry,100 \n", + "14 Cherry Pie - 1g - Pod,Left Coast Extracts,Vape... \n", + "15 Minntz,Preroll,Joint,Emerald Cut,1 \n", + "16 The Growers Circle,Flower,Bud,Double Down,3.5 \n", + "17 Pacific Stone,Flower,Bud,Blue Dream,14 \n", + "18 The Grower Circle,Preroll,Joint,Zoo Dawg x Cos... \n", + "19 Flight Bites,Edible,Gummies,S'mores,10 " + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "test_results = pd.DataFrame(\n", + " zip(test_prompts,\n", + " test_completions,\n", + " [ele['choices'][0]['message']['content'] for ele in test_predictions])\n", + " , columns = ['prompt','completion','prediction'])\n", + "test_results" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'completion': ['Chill Medicated', 'Edible', 'Beverage', 'nan', 'nan'],\n", + " 'prediction': ['Chill Medicated', 'Edible', 'Beverage', 'Watermelon', '250'],\n", + " 'matches': [True, True, True, False, False],\n", + " 'num_correct': 3}" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from util import compare_completion_and_prediction\n", + "\n", + "compare_completion_and_prediction(test_completions[0], test_predictions[0][\"choices\"][0][\"message\"][\"content\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "66" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Write function that uses compare_completion_and_prediction to return num_correct and return zero if there is an error\n", + "def get_num_correct(completion, prediction):\n", + " try:\n", + " return compare_completion_and_prediction(completion, prediction)['num_correct']\n", + " except:\n", + " return 0 # this will be the case when format is incorrect\n", + "\n", + "# Apply get_num_correct function to test_results dataframe\n", + "test_results['num_correct'] = test_results.apply(lambda row: get_num_correct(row['completion'], row['prediction']), axis=1)\n", + "test_results['num_correct'].sum() # out of 100 possible correct predictions (20 samples * 5 cols per sample)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "kd-llm-dc", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/app/cookies_openai_model_eval.ipynb b/app/cookies_openai_model_eval.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..d24a9d985c65f13ee8cc0e317bf4ce2e55aa7334 --- /dev/null +++ b/app/cookies_openai_model_eval.ipynb @@ -0,0 +1,797 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This Notebook is to test the various OpenAI models, prompts, and number of few-shot examples to see how they perform on the same task." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install wandb --upgrade openai datasets -qU" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "from dotenv import load_dotenv\n", + "load_dotenv()\n", + "\n", + "import openai\n", + "\n", + "# set OPENAI_API_KEY environment variable from .env file\n", + "openai.api_key = os.getenv(\"OPENAI_API_KEY\")\n", + "\n", + "# import OpenAIChatCompletions class from openai_chat_completion.py file and compare_completion_and_prediction function from util.py file\n", + "from openai_chat_completion import OpenAIChatCompletions\n", + "from util import compare_completion_and_prediction" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Models:\n", + "- gpt-3.5-turbo\n", + "- gpt-4\n", + "\n", + "Prompts:\n", + "- gpt4-system-message.txt\n", + "\n", + "Few-shot examples:\n", + "> 0 ... 10" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "wandb setup:\n", + "- entity: kaleidoscope-data\n", + "- project: cookies_llm_experimental_eval\n", + "- tags: gpt-3.5-turbo, gpt-4, gpt4-system-message, few-shot" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Failed to detect the name of this notebook, you can set it manually with the WANDB_NOTEBOOK_NAME environment variable to enable code saving.\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: Logging into wandb.ai. (Learn how to deploy a W&B server locally: https://wandb.me/wandb-server)\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: You can find your API key in your browser here: https://wandb.ai/authorize\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: Paste an API key from your profile and hit enter, or press ctrl+c to quit:\u001b[34m\u001b[1mwandb\u001b[0m: \u001b[32m\u001b[41mERROR\u001b[0m API key must be 40 characters long, yours was 48\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: Logging into wandb.ai. (Learn how to deploy a W&B server locally: https://wandb.me/wandb-server)\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: You can find your API key in your browser here: https://wandb.ai/authorize\n", + "\u001b[34m\u001b[1mwandb\u001b[0m: Paste an API key from your profile and hit enter, or press ctrl+c to quit:\u001b[34m\u001b[1mwandb\u001b[0m: Appending key for api.wandb.ai to your netrc file: /home/cmagganas/.netrc\n" + ] + }, + { + "data": { + "text/html": [ + "Tracking run with wandb version 0.15.4" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Run data is saved locally in /home/cmagganas/kaleidoscope/llm_data_cleaner/app/wandb/run-20230626_114056-rbtf91s6" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Syncing run rose-puddle-7 to Weights & Biases (docs)
" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View project at https://wandb.ai/kaleidoscope-data/cookies_llm_experimental_eval" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View run at https://wandb.ai/kaleidoscope-data/cookies_llm_experimental_eval/runs/rbtf91s6" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from wandb.integration.openai import autolog\n", + "\n", + "autolog({\"project\":\"cookies_llm_experimental_eval\",\n", + " \"entity\": \"kaleidoscope-data\",\n", + " \"group\": \"cookies\",\n", + " \"job_type\": \"eval\"})" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# create an empty dataframe to store predictions\n", + "import pandas as pd\n", + "predictions_df = pd.DataFrame(columns=['model', 'system_message', 'n_shot', 'prompt', 'completion', 'prediction'])\n", + "\n", + "models_to_test = [\"gpt-4\", \"gpt-3.5-turbo\"]\n", + "sys_mes_to_test = [\"../prompts/gpt4-system-message.txt\", \"../prompts/gpt4-system-message2.txt\"] # names are arbitrary, same prompts but with \"####\" in system message 2\n", + "n_shots_to_test = [None, 1, 2, 3, 5]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# if rerunning the below cell is required, set the following to True\n", + "rerun = False\n", + "if rerun:\n", + " predictions_df = pd.read_csv('../data/cookies_llm_eval_predictions.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 178, + "metadata": {}, + "outputs": [], + "source": [ + "# get predictions for all combinations of models, prompts, and n_shot values\n", + "# save predictions to dataframe and then to csv in data folder after each iteration\n", + "\n", + "# loop through models_to_test\n", + "for model in models_to_test:\n", + " # loop through prompts_to_test\n", + " for system_message in sys_mes_to_test:\n", + " # instantiate OpenAIChatCompletions class\n", + " chat = OpenAIChatCompletions(model=model, system_message=system_message)\n", + " # loop through n_shots_to_test\n", + " for n_shot in n_shots_to_test:\n", + " sys_mes_var = 1 if system_message == \"../prompts/gpt4-system-message.txt\" else 2\n", + " n_shot_var = 0 if n_shot == None else n_shot\n", + " # check if predictions for this model, system_message, and n_shot value have already been made\n", + " if predictions_df[(predictions_df['model'] == model) & (predictions_df['system_message'] == sys_mes_var) & (predictions_df['n_shot'] == n_shot_var)].shape[0] == 0:\n", + " prompts, completions, predictions = chat.predict_jsonl(n_shot=n_shot)\n", + " else:\n", + " # skip if predictions for this model, system_message, and n_shot value have already been made\n", + " continue\n", + " # save predictions to dataframe\n", + " df_to_append = pd.DataFrame({'model': model, 'system_message': sys_mes_var, 'n_shot': n_shot_var, 'prompt': prompts, 'completion': completions, 'prediction': predictions})\n", + " df_right = df_to_append['prediction'].apply(pd.Series)\n", + " df_right['prediction'] = df_right['choices'].apply(lambda x: x[0]['message']['content']).drop(columns=['choices'])\n", + " df_to_append = pd.concat([df_to_append[['model', 'system_message', 'n_shot', 'prompt', 'completion']], df_right], axis=1)\n", + " df_to_append.columns = ['model', 'system_message', 'n_shot', 'prompt', 'completion', 'id', 'object', 'created', 'openai_model', 'choices', 'usage', 'prediction']\n", + " # save predictions to dataframe\n", + " predictions_df = pd.concat([predictions_df, df_to_append], ignore_index=True)\n", + " # delete duplicates from dataframe\n", + " predictions_df = predictions_df[~predictions_df.duplicated(subset=['model', 'system_message', 'n_shot', 'prompt'])]\n", + " predictions_df.to_csv('../data/cookies_llm_eval_predictions.csv', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 179, + "metadata": {}, + "outputs": [], + "source": [ + "predictions_df = predictions_df[~predictions_df.duplicated(subset=['model', 'system_message', 'n_shot', 'prompt'])]" + ] + }, + { + "cell_type": "code", + "execution_count": 180, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(400, 12)" + ] + }, + "execution_count": 180, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 143, + "metadata": {}, + "outputs": [], + "source": [ + "# import numpy as np\n", + "\n", + "# ids = predictions_df['id'].isna()\n", + "# # apply pd.Series to predictions column for rows where id is not null and change system_message {0,1} to {1,2}\n", + "# new_df_right = predictions_df.loc[ids, 'prediction'].apply(pd.Series)\n", + "# new_df_right['prediction'] = new_df_right['choices'].apply(lambda x: x[0]['message']['content']).drop(columns=['choices'])\n", + "# new_df_left = predictions_df.loc[ids, ['model', 'system_message', 'n_shot', 'prompt', 'completion']].replace({0:1, 1:2})\n", + "# new_df = pd.concat([new_df_left, new_df_right], axis=1)\n", + "\n", + "# predictions_df.columns = ['model', 'system_message', 'n_shot', 'prompt', 'completion', 'id', 'object', 'created', 'openai_model', 'choices', 'usage', 'prediction']\n", + "# new_df.columns = ['model', 'system_message', 'n_shot', 'prompt', 'completion', 'id', 'object', 'created', 'openai_model', 'choices', 'usage', 'prediction']\n", + "# predictions_df.loc[ids] = new_df" + ] + }, + { + "cell_type": "code", + "execution_count": 155, + "metadata": {}, + "outputs": [], + "source": [ + "# for col in ['model','system_message','n_shot']:\n", + "# print(predictions_df[col].value_counts())" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [], + "source": [ + "# import numpy as np\n", + "\n", + "# # create a copy of predictions_df to manipulate\n", + "# new_predictions_df = predictions_df\n", + "\n", + "# # replace names with 1 or 2\n", + "# def replace_sys_mes_name(x):\n", + "# if x == \"../prompts/gpt4-system-message.txt\":\n", + "# return \"1\"\n", + "# elif x == \"../prompts/gpt4-system-message2.txt\":\n", + "# return \"2\"\n", + "# else:\n", + "# return x\n", + "# new_predictions_df['system_message'] = new_predictions_df['system_message'].apply(lambda x: replace_sys_mes_name(x))\n", + "# # replace None with 0\n", + "# new_predictions_df['n_shot'] = new_predictions_df['n_shot'].apply(lambda x: 0 if x == None or np.nan else x)\n", + "\n", + "# # break up prediction column into sub columns by each of json keys\n", + "# new_predictions_df = pd.concat([new_predictions_df, new_predictions_df['prediction'].apply(pd.Series)], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "metadata": {}, + "outputs": [], + "source": [ + "# predictions_df.drop(columns=['num_correct'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 181, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
modelsystem_messagen_shotpromptcompletionidobjectcreatedopenai_modelchoicesusageprediction
0gpt-410co-2MFE5QVF,Chill Medicated - Watermelon - Syr...Chill Medicated,Edible,Beverage,nan,nanchatcmpl-7VlTkjAqXNRWfltMPpr5v37uBJIsgchat.completion1.687805e+09gpt-4-0314[<OpenAIObject at 0x7fcf7fde94e0> JSON: {\\n \"...{\\n \"prompt_tokens\": 54,\\n \"completion_token...Hello! It looks like you mentioned a product: ...
1gpt-410bl-111630024545,Feelz - Space Cowboy 3.5g,nan,...Feelz,Flower,Bud,Space Cowboy,3.5chatcmpl-7VlTtGF3RGsngfKB1BXufxoTixX2vchat.completion1.687805e+09gpt-4-0314[<OpenAIObject at 0x7fcf7f49d2b0> JSON: {\\n \"...{\\n \"prompt_tokens\": 51,\\n \"completion_token...Hello! It seems like you are referring to a pr...
2gpt-410fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eigh...Champelli,Flower,Bud,Xclusivo,3.5chatcmpl-7VlU80b0m00VaiGymtj9dbqOggTgRchat.completion1.687805e+09gpt-4-0314[<OpenAIObject at 0x7fcf7e306890> JSON: {\\n \"...{\\n \"prompt_tokens\": 71,\\n \"completion_token...Hello! It seems like you're interested in the ...
3gpt-410bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWER...CAM,Flower,Bud,Mellowz #7,7chatcmpl-7VlUHqbsG2kpFHDxAWfsryh6pHmC9chat.completion1.687805e+09gpt-4-0314[<OpenAIObject at 0x7fcf7e33d940> JSON: {\\n \"...{\\n \"prompt_tokens\": 49,\\n \"completion_token...It seems like you are looking for information ...
4gpt-410fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato...Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan...chatcmpl-7VlUYvcad2wahIMHavhDEkYrgvjpwchat.completion1.687805e+09gpt-4-0314[<OpenAIObject at 0x7fcf7e306980> JSON: {\\n \"...{\\n \"prompt_tokens\": 59,\\n \"completion_token...Hello! It seems like you are looking for infor...
.......................................
395gpt-3.5-turbo21co-76GP441T,Minntz - Emerald Cut - Indoor - Jo...Minntz,Preroll,Joint,Emerald Cut,1chatcmpl-7VrjRMvs2l8EJd4PVecpSRPCvV9Hkchat.completion1.687829e+09gpt-3.5-turbo-0301[{'index': 0, 'message': {'role': 'assistant',...{'prompt_tokens': 125, 'completion_tokens': 23...Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T.
396gpt-3.5-turbo21co-5RAWYHYQ,The Growers Circle - Double Down -...The Growers Circle,Flower,Bud,Double Down,3.5chatcmpl-7VrjT3wfVoLtq3G6xksfVtLz4FloJchat.completion1.687829e+09gpt-3.5-turbo-0301[{'index': 0, 'message': {'role': 'assistant',...{'prompt_tokens': 123, 'completion_tokens': 22...The Growers Circle,Double Down,Indoor,3.5g,5RA...
397gpt-3.5-turbo21md-1195389,Blue Dream Roll Your Own Sugar Shak...Pacific Stone,Flower,Bud,nan,14chatcmpl-7VrjVafi1eGBXYfgmGBN0H3b0FzYOchat.completion1.687829e+09gpt-3.5-turbo-0301[{'index': 0, 'message': {'role': 'assistant',...{'prompt_tokens': 119, 'completion_tokens': 20...Pacific Stone,Sugar Shake,Blue Dream,Roll Your...
398gpt-3.5-turbo21co-847ZXF37,The Grower Circle - Zoo Dawg x Cos...The Growers Circle,Preroll,Joint,Zoo Dawg x Co...chatcmpl-7VrjWQpcRxJTdr3f4BUd7totDZpdFchat.completion1.687829e+09gpt-3.5-turbo-0301[{'index': 0, 'message': {'role': 'assistant',...{'prompt_tokens': 133, 'completion_tokens': 32...Multi Joint,Zoo Dawg x Cosa Nostra,The Grower ...
399gpt-3.5-turbo21co-8EMW15ZM,Flight Bites - S'mores - Gummy - 1...Flight Bites,Edible,Gummies,nan,nanchatcmpl-7VrjXiUHiyUyH7udPXIjANVmAUrrachat.completion1.687829e+09gpt-3.5-turbo-0301[{'index': 0, 'message': {'role': 'assistant',...{'prompt_tokens': 129, 'completion_tokens': 21...Flight Bites,Gummy,S'mores,10 count,100mg COβ‚‚ ...
\n", + "

400 rows Γ— 12 columns

\n", + "
" + ], + "text/plain": [ + " model system_message n_shot \\\n", + "0 gpt-4 1 0 \n", + "1 gpt-4 1 0 \n", + "2 gpt-4 1 0 \n", + "3 gpt-4 1 0 \n", + "4 gpt-4 1 0 \n", + ".. ... ... ... \n", + "395 gpt-3.5-turbo 2 1 \n", + "396 gpt-3.5-turbo 2 1 \n", + "397 gpt-3.5-turbo 2 1 \n", + "398 gpt-3.5-turbo 2 1 \n", + "399 gpt-3.5-turbo 2 1 \n", + "\n", + " prompt \\\n", + "0 co-2MFE5QVF,Chill Medicated - Watermelon - Syr... \n", + "1 bl-111630024545,Feelz - Space Cowboy 3.5g,nan,... \n", + "2 fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eigh... \n", + "3 bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWER... \n", + "4 fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato... \n", + ".. ... \n", + "395 co-76GP441T,Minntz - Emerald Cut - Indoor - Jo... \n", + "396 co-5RAWYHYQ,The Growers Circle - Double Down -... \n", + "397 md-1195389,Blue Dream Roll Your Own Sugar Shak... \n", + "398 co-847ZXF37,The Grower Circle - Zoo Dawg x Cos... \n", + "399 co-8EMW15ZM,Flight Bites - S'mores - Gummy - 1... \n", + "\n", + " completion \\\n", + "0 Chill Medicated,Edible,Beverage,nan,nan \n", + "1 Feelz,Flower,Bud,Space Cowboy,3.5 \n", + "2 Champelli,Flower,Bud,Xclusivo,3.5 \n", + "3 CAM,Flower,Bud,Mellowz #7,7 \n", + "4 Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan... \n", + ".. ... \n", + "395 Minntz,Preroll,Joint,Emerald Cut,1 \n", + "396 The Growers Circle,Flower,Bud,Double Down,3.5 \n", + "397 Pacific Stone,Flower,Bud,nan,14 \n", + "398 The Growers Circle,Preroll,Joint,Zoo Dawg x Co... \n", + "399 Flight Bites,Edible,Gummies,nan,nan \n", + "\n", + " id object created \\\n", + "0 chatcmpl-7VlTkjAqXNRWfltMPpr5v37uBJIsg chat.completion 1.687805e+09 \n", + "1 chatcmpl-7VlTtGF3RGsngfKB1BXufxoTixX2v chat.completion 1.687805e+09 \n", + "2 chatcmpl-7VlU80b0m00VaiGymtj9dbqOggTgR chat.completion 1.687805e+09 \n", + "3 chatcmpl-7VlUHqbsG2kpFHDxAWfsryh6pHmC9 chat.completion 1.687805e+09 \n", + "4 chatcmpl-7VlUYvcad2wahIMHavhDEkYrgvjpw chat.completion 1.687805e+09 \n", + ".. ... ... ... \n", + "395 chatcmpl-7VrjRMvs2l8EJd4PVecpSRPCvV9Hk chat.completion 1.687829e+09 \n", + "396 chatcmpl-7VrjT3wfVoLtq3G6xksfVtLz4FloJ chat.completion 1.687829e+09 \n", + "397 chatcmpl-7VrjVafi1eGBXYfgmGBN0H3b0FzYO chat.completion 1.687829e+09 \n", + "398 chatcmpl-7VrjWQpcRxJTdr3f4BUd7totDZpdF chat.completion 1.687829e+09 \n", + "399 chatcmpl-7VrjXiUHiyUyH7udPXIjANVmAUrra chat.completion 1.687829e+09 \n", + "\n", + " openai_model choices \\\n", + "0 gpt-4-0314 [ JSON: {\\n \"... \n", + "1 gpt-4-0314 [ JSON: {\\n \"... \n", + "2 gpt-4-0314 [ JSON: {\\n \"... \n", + "3 gpt-4-0314 [ JSON: {\\n \"... \n", + "4 gpt-4-0314 [ JSON: {\\n \"... \n", + ".. ... ... \n", + "395 gpt-3.5-turbo-0301 [{'index': 0, 'message': {'role': 'assistant',... \n", + "396 gpt-3.5-turbo-0301 [{'index': 0, 'message': {'role': 'assistant',... \n", + "397 gpt-3.5-turbo-0301 [{'index': 0, 'message': {'role': 'assistant',... \n", + "398 gpt-3.5-turbo-0301 [{'index': 0, 'message': {'role': 'assistant',... \n", + "399 gpt-3.5-turbo-0301 [{'index': 0, 'message': {'role': 'assistant',... \n", + "\n", + " usage \\\n", + "0 {\\n \"prompt_tokens\": 54,\\n \"completion_token... \n", + "1 {\\n \"prompt_tokens\": 51,\\n \"completion_token... \n", + "2 {\\n \"prompt_tokens\": 71,\\n \"completion_token... \n", + "3 {\\n \"prompt_tokens\": 49,\\n \"completion_token... \n", + "4 {\\n \"prompt_tokens\": 59,\\n \"completion_token... \n", + ".. ... \n", + "395 {'prompt_tokens': 125, 'completion_tokens': 23... \n", + "396 {'prompt_tokens': 123, 'completion_tokens': 22... \n", + "397 {'prompt_tokens': 119, 'completion_tokens': 20... \n", + "398 {'prompt_tokens': 133, 'completion_tokens': 32... \n", + "399 {'prompt_tokens': 129, 'completion_tokens': 21... \n", + "\n", + " prediction \n", + "0 Hello! It looks like you mentioned a product: ... \n", + "1 Hello! It seems like you are referring to a pr... \n", + "2 Hello! It seems like you're interested in the ... \n", + "3 It seems like you are looking for information ... \n", + "4 Hello! It seems like you are looking for infor... \n", + ".. ... \n", + "395 Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T. \n", + "396 The Growers Circle,Double Down,Indoor,3.5g,5RA... \n", + "397 Pacific Stone,Sugar Shake,Blue Dream,Roll Your... \n", + "398 Multi Joint,Zoo Dawg x Cosa Nostra,The Grower ... \n", + "399 Flight Bites,Gummy,S'mores,10 count,100mg COβ‚‚ ... \n", + "\n", + "[400 rows x 12 columns]" + ] + }, + "execution_count": 181, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions_df" + ] + }, + { + "cell_type": "code", + "execution_count": 182, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "669" + ] + }, + "execution_count": 182, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from util import compare_completion_and_prediction\n", + "\n", + "# Function that uses compare_completion_and_prediction to return num_correct and return zero if there is an error\n", + "def get_num_correct(completion, prediction):\n", + " try:\n", + " return compare_completion_and_prediction(completion, prediction)['num_correct']\n", + " except:\n", + " return 0 # this will be the case when format is incorrect\n", + " \n", + "# Apply get_num_correct function to predictions_df dataframe\n", + "predictions_df['num_correct'] = predictions_df.apply(lambda row: get_num_correct(row['completion'], row['prediction']), axis=1)\n", + "predictions_df['num_correct'].sum() # out of 1000 possible correct predictions (20 samples * 5 cols per sample) * (2 system messages * 2 models * 5 n_shot values)" + ] + }, + { + "cell_type": "code", + "execution_count": 187, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "model system_message n_shot\n", + "gpt-3.5-turbo 1 0 0.00\n", + " 1 0.00\n", + " 2 0 0.00\n", + "gpt-4 1 0 0.00\n", + " 1 0.00\n", + " 2 0 0.00\n", + "gpt-3.5-turbo 1 2 0.24\n", + " 2 1 0.24\n", + " 2 0.27\n", + " 3 0.36\n", + " 1 3 0.40\n", + " 5 0.44\n", + "gpt-4 2 2 0.45\n", + " 1 2 0.45\n", + " 2 1 0.47\n", + "gpt-3.5-turbo 2 5 0.56\n", + "gpt-4 1 3 0.62\n", + " 2 3 0.67\n", + " 5 0.73\n", + " 1 5 0.79\n", + "Name: num_correct, dtype: float64" + ] + }, + "execution_count": 187, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions_df.groupby(['model', 'system_message', 'n_shot'])['num_correct'].sum().sort_values() / 100 # out of 100 possible correct predictions (20 samples * 5 cols per sample)" + ] + }, + { + "cell_type": "code", + "execution_count": 184, + "metadata": {}, + "outputs": [], + "source": [ + "new_predictions_df.to_csv('../data/cookies_llm_eval_proc_preds.csv', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "Waiting for W&B process to finish... (success)." + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "\n", + "

Run history:


usage/completion_tokensβ–†β–†β–β–β–β–β–β–β–β–β–ˆβ–„β–β–β–β–β–β–β–β–ƒβ–β–β–β–†β–‚β–†β–ƒβ–…β–„β–…β–†β–„β–ƒβ–β–β–β–β–β–β–
usage/elapsed_timeβ–„β–†β–β–β–β–β–‚β–β–‚β–β–ˆβ–ƒβ–β–β–β–‚β–β–β–‚β–β–β–β–β–„β–‚β–„β–‚β–ƒβ–ƒβ–„β–…β–‚β–β–β–β–β–‚β–β–β–
usage/prompt_tokensβ–β–β–‚β–‚β–„β–„β–†β–…β–ˆβ–ˆβ–β–β–ƒβ–ƒβ–„β–…β–…β–ˆβ–ˆβ–β–β–ƒβ–ƒβ–β–β–β–β–β–β–‚β–β–‚β–β–„β–„β–†β–†β–ˆβ–ˆβ–
usage/total_tokensβ–„β–„β–‚β–‚β–ƒβ–ƒβ–…β–…β–ˆβ–‡β–†β–ƒβ–‚β–‚β–„β–…β–…β–‡β–‡β–‚β–β–ƒβ–‚β–„β–‚β–„β–‚β–„β–ƒβ–„β–„β–ƒβ–‚β–„β–ƒβ–…β–†β–ˆβ–ˆβ–

Run summary:


usage/completion_tokens62
usage/elapsed_time2.40086
usage/prompt_tokens54
usage/total_tokens116

" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + " View run rose-puddle-7 at: https://wandb.ai/kaleidoscope-data/cookies_llm_experimental_eval/runs/rbtf91s6
Synced 6 W&B file(s), 422 media file(s), 422 artifact file(s) and 0 other file(s)" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "Find logs at: ./wandb/run-20230626_114056-rbtf91s6/logs" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "autolog.disable()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "kd-llm-dc", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/app/data_prep.ipynb b/app/data_prep.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..8b61f24e60229517a74cd19532586afbbcfb1ce2 --- /dev/null +++ b/app/data_prep.ipynb @@ -0,0 +1,283 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## This notebook is to show how to load csv data and into jsonl format for the LLM data cleaner.\n", + "\n", + "First, we load the data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
skuproduct_name (pos)brand (pos)product_category (pos)strain_name (pos)product_weight_grams (pos)brand (manual review)product_category (manual review)sub_product_category (manual review)strain_name (manual review)product_weight_grams (manual review)
0bl-842922110296STIIIZY - Birthday Cake Pod 1gNaNVAPE PENS 1GNaN1.0STIIIZYVapeVapeBirthday Cake1
1co-6ARLLX12SMASH Hits - Hippie Slayer - Indoor - 1gSMASH HitsNaNHippie SlayerNaNSMASH HitsPrerollJointHippie Slayer1
2bl-090035986141Eighth Brothers - Black Jack 1g PrerollNaNPREROLLSNaNNaNEighth BrothersPrerollJointBlack Jack1
3bl-850002822274GRIZZLY PEAK - Indica Bone 0.5g 7PK PrerollsNaNPREROLL PACKSNaNNaNGRIZZLY PEAKPrerollJointNaN3.5
4co-76GP441TMinntz - Emerald Cut - Indoor - Joint - 1gMinntzNaNEmerald CutNaNMinntzPrerollJointEmerald Cut1
\n", + "
" + ], + "text/plain": [ + " sku product_name (pos) brand (pos) \\\n", + "0 bl-842922110296 STIIIZY - Birthday Cake Pod 1g NaN \n", + "1 co-6ARLLX12 SMASH Hits - Hippie Slayer - Indoor - 1g SMASH Hits \n", + "2 bl-090035986141 Eighth Brothers - Black Jack 1g Preroll NaN \n", + "3 bl-850002822274 GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls NaN \n", + "4 co-76GP441T Minntz - Emerald Cut - Indoor - Joint - 1g Minntz \n", + "\n", + " product_category (pos) strain_name (pos) product_weight_grams (pos) \\\n", + "0 VAPE PENS 1G NaN 1.0 \n", + "1 NaN Hippie Slayer NaN \n", + "2 PREROLLS NaN NaN \n", + "3 PREROLL PACKS NaN NaN \n", + "4 NaN Emerald Cut NaN \n", + "\n", + " brand (manual review) product_category (manual review) \\\n", + "0 STIIIZY Vape \n", + "1 SMASH Hits Preroll \n", + "2 Eighth Brothers Preroll \n", + "3 GRIZZLY PEAK Preroll \n", + "4 Minntz Preroll \n", + "\n", + " sub_product_category (manual review) strain_name (manual review) \\\n", + "0 Vape Birthday Cake \n", + "1 Joint Hippie Slayer \n", + "2 Joint Black Jack \n", + "3 Joint NaN \n", + "4 Joint Emerald Cut \n", + "\n", + " product_weight_grams (manual review) \n", + "0 1 \n", + "1 1 \n", + "2 1 \n", + "3 3.5 \n", + "4 1 " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import warnings\n", + "warnings.filterwarnings('ignore')\n", + "\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "# Load tab-delimited file into pandas dataframe\n", + "cookies = pd.read_csv('../data/Cookies-AI-Gold-Standard - Cookies-AI-Gold-Standard.csv', sep=',')\n", + "\n", + "cookies.head()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Data Preparation\n", + "We transform the dataset into a pandas dataframe, with a column for prompt and completion.\n", + "\n", + "The prompt contains the \"dirty\" columns, and completion contains the \"cleaned\" columns." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from datasets import Dataset, DatasetDict\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "# split the dataset into train, val and test datasets 80/20\n", + "cookies_train, cookies_test = train_test_split(cookies, test_size=0.20, random_state=42)\n", + "\n", + "# list of input and output columns\n", + "input_columns = ['sku','product_name (pos)','brand (pos)','product_category (pos)','strain_name (pos)','product_weight_grams (pos)']\n", + "output_columns = ['brand (manual review)','product_category (manual review)','sub_product_category (manual review)','strain_name (manual review)','product_weight_grams (manual review)']\n", + "\n", + "# functtion to convert pandas dataframe row to csv string\n", + "def row_to_csv(row):\n", + " csv_string = ','.join(str(value) for value in row.values)\n", + " return csv_string\n", + "\n", + "# create dataframe with prompt and completion columns\n", + "\n", + "# apply row_to_csv function to each row of the training dataframe\n", + "input_rows = cookies_train[input_columns ].apply(row_to_csv, axis=1)\n", + "output_rows = cookies_train[output_columns].apply(row_to_csv, axis=1)\n", + "\n", + "# create dataframe with prompt and completion columns for training dataset\n", + "prompt_df = pd.DataFrame(\n", + " zip(input_rows,\n", + " output_rows)\n", + " , columns = ['prompt','completion'])\n", + "\n", + "# save dataframe to jsonl file for training\n", + "prompt_df.to_json(\"../data/cookies_train.jsonl\", orient='records', lines=True)\n", + "\n", + "# apply row_to_csv function to each row of the test dataframe\n", + "input_test_rows = cookies_test[input_columns ].apply(row_to_csv, axis=1)\n", + "output_test_rows = cookies_test[output_columns].apply(row_to_csv, axis=1)\n", + "\n", + "# create dataframe with prompt and completion columns for test dataset\n", + "test_df = pd.DataFrame(\n", + " zip(input_test_rows,\n", + " output_test_rows)\n", + " , columns = ['prompt','completion'])\n", + "test_df.head()\n", + "\n", + "# save dataframe to jsonl file for test\n", + "test_df.to_json(\"../data/cookies_test.jsonl\", orient='records', lines=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# write a function that samples n rows from a jsonl file\n", + "def sample_jsonl(path_or_buf='../data/cookies_train.jsonl',n_samples=5): \n", + " jsonObj = pd.read_json(path_or_buf=path_or_buf, lines=True)\n", + " return jsonObj.sample(n_samples, random_state=42)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# write a function that adds prompt and completion samples to messages\n", + "def add_samples(messages, n_samples=None):\n", + " if n_samples is None:\n", + " return messages\n", + " samples = sample_jsonl(n_samples=n_samples)\n", + " for i in range(n_samples):\n", + " messages.append({\"role\": \"user\", \"content\": samples.iloc[i]['prompt']})\n", + " messages.append({\"role\": \"assistant\", \"content\": samples.iloc[i]['completion']})\n", + " return messages" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/app/openai_chat_completion.py b/app/openai_chat_completion.py new file mode 100644 index 0000000000000000000000000000000000000000..a50035037be5ab8dba0619bb1b7c9dd2d4812902 --- /dev/null +++ b/app/openai_chat_completion.py @@ -0,0 +1,76 @@ +import os +import pandas as pd +from dotenv import load_dotenv +load_dotenv() +import openai + +# # set OPENAI_API_KEY environment variable from .env file +# openai.api_key = os.getenv("OPENAI_API_KEY") + +# # read in llm-data-cleaner/prompts/gpt4-system-message.txt file into variable system_message +# system_message = open('../prompts/gpt4-system-message.txt', 'r').read() + +class OpenAIChatCompletions: + def __init__(self, model="gpt-4", system_message=None): + self.model = model + self.system_message = system_message + + + # function to input args such as model, prompt, etc. and return completion + def openai_chat_completion(self, prompt, n_shot=None): + messages = [{"role": "system", "content": self.system_message}] if self.system_message else [] + + # add n_shot number of samples to messages list ... if n_shot is None, then only system_message and prompt will be added to messages list + if n_shot is not None: + messages = self._add_samples(messages, n_samples=n_shot) + + messages.append({"role": "user", "content": prompt}) + + # set up the API request parameters for OpenAI + chat_request_kwargs = dict( + model=self.model, + messages=messages, + ) + + # make the API request to OpenAI + response = openai.ChatCompletion.create(**chat_request_kwargs) + + # return only the completion text + # return response['choices'][0]['message']['content'] + # return response + return response + + + # function to use test data to predict completions + def predict_jsonl(self, path_or_buf='../data/cookies_test.jsonl', n_samples=None, n_shot=None): + jsonObj = pd.read_json(path_or_buf=path_or_buf, lines=True) + if n_samples is not None: + jsonObj = jsonObj.sample(n_samples, random_state=42) + + iter_range = range(len(jsonObj)) + prompts = [jsonObj.iloc[i]['prompt'] for i in iter_range] + completions = [jsonObj.iloc[i]['completion'] for i in iter_range] + predictions = [self.openai_chat_completion(prompt, n_shot=n_shot) for prompt in prompts] + + return prompts, completions, predictions + + + # a method that adds prompt and completion samples to messages + @staticmethod + def _add_samples(messages, n_samples=None): + if n_samples is None: + return messages + + samples = OpenAIChatCompletions._sample_jsonl(n_samples=n_samples) + for i in range(n_samples): + messages.append({"role": "user", "content": samples.iloc[i]['prompt']}) + messages.append({"role": "assistant", "content": samples.iloc[i]['completion']}) + + return messages + + + # a method that samples n rows from a jsonl file, returning a pandas dataframe + @staticmethod + def _sample_jsonl(path_or_buf='../data/cookies_train.jsonl', n_samples=5): + jsonObj = pd.read_json(path_or_buf=path_or_buf, lines=True) + return jsonObj.sample(n_samples, random_state=42) diff --git a/app/test.py b/app/test.py new file mode 100644 index 0000000000000000000000000000000000000000..4212bbfeb84ed1680ff764a3678f863d46cf6b11 --- /dev/null +++ b/app/test.py @@ -0,0 +1,18 @@ +from openai_chat_completion import OpenAIChatCompletions + +# read in llm-data-cleaner/prompts/gpt4-system-message.txt file into variable system_message +system_message = open('../prompts/gpt4-system-message.txt', 'r').read() + +# create an instance of the OpenAIChatCompletions class and use the openai_chat_completion method to get chat completions +chat_completions = OpenAIChatCompletions(model="gpt-4", system_message=system_message) + +# prompt = "co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan" +# completion = chat_completions.openai_chat_completion(prompt, n_shot=1) +# print(completion) + + + +prompts, completions, predictions = chat_completions.predict_jsonl(n_samples=2, n_shot=2) +print("Prompts:", prompts) +print("Completions:", completions) +print("Predictions:", predictions) \ No newline at end of file diff --git a/app/util.py b/app/util.py new file mode 100644 index 0000000000000000000000000000000000000000..b6f4918fbe82438b503c9e971edef24d3f6e1059 --- /dev/null +++ b/app/util.py @@ -0,0 +1,20 @@ +# write a function that compares the completion and prediction, separating each string by comma into their respective columns, then compare each column and return a dataframe with the results +def compare_completion_and_prediction(completion, prediction, verbose=False): + # if verbose is True, print the completion and prediction strings + if verbose: + print("Completion:", completion, f"type({type(completion)}):") + print("Prediction:", prediction, f"type({type(prediction)}):") + # split completion and prediction strings on comma character + completion = completion.split(',') + prediction = prediction.split(',') + # create a column that counts the number of matchs between completion and prediction + matches = [completion[i] == prediction[i] for i in range(len(completion))] + # create a json dictionary with the completion, prediction, matches, and num_correct fields + json_dict = { + "completion": completion, + "prediction": prediction, + "matches": matches, + "num_correct": sum(matches) + } + # return the json dictionary + return json_dict \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/conda-environment.yaml b/app/wandb/run-20230626_114056-rbtf91s6/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d8ba16a594f086f7ef48dd4a20df21a9fe9262ab --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/conda-environment.yaml @@ -0,0 +1,114 @@ +name: kd-llm-dc +channels: + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - asttokens=2.2.1=pyhd8ed1ab_0 + - backcall=0.2.0=pyh9f0ad1d_0 + - backports=1.0=pyhd8ed1ab_3 + - backports.functools_lru_cache=1.6.4=pyhd8ed1ab_0 + - bzip2=1.0.8=h7b6447c_0 + - ca-certificates=2023.5.7=hbcca054_0 + - decorator=5.1.1=pyhd8ed1ab_0 + - entrypoints=0.4=pyhd8ed1ab_0 + - executing=1.2.0=pyhd8ed1ab_0 + - ipykernel=6.15.0=pyh210e3f2_0 + - ipython=8.14.0=pyh41d4057_0 + - jedi=0.18.2=pyhd8ed1ab_0 + - jupyter_client=7.3.4=pyhd8ed1ab_0 + - jupyter_core=5.3.1=py310hff52083_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.4.4=h6a678d5_0 + - libgcc-ng=11.2.0=h1234567_1 + - libgomp=11.2.0=h1234567_1 + - libsodium=1.0.18=h36c2ea0_1 + - libstdcxx-ng=11.2.0=h1234567_1 + - libuuid=1.41.5=h5eee18b_0 + - matplotlib-inline=0.1.6=pyhd8ed1ab_0 + - ncurses=6.4=h6a678d5_0 + - nest-asyncio=1.5.6=pyhd8ed1ab_0 + - openssl=3.0.8=h7f8727e_0 + - packaging=23.1=pyhd8ed1ab_0 + - parso=0.8.3=pyhd8ed1ab_0 + - pexpect=4.8.0=pyh1a96a4e_2 + - pickleshare=0.7.5=py_1003 + - platformdirs=3.5.3=pyhd8ed1ab_0 + - prompt-toolkit=3.0.38=pyha770c72_0 + - prompt_toolkit=3.0.38=hd8ed1ab_0 + - ptyprocess=0.7.0=pyhd3deb0d_0 + - pure_eval=0.2.2=pyhd8ed1ab_0 + - pygments=2.15.1=pyhd8ed1ab_0 + - python=3.10.11=h955ad1f_3 + - python-dateutil=2.8.2=pyhd8ed1ab_0 + - python_abi=3.10=2_cp310 + - readline=8.2=h5eee18b_0 + - six=1.16.0=pyh6c4a22f_0 + - sqlite=3.41.2=h5eee18b_0 + - stack_data=0.6.2=pyhd8ed1ab_0 + - tk=8.6.12=h1ccaba5_0 + - traitlets=5.9.0=pyhd8ed1ab_0 + - typing-extensions=4.6.3=hd8ed1ab_0 + - typing_extensions=4.6.3=pyha770c72_0 + - wcwidth=0.2.6=pyhd8ed1ab_0 + - xz=5.4.2=h5eee18b_0 + - zeromq=4.3.4=h9c3ff4c_1 + - zlib=1.2.13=h5eee18b_0 + - pip: + - aiohttp==3.8.4 + - aiosignal==1.3.1 + - appdirs==1.4.4 + - async-timeout==4.0.2 + - attrs==23.1.0 + - certifi==2023.5.7 + - charset-normalizer==3.1.0 + - click==8.1.3 + - datasets==2.13.1 + - debugpy==1.5.1 + - dill==0.3.6 + - docker-pycreds==0.4.0 + - docopt==0.6.2 + - filelock==3.12.2 + - frozenlist==1.3.3 + - fsspec==2023.6.0 + - gitdb==4.0.10 + - gitpython==3.1.31 + - huggingface-hub==0.15.1 + - idna==3.4 + - joblib==1.2.0 + - jupyter-core==5.3.1 + - multidict==6.0.4 + - multiprocess==0.70.14 + - numpy==1.24.3 + - openai==0.27.8 + - pandas==2.0.2 + - pathtools==0.1.2 + - pip==23.1.2 + - pipreqs==0.4.13 + - protobuf==4.23.3 + - psutil==5.9.0 + - pyarrow==12.0.1 + - python-dotenv==1.0.0 + - pytz==2023.3 + - pyyaml==6.0 + - pyzmq==25.1.0 + - requests==2.31.0 + - scikit-learn==1.2.2 + - scipy==1.10.1 + - sentry-sdk==1.25.1 + - setproctitle==1.3.2 + - setuptools==67.8.0 + - smmap==5.0.0 + - tenacity==8.2.2 + - threadpoolctl==3.1.0 + - tornado==6.1 + - tqdm==4.65.0 + - tzdata==2023.3 + - urllib3==2.0.3 + - wandb==0.15.4 + - wheel==0.38.4 + - xxhash==3.2.0 + - yarg==0.1.9 + - yarl==1.9.2 +prefix: /home/cmagganas/anaconda3/envs/kd-llm-dc diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/config.yaml b/app/wandb/run-20230626_114056-rbtf91s6/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ef3e8879161cc2b445e35fbaa86859db4ed4f0da --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/config.yaml @@ -0,0 +1,49 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + python_version: 3.10.11 + cli_version: 0.15.4 + is_jupyter_run: true + is_kaggle_kernel: false + start_time: 1687804857.029691 + t: + 1: + - 55 + - 95 + 2: + - 55 + - 95 + 3: + - 2 + - 7 + - 23 + - 51 + 4: 3.10.11 + 5: 0.15.4 + 8: + - 1 + - 5 + m: + - 1: _timestamp + - 1: usage/total_tokens + 5: 1 + 6: + - 1 + - 3 + - 1: usage/prompt_tokens + 5: 1 + 6: + - 1 + - 3 + - 1: usage/completion_tokens + 5: 1 + 6: + - 1 + - 3 + - 1: usage/elapsed_time + 5: 1 + 6: + - 1 + - 3 diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_0_75f83ac87fa164c83b8e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_0_75f83ac87fa164c83b8e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..813d78ee01b761fa2a677e7c7f6df05ade990560 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_0_75f83ac87fa164c83b8e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product.\n\nHowever, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs.\n", "gpt-4-0314", "2023-06-26T11:43:52", "2023-06-26T11:43:59.429335", "chatcmpl-7VlTkjAqXNRWfltMPpr5v37uBJIsg", "openai", "rbtf91s6", 7.429335340999387, 54, 76, 130]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_100_f673fdf8da564f8db616.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_100_f673fdf8da564f8db616.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e0d153f659b196bed73d7e58d4b2c89992ecd5fb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_100_f673fdf8da564f8db616.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes.\n\nPlease note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes.\n", "gpt-4-0314", "2023-06-26T11:52:45", "2023-06-26T11:52:54.504518", "chatcmpl-7VlcLAoSfGbbqW9UIGm5QMc7eah9L", "openai", "rbtf91s6", 9.504517934999967, 55, 103, 158]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_101_df8f84304e946465232c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_101_df8f84304e946465232c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cf6d1139f1b6ac2858256ca662ffcd6afd152cb7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_101_df8f84304e946465232c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information regarding a product called \"Feelz - Space Cowboy 3.5g\" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help.\n", "gpt-4-0314", "2023-06-26T11:52:55", "2023-06-26T11:53:03.838794", "chatcmpl-7VlcVcxS9IegeWVDkFy2z8aCcqBs7", "openai", "rbtf91s6", 8.838793879999685, 52, 62, 114]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_102_bf3b4ae7fed0ee456ca9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_102_bf3b4ae7fed0ee456ca9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aaea7df6d239375b19f564e4f7a6a1d173712f44 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_102_bf3b4ae7fed0ee456ca9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. \n\nChampelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis.\n\nTo learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area.\n\nPlease note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location.\n\nIf you have any other questions or need further assistance, feel free to ask!\n", "gpt-4-0314", "2023-06-26T11:53:04", "2023-06-26T11:53:19.913999", "chatcmpl-7VlceM4xLntrlxlinLnUJd4Km8vMl", "openai", "rbtf91s6", 15.913999183999294, 72, 185, 257]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_103_9784775529cd9b0c478d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_103_9784775529cd9b0c478d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..75176f8b7f4da623332ee22184c18b6fa10df862 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_103_9784775529cd9b0c478d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're inquiring about the product \"CAM - Mellowz #7,\" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!\n", "gpt-4-0314", "2023-06-26T11:53:21", "2023-06-26T11:53:28.756413", "chatcmpl-7VlcvsyAP6UCMxGoViTeMJEorRV4P", "openai", "rbtf91s6", 7.756412714000362, 50, 79, 129]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_104_b69d429713afe585607d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_104_b69d429713afe585607d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..085357610e11769c6ca24e78a376c650796665a0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_104_b69d429713afe585607d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product.\n", "gpt-4-0314", "2023-06-26T11:53:29", "2023-06-26T11:53:33.569959", "chatcmpl-7Vld3cnmYqFqj77789o1B403tNS6U", "openai", "rbtf91s6", 4.569959391000339, 60, 48, 108]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_105_8f9030467825d6eb9154.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_105_8f9030467825d6eb9154.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d581286439de42d40417131b3033b34e56c40955 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_105_8f9030467825d6eb9154.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate.\n\nRaw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles.\n\nProduct: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0 gram\n\nPlease remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage.\n", "gpt-4-0314", "2023-06-26T11:53:34", "2023-06-26T11:53:45.988982", "chatcmpl-7Vld89t8QYfwBULmGxBauA0r7P9gp", "openai", "rbtf91s6", 11.98898184600057, 55, 134, 189]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_106_975584bb2f8ac7976684.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_106_975584bb2f8ac7976684.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e50a077c0c0fe0b0d7616f11b089a4fdd27859 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_106_975584bb2f8ac7976684.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g)\nBrand: Jeeter\nCategory: Infused Prerolls\n\nThis pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke.\n", "gpt-4-0314", "2023-06-26T11:53:47", "2023-06-26T11:53:59.355972", "chatcmpl-7VldLx6QUKkKfE5q9odEeZVJwYxhW", "openai", "rbtf91s6", 12.355971499000589, 60, 105, 165]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_107_353750bd44b04ac7162b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_107_353750bd44b04ac7162b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c0c6d52bb8321454d0e72ac7cba63c983caaea8e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_107_353750bd44b04ac7162b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on a product called \"Truffle Pupil\" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt.\n\nUnfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt.\n\nOcean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The \"Truffle Pupil\" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages.\n\nWhen smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic.\n\nPlease let me know if you have any other questions or need information on any other topic. I'm here to help!\n", "gpt-4-0314", "2023-06-26T11:54:00", "2023-06-26T11:54:34.819720", "chatcmpl-7VldYbCjPPC839qSooOjqtjTYyjo7", "openai", "rbtf91s6", 34.81971949600029, 67, 253, 320]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_108_d4754b6aea82a8c16ed9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_108_d4754b6aea82a8c16ed9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f495986514df71107e77bf81b2b1349b4c3407e1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_108_d4754b6aea82a8c16ed9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users.\n\nProduct: Cookies Triple Scoop Preroll\nType: Joint\nWeight: 1 gram\nBrand: Cookies\n\nPlease let me know if you need any more information or have any questions about this product.\n", "gpt-4-0314", "2023-06-26T11:54:35", "2023-06-26T11:54:53.414244", "chatcmpl-7Vle7ITXk2D9234jwInXFdgwcaSoY", "openai", "rbtf91s6", 18.414243819999683, 66, 124, 190]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_109_bcb8cb29447c99155339.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_109_bcb8cb29447c99155339.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5ae0c8743f036f0a01816fe5d26b8fb6fc356fc1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_109_bcb8cb29447c99155339.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!\n", "gpt-4-0314", "2023-06-26T11:54:54", "2023-06-26T11:55:03.183406", "chatcmpl-7VleQ2KysWpsoPwcl3ZI91oM1KAJ7", "openai", "rbtf91s6", 9.183406203000231, 55, 80, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_10_d888c45dceed81f58d7a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_10_d888c45dceed81f58d7a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..40265168a47d49833ca3ec4f889ef027c3248622 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_10_d888c45dceed81f58d7a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help.\n", "gpt-4-0314", "2023-06-26T11:46:18", "2023-06-26T11:46:26.313300", "chatcmpl-7VlW67EpfYEde31aEs26p9iJEecyh", "openai", "rbtf91s6", 8.313300085000265, 56, 82, 138]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_110_6b738aa2166ace2f9d56.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_110_6b738aa2166ace2f9d56.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5127821a519f331568ec0673d2338ba9ce0275f8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_110_6b738aa2166ace2f9d56.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience.\n\nUnfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved:\n\nInfused Joints: \nInfused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the \"infused\" label and can offer a stronger, more potent high compared to regular joints.\n\nCookies:\nCookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products.\n\nThe Grower Circle:\nThe Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products.\n\nAs for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region.\n", "gpt-4-0314", "2023-06-26T11:55:04", "2023-06-26T11:55:32.640890", "chatcmpl-7VleaFAnv4qWX3G29gNiEAsR4IKVh", "openai", "rbtf91s6", 28.64088961699963, 57, 300, 357]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_111_5aed3974ba4952f876eb.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_111_5aed3974ba4952f876eb.table.json new file mode 100644 index 0000000000000000000000000000000000000000..26bc0f63854e18b51df1efd3a400272ad06fbb2a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_111_5aed3974ba4952f876eb.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product:\n\n- Brand: Kanha\n- Type: Indica Gummy\n- Flavor: Blood Orange Bliss\n- Serving Size: 10 gummies per pack\n- Total THC Content: 100mg\n- THC per gummy: 10mg\n- Key Feature: Nanomolecular Technology for faster, more efficient absorption\n\nKanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience.\n\nPlease note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children.\n", "gpt-4-0314", "2023-06-26T11:55:33", "2023-06-26T11:56:08.063033", "chatcmpl-7Vlf3CbhKfGocBHh6oW4nUTbu69rd", "openai", "rbtf91s6", 35.06303332399966, 58, 266, 324]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_112_3a7258bfdca8fcd1719b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_112_3a7258bfdca8fcd1719b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..03ed54fe8f4afddaa4535ba9ede61494e19bc915 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_112_3a7258bfdca8fcd1719b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower.\n\nBOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends.\n\nThe strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users.\n\nPlease note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions.\n\nEnjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!\n", "gpt-4-0314", "2023-06-26T11:56:10", "2023-06-26T11:56:40.822175", "chatcmpl-7VlfehpIxe7ySnByC6Q9UGmf39tnm", "openai", "rbtf91s6", 30.822175170000264, 52, 241, 293]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_113_71838fad78e890a3e4cd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_113_71838fad78e890a3e4cd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f25db2b497ee1b6715d5ecfa953c6aae37e28161 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_113_71838fad78e890a3e4cd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC.\n\nThese Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption.\n\nAs always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed.\n", "gpt-4-0314", "2023-06-26T11:56:40", "2023-06-26T11:56:54.107206", "chatcmpl-7Vlg8GQNsnCMuP12dlbfdh4tqdn0W", "openai", "rbtf91s6", 14.107205561000228, 52, 184, 236]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_114_200ab5992b87e0e3b2d4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_114_200ab5992b87e0e3b2d4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..24b3c2a0457d9432ec29957079be62b126e9d25a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_114_200ab5992b87e0e3b2d4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: You have selected the following product:\n\nProduct ID: md-1347497\nProduct: Cherry Pie - 1g - Pod\nBrand: Left Coast Extracts\nCategory: Vape\nTHC Content: Not specified\nCBD Content: Not specified\n\nThe Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes.\n\nHowever, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information.\n\nPlease consume responsibly and follow the recommended dosage instructions provided by the manufacturer.\n", "gpt-4-0314", "2023-06-26T11:56:54", "2023-06-26T11:57:10.579232", "chatcmpl-7VlgMzsYnCHB41MM6ZSQPDDC2bHna", "openai", "rbtf91s6", 16.579231394999624, 47, 182, 229]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_115_3e8ce0d79ca9a77c577e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_115_3e8ce0d79ca9a77c577e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..33ff9c3e26c38dc49ebfdf5577b178a2880826d8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_115_3e8ce0d79ca9a77c577e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information.\n\nHowever, I can provide some general information about cannabis joints.\n\nA joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience.\n\nEmerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties.\n\nIf you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions.\n", "gpt-4-0314", "2023-06-26T11:57:11", "2023-06-26T11:57:35.146583", "chatcmpl-7VlgdhgYBSUuMB38xQt4lYHeb481r", "openai", "rbtf91s6", 24.146582954999758, 54, 256, 310]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_116_27261d37b58e97119be1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_116_27261d37b58e97119be1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6a4c297ef47e8eb751c450ce9d6cca07a82a1a47 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_116_27261d37b58e97119be1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems you are looking for information on a cannabis product called \"The Growers Circle - Double Down - Indoor - 3.5g\". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods.\n\nThe product you've mentioned, \"Double Down\" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product.\n\nTo get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details.\n", "gpt-4-0314", "2023-06-26T11:57:36", "2023-06-26T11:57:57.028817", "chatcmpl-7Vlh2eeYsWzANKI3YBlblLl1uglVd", "openai", "rbtf91s6", 21.028816743999414, 52, 167, 219]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_117_8afbd8d9b801892f328e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_117_8afbd8d9b801892f328e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd2ad985ff54f6e2389814e637a50d14e744b8a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_117_8afbd8d9b801892f328e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nProduct Category: Flowers\nDescription:\nThe Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience.\n", "gpt-4-0314", "2023-06-26T11:57:58", "2023-06-26T11:58:13.038242", "chatcmpl-7VlhOyEAazqJEGuWGg4g4APivkogx", "openai", "rbtf91s6", 15.038242100999923, 48, 164, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_118_f5e4033d82ffd310d340.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_118_f5e4033d82ffd310d340.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fd254a42e2a30e66d2399c0113ebb2053563bf24 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_118_f5e4033d82ffd310d340.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information on the Grower Circle's \"Zoo Dawg x Cosa Nostra\" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains.\n\n- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood.\n\n- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia.\n\nThis Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes.\n", "gpt-4-0314", "2023-06-26T11:58:13", "2023-06-26T11:58:35.308054", "chatcmpl-7VlhdjuABCp8pq7UA9hP1nNXE2Cv2", "openai", "rbtf91s6", 22.308054483999513, 62, 250, 312]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_119_6d43ea3093b2b3ecadd6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_119_6d43ea3093b2b3ecadd6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a7fb7dfd98e1b673734d1e2909d13f1238f555af --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_119_6d43ea3093b2b3ecadd6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on a product called \"Flight Bites - S'mores - Gummy - 10ct - 100mg\". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the \"100mg\" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats.\n\nHowever, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!\n", "gpt-4-0314", "2023-06-26T11:58:36", "2023-06-26T11:58:47.884809", "chatcmpl-7Vli0raZNlIIGBpBDSBD6dc0zK0bw", "openai", "rbtf91s6", 11.884809475000111, 58, 129, 187]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_11_81ba18437deae19f6d25.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_11_81ba18437deae19f6d25.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6c76037c739008f0160c33d56a310bf6120ac656 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_11_81ba18437deae19f6d25.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream.\n\nKanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience.\n\nPlease keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed.\n\nNote: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations.\n", "gpt-4-0314", "2023-06-26T11:46:27", "2023-06-26T11:46:51.996454", "chatcmpl-7VlWFykUwxOhi8CMqDxjakijjrrRj", "openai", "rbtf91s6", 24.996453811999345, 57, 172, 229]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_120_628c0792a073cd9c405c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_120_628c0792a073cd9c405c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..20c8665b037200e182e07be3d5a1c9e1cbeb6458 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_120_628c0792a073cd9c405c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T11:58:48", "2023-06-26T11:58:49.841858", "chatcmpl-7VliCz6tI4VLYqAlF9f6pRo1kCzwn", "openai", "rbtf91s6", 1.84185792199969, 122, 13, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_121_b556a799b6d3b562770d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_121_b556a799b6d3b562770d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3caf24f60196a433df4db84b7e9972ad4a36f003 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_121_b556a799b6d3b562770d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Space Cowboy,3.5g,22.5\n", "gpt-4-0314", "2023-06-26T11:58:51", "2023-06-26T11:58:53.211872", "chatcmpl-7VliF2XEa71nrQyvMdkDdlO2bPdpD", "openai", "rbtf91s6", 2.2118716180002593, 119, 17, 136]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_122_b10f20986ab3c17d78d0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_122_b10f20986ab3c17d78d0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bcd79d87125a520ec8c0639b6f716515548fd8d3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_122_b10f20986ab3c17d78d0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Packed Bud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T11:58:53", "2023-06-26T11:58:56.364528", "chatcmpl-7VliHONcf8Warr2P4HVS4S8Bkakv6", "openai", "rbtf91s6", 3.36452819599981, 139, 16, 155]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_123_ec51ba8e67e34ec07ce2.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_123_ec51ba8e67e34ec07ce2.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4c60ce71f4e38d8acefba6e114cc320790002187 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_123_ec51ba8e67e34ec07ce2.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Mellowz #7,7g,35\n", "gpt-4-0314", "2023-06-26T11:58:57", "2023-06-26T11:58:58.579921", "chatcmpl-7VliLmVXERbzrwGYXPs0AQ60PiEIU", "openai", "rbtf91s6", 1.5799211819994525, 117, 14, 131]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_124_c2c63679dc07c9c48315.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_124_c2c63679dc07c9c48315.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b2e5744e837e9933b4b17a2ef180a3d75886543e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_124_c2c63679dc07c9c48315.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,1\n", "gpt-4-0314", "2023-06-26T11:58:59", "2023-06-26T11:59:01.884846", "chatcmpl-7VliNFfr63Jj1as1Kw6LejymTHfVh", "openai", "rbtf91s6", 2.884845640000094, 127, 23, 150]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_125_4d67abd74b85c3978623.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_125_4d67abd74b85c3978623.table.json new file mode 100644 index 0000000000000000000000000000000000000000..db50782af28aa27004b1966074bb9f94a29df62e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_125_4d67abd74b85c3978623.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,10\n", "gpt-4-0314", "2023-06-26T11:59:03", "2023-06-26T11:59:05.431226", "chatcmpl-7VliRBP9MFlmKx5fYdlDcKq7yRqfd", "openai", "rbtf91s6", 2.4312261879995276, 122, 18, 140]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_126_8815035ed0a50d11f9e3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_126_8815035ed0a50d11f9e3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..38e880815a2ac12de7a64b233901d69316402622 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_126_8815035ed0a50d11f9e3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T11:59:06", "2023-06-26T11:59:08.376427", "chatcmpl-7VliUiTsPS5WaqWETrCibHgpqZ2hw", "openai", "rbtf91s6", 2.3764274689992817, 127, 17, 144]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_127_98fa95995325ab388230.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_127_98fa95995325ab388230.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c72948d575ffb73880ad6b93084d8119c3db1764 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_127_98fa95995325ab388230.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g\n", "gpt-4-0314", "2023-06-26T11:59:09", "2023-06-26T11:59:11.381799", "chatcmpl-7VliX2mW9Mn4DaqV9UJX66RereJdO", "openai", "rbtf91s6", 2.381798388999414, 134, 20, 154]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_128_a77f4efc17f0b058d06b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_128_a77f4efc17f0b058d06b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..185d4136b2de2b1417d8164245703c8dd080bf68 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_128_a77f4efc17f0b058d06b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1.0\n", "gpt-4-0314", "2023-06-26T11:59:11", "2023-06-26T11:59:12.937167", "chatcmpl-7VliZYKs26JplHmoHF2Jm0f1m7Qx9", "openai", "rbtf91s6", 1.9371670350001295, 133, 16, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_129_4ed9178a8330c3b08b77.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_129_4ed9178a8330c3b08b77.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2a1c817691e2c64623a2b900157c0cfc0ea0459e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_129_4ed9178a8330c3b08b77.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pen,Birthday Cake Pod,1g,1\n", "gpt-4-0314", "2023-06-26T11:59:14", "2023-06-26T11:59:15.691454", "chatcmpl-7VlicqYXgzPIlT5wKdSuY9rgHsDjv", "openai", "rbtf91s6", 1.6914543789998788, 122, 16, 138]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_12_418719b4fcd204ed66d8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_12_418719b4fcd204ed66d8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f44e192627493ae35d35b4ff8915d31c56ce761a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_12_418719b4fcd204ed66d8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query.\n\nPlease keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask.\n", "gpt-4-0314", "2023-06-26T11:46:53", "2023-06-26T11:47:06.951314", "chatcmpl-7VlWfotzgSyf5AuaAuhvkLIpnJLkn", "openai", "rbtf91s6", 13.951314044000355, 51, 102, 153]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_130_691215590d7f6b91716f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_130_691215590d7f6b91716f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5f3f3478c81ad6b19d5c59c4210616945c6fd35f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_130_691215590d7f6b91716f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g\n", "gpt-4-0314", "2023-06-26T11:59:16", "2023-06-26T11:59:21.232802", "chatcmpl-7Vliep8zQeEMRDi84fuOjmqeklGjQ", "openai", "rbtf91s6", 5.23280159100068, 124, 20, 144]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_131_abafdaca35ad3cbbc1f4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_131_abafdaca35ad3cbbc1f4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2a33e6fbda6fafaf0563b74e54c3b8ca55c45bba --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_131_abafdaca35ad3cbbc1f4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Gummies,Nano Blood Orange Bliss,Indica,100mg\n", "gpt-4-0314", "2023-06-26T11:59:21", "2023-06-26T11:59:23.179755", "chatcmpl-7VlijGnypcBrPs8HjV0MFRAQgaYVX", "openai", "rbtf91s6", 2.1797548040003676, 125, 16, 141]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_132_1b1d305dd76406f7892d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_132_1b1d305dd76406f7892d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d4fb7d9b926ba0e5238736ad0d4fc968b649ffb8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_132_1b1d305dd76406f7892d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Indoor,BOBBI HYLL,3.5\n", "gpt-4-0314", "2023-06-26T11:59:24", "2023-06-26T11:59:27.657098", "chatcmpl-7VlimPRRjNQLdZK2IxiiUn6bBNi59", "openai", "rbtf91s6", 3.65709766100008, 119, 19, 138]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_133_f361f1a227a995a53d59.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_133_f361f1a227a995a53d59.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e328ddb8f9552932b427340c461bfa39afe06ea0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_133_f361f1a227a995a53d59.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg,10\n", "gpt-4-0314", "2023-06-26T11:59:28", "2023-06-26T11:59:29.577152", "chatcmpl-7VliqdeGnzmlmJw2svNOeVYRajmLw", "openai", "rbtf91s6", 1.5771525559994188, 119, 15, 134]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_134_e1b18ecf40d44907460d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_134_e1b18ecf40d44907460d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ece310b51d52d376950f2515513a94e504b84893 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_134_e1b18ecf40d44907460d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.0\n", "gpt-4-0314", "2023-06-26T11:59:30", "2023-06-26T11:59:32.740048", "chatcmpl-7VlisFMqgF5lxex7WmkLKp3wQdGht", "openai", "rbtf91s6", 2.7400477780001893, 114, 18, 132]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_135_a7c9df5dc208265eb02e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_135_a7c9df5dc208265eb02e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9629a31cf63b2dc38e60331fb70c09be1ea59358 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_135_a7c9df5dc208265eb02e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Joint,Indoor,Emerald Cut,1g\n", "gpt-4-0314", "2023-06-26T11:59:34", "2023-06-26T11:59:36.290405", "chatcmpl-7Vliw7EoL5JdvoSEdVDPF57G8pF2m", "openai", "rbtf91s6", 2.290405349000139, 121, 15, 136]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_136_8145a4f91636eaed5a7c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_136_8145a4f91636eaed5a7c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..edb2ef89fd903f74416224c0bc43c575613af065 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_136_8145a4f91636eaed5a7c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Indoor,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T11:59:36", "2023-06-26T11:59:37.771365", "chatcmpl-7Vliyk6hTgh8bEK1x7T6A0JMZxjV8", "openai", "rbtf91s6", 1.7713649150000492, 119, 17, 136]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_137_e22dd322414314205041.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_137_e22dd322414314205041.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a9e0c837155529225d40e1fdd2d9a655e95d5d5b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_137_e22dd322414314205041.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flowers,Blue Dream,14g,Shake\n", "gpt-4-0314", "2023-06-26T11:59:39", "2023-06-26T11:59:40.367628", "chatcmpl-7Vlj1sDqSCzUbaKBn2yiHuMxVt1Dc", "openai", "rbtf91s6", 1.3676283919994603, 115, 14, 129]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_138_df4b268dc2861f0719f6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_138_df4b268dc2861f0719f6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..de3f4d5acf86594b3b94bd0bd29635fb70ee69d5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_138_df4b268dc2861f0719f6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5\n", "gpt-4-0314", "2023-06-26T11:59:40", "2023-06-26T11:59:45.020009", "chatcmpl-7Vlj2EY8pzIL8Au6brzI3SbPd5dsf", "openai", "rbtf91s6", 5.020008636000057, 129, 24, 153]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_139_55871ebf5f66486f552b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_139_55871ebf5f66486f552b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6f4318fb05471f9a91e34d2802417328f1b34f02 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_139_55871ebf5f66486f552b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edibles,S'mores Gummies,100mg THC,10 count\n", "gpt-4-0314", "2023-06-26T11:59:46", "2023-06-26T11:59:48.366078", "chatcmpl-7Vlj8ykrnkUgWJUGzwU8wYoLkC06i", "openai", "rbtf91s6", 2.3660776040005658, 125, 18, 143]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_13_68f7c0a98ede73178343.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_13_68f7c0a98ede73178343.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ca727040737b8d8d8e919f750e8e88ba2bc17be5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_13_68f7c0a98ede73178343.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC.\n\nPlease note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues.\n", "gpt-4-0314", "2023-06-26T11:47:07", "2023-06-26T11:47:21.824289", "chatcmpl-7VlWtd8NCtmPk0H3IZrlBrZYCoPNu", "openai", "rbtf91s6", 14.824288972999966, 51, 168, 219]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_140_f285799eb375a7e7a7ce.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_140_f285799eb375a7e7a7ce.table.json new file mode 100644 index 0000000000000000000000000000000000000000..81040beebc301e835942a1a317fb2da39780ef4d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_140_f285799eb375a7e7a7ce.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Edible,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T11:59:49", "2023-06-26T11:59:50.940181", "chatcmpl-7VljByrbQShlRvfq2HXAAQYJDzSIz", "openai", "rbtf91s6", 1.9401808689999598, 181, 16, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_141_7bfa93d6804e61e3b2de.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_141_7bfa93d6804e61e3b2de.table.json new file mode 100644 index 0000000000000000000000000000000000000000..df85891763be26e5e1bfaaae7a7dae06211e040f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_141_7bfa93d6804e61e3b2de.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T11:59:51", "2023-06-26T11:59:52.513537", "chatcmpl-7VljDRU8fgq6wrtiiaD0kMhFJRjyJ", "openai", "rbtf91s6", 1.5135374319997936, 178, 14, 192]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_142_6447d7d225e5bf283b6f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_142_6447d7d225e5bf283b6f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e5949f4e2d9cf9949878adb621ae7538d26fa306 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_142_6447d7d225e5bf283b6f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Packed Bud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T11:59:53", "2023-06-26T11:59:56.686004", "chatcmpl-7VljFJmNOgrvJOHBRzDCKlIQ3tBUC", "openai", "rbtf91s6", 3.6860040510000545, 198, 16, 214]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_143_42620c3873c60bb3e458.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_143_42620c3873c60bb3e458.table.json new file mode 100644 index 0000000000000000000000000000000000000000..16a94a7322a57db7378eed4b140d3bfe4beb8a71 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_143_42620c3873c60bb3e458.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T11:59:57", "2023-06-26T11:59:58.550768", "chatcmpl-7VljJD9japaHWITC9oL7HQs2diqEj", "openai", "rbtf91s6", 1.5507680509999773, 176, 13, 189]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_144_23cb9469dd1acd512418.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_144_23cb9469dd1acd512418.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5e27fc012b3212b20f179f2aff35ef0d215cb3dc --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_144_23cb9469dd1acd512418.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-\n", "gpt-4-0314", "2023-06-26T11:59:59", "2023-06-26T12:00:01.147782", "chatcmpl-7VljLdgQH7H4rApUIWTsvvP6u3OQJ", "openai", "rbtf91s6", 2.147782310000366, 186, 22, 208]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_145_7f63628d01bb83cb0445.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_145_7f63628d01bb83cb0445.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a2344d462add8ebd69b1750fc2a535de127b3706 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_145_7f63628d01bb83cb0445.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0\n", "gpt-4-0314", "2023-06-26T12:00:02", "2023-06-26T12:00:03.922715", "chatcmpl-7VljOv2Zkf244KrCAcvHUwQ94P5gD", "openai", "rbtf91s6", 1.9227147720002904, 181, 18, 199]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_146_9fa1df0916e061d46e10.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_146_9fa1df0916e061d46e10.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ceed40ff437b6179c0147c5692c758287ba9f86e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_146_9fa1df0916e061d46e10.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,2.5\n", "gpt-4-0314", "2023-06-26T12:00:04", "2023-06-26T12:00:06.554073", "chatcmpl-7VljQHH7PdQAN6WK2cQvykwjkJ7J2", "openai", "rbtf91s6", 2.5540733469997576, 186, 17, 203]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_147_321ad0984abe5cca9e4f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_147_321ad0984abe5cca9e4f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1a74d00665d60cfbcdd82541fabacd8fd9cc1be9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_147_321ad0984abe5cca9e4f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T12:00:07", "2023-06-26T12:00:09.923144", "chatcmpl-7VljT7JMC9YD5fXI61A53rUoiO9pR", "openai", "rbtf91s6", 2.923144203999982, 193, 19, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_148_7c8c79e04e69f71da573.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_148_7c8c79e04e69f71da573.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0b995b24c70b61a7955940f3388b448ffb3844ba --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_148_7c8c79e04e69f71da573.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1.0\n", "gpt-4-0314", "2023-06-26T12:00:11", "2023-06-26T12:00:12.980197", "chatcmpl-7VljXoUQj2olDKd1k8fSg3N3l5E7G", "openai", "rbtf91s6", 1.9801974860001792, 192, 16, 208]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_149_5750bfe7c03f1658358f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_149_5750bfe7c03f1658358f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3b913a91c6d720ec5f38c627400c7b145435f1c5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_149_5750bfe7c03f1658358f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pod,Birthday Cake,1g,1.0\n", "gpt-4-0314", "2023-06-26T12:00:13", "2023-06-26T12:00:14.963461", "chatcmpl-7VljZAJ2TkEhl6n2WhYv9UNW70YkC", "openai", "rbtf91s6", 1.963460787999793, 181, 17, 198]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_14_bb777ba02309870e1875.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_14_bb777ba02309870e1875.table.json new file mode 100644 index 0000000000000000000000000000000000000000..86cb4308276355b77bfcd82f4f8d30d2b8160a8d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_14_bb777ba02309870e1875.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given.\n\nCherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain.\n\nLeft Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices.\n\nNote that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption.\n", "gpt-4-0314", "2023-06-26T11:47:22", "2023-06-26T11:47:46.602410", "chatcmpl-7VlX8KXwc6wk9318ToBIcIM4ojV5N", "openai", "rbtf91s6", 24.602409491999424, 46, 200, 246]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_150_1176976773bbd1fe05da.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_150_1176976773bbd1fe05da.table.json new file mode 100644 index 0000000000000000000000000000000000000000..22378368ee39af6ec793f1d33c9c0a4d07b7ac84 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_150_1176976773bbd1fe05da.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1\n", "gpt-4-0314", "2023-06-26T12:00:15", "2023-06-26T12:00:16.973409", "chatcmpl-7VljbQ0pvGPi6XAEmMF4EfpoO2lG2", "openai", "rbtf91s6", 1.9734088859995609, 183, 19, 202]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_151_3c3191067cc9ef83a428.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_151_3c3191067cc9ef83a428.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c866a6599731147b038bfa9a6cd822195ec809f9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_151_3c3191067cc9ef83a428.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg\n", "gpt-4-0314", "2023-06-26T12:00:18", "2023-06-26T12:00:19.790120", "chatcmpl-7Vlje9PbATUirYEHS48z7JaymafW5", "openai", "rbtf91s6", 1.790120202000253, 184, 17, 201]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_152_199b61b72b5eb3437656.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_152_199b61b72b5eb3437656.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0a2e845fcac4c416598323946729f7b651e96e0c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_152_199b61b72b5eb3437656.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Bud,Bobbi Hyll,3.5\n", "gpt-4-0314", "2023-06-26T12:00:20", "2023-06-26T12:00:21.780620", "chatcmpl-7Vljg0ErIOYZcPInz7dprK92Cu9b3", "openai", "rbtf91s6", 1.7806196949995865, 178, 17, 195]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_153_2c84797a4d9859965b22.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_153_2c84797a4d9859965b22.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7376762e16a0fbd2a246ca7e19886ffe5e0797c8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_153_2c84797a4d9859965b22.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummies,Blueberry Belts,100mg\n", "gpt-4-0314", "2023-06-26T12:00:22", "2023-06-26T12:00:23.504338", "chatcmpl-7VljicdOfptlB2ctyv7bCaExDCUtb", "openai", "rbtf91s6", 1.5043381420000514, 178, 15, 193]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_154_0ecf1e381459de11b2d5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_154_0ecf1e381459de11b2d5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..90793f35e4b625df431540ad59893d27be9281f9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_154_0ecf1e381459de11b2d5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape,Pod,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T12:00:24", "2023-06-26T12:00:25.650895", "chatcmpl-7VljkY8u8Nn7nCmAxJfWqL4bcsKs7", "openai", "rbtf91s6", 1.650894917000187, 173, 14, 187]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_155_d0d3e0c7a5b9d9fdd3e4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_155_d0d3e0c7a5b9d9fdd3e4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..85713b55d0e0d973f6c1ba1212e24cc27727e9fb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_155_d0d3e0c7a5b9d9fdd3e4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T12:00:27", "2023-06-26T12:00:29.049000", "chatcmpl-7VljnhyTGsoJv9igeCyHb4NiY0Dps", "openai", "rbtf91s6", 2.0489995970001473, 180, 15, 195]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_156_243fd50f6caa6c821e9e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_156_243fd50f6caa6c821e9e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4562280c1c652a8a15a9ef1ad9ad8581a2e0ab6b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_156_243fd50f6caa6c821e9e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Indoor,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T12:00:30", "2023-06-26T12:00:32.843407", "chatcmpl-7VljqVGfj8pSz2NT6OcykqamMrEcD", "openai", "rbtf91s6", 2.8434072959998957, 178, 17, 195]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_157_8cb4502147e374945344.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_157_8cb4502147e374945344.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cf8e2589e70472607f995d775372ed9bd112c5c5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_157_8cb4502147e374945344.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Shake,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T12:00:33", "2023-06-26T12:00:34.576545", "chatcmpl-7VljtubhgExlZbRQ2wgGj32B2musv", "openai", "rbtf91s6", 1.5765450220005732, 174, 13, 187]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_158_5799b1ba7e11f9d1e7f7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_158_5799b1ba7e11f9d1e7f7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a0d8b8a5399af9a44bcf96b611f6ab4f872d3e95 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_158_5799b1ba7e11f9d1e7f7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Multi Joint, Zoo Dawg x Cosa Nostra,2.5\n", "gpt-4-0314", "2023-06-26T12:00:35", "2023-06-26T12:00:37.805007", "chatcmpl-7VljvvP0Bg1pZcO3gK9TIF0l2At8j", "openai", "rbtf91s6", 2.8050072890000592, 188, 24, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_159_d21972db59d11b9e8791.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_159_d21972db59d11b9e8791.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fda5c932f6d1938ecf2a8e46b36bfc5f9adce91b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_159_d21972db59d11b9e8791.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummies,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T12:00:38", "2023-06-26T12:00:39.877493", "chatcmpl-7VljyEIcGxYQMgX7ZTMAsG6cGzirs", "openai", "rbtf91s6", 1.8774925600000643, 184, 14, 198]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_15_34f2ec891099eed865f6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_15_34f2ec891099eed865f6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f9cb710ff2bb1902d7dedc11c157a45f54ad17e1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_15_34f2ec891099eed865f6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! It looks like you're referring to a product called \"Emerald Cut\" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!\n", "gpt-4-0314", "2023-06-26T11:47:47", "2023-06-26T11:47:53.677075", "chatcmpl-7VlXXkro3sjQ0GB7HZyiISgMALe12", "openai", "rbtf91s6", 6.6770753999999215, 53, 70, 123]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_160_da10924b925e82916ceb.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_160_da10924b925e82916ceb.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7087568ec691573a32076eaf3db262320cc8b478 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_160_da10924b925e82916ceb.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Edible,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T12:00:41", "2023-06-26T12:00:42.694317", "chatcmpl-7Vlk1PbLT1wJoEfSBVcMXy1tA7H4g", "openai", "rbtf91s6", 1.6943166780001775, 260, 16, 276]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_161_3e85127c97e229643d73.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_161_3e85127c97e229643d73.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b2029dea5a7e30b29b17010b129c12a408809c7a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_161_3e85127c97e229643d73.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T12:00:43", "2023-06-26T12:00:44.817891", "chatcmpl-7Vlk3imR8keC7UmUJjVoQQkPBYuFE", "openai", "rbtf91s6", 1.8178911540007903, 257, 14, 271]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_162_ce827a4e2c776492c9a3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_162_ce827a4e2c776492c9a3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..76d5f9b6e0bcc11e52428e2fd2ad4b1f39874656 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_162_ce827a4e2c776492c9a3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,PackedBud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T12:00:45", "2023-06-26T12:00:47.296586", "chatcmpl-7Vlk5x6JuvcWPz376AWNQduQepkCV", "openai", "rbtf91s6", 2.296586094000304, 277, 17, 294]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_163_e1f911b20b26002131ce.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_163_e1f911b20b26002131ce.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ef9865e41302bfa9e1fcee5fa452a5c6b902164e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_163_e1f911b20b26002131ce.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T12:00:48", "2023-06-26T12:00:51.970335", "chatcmpl-7Vlk8rk2Pba3qeb6ab3YXn8wVhCyn", "openai", "rbtf91s6", 3.9703351900006965, 255, 13, 268]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_164_fcc5ec3f93c4e6c310c7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_164_fcc5ec3f93c4e6c310c7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..671bba21f38d7234e9fa9dd33b175237ebdc7a1e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_164_fcc5ec3f93c4e6c310c7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg\n", "gpt-4-0314", "2023-06-26T12:00:52", "2023-06-26T12:00:56.112129", "chatcmpl-7VlkCVD6FqPp4IHqhQQLiPGKT7E9h", "openai", "rbtf91s6", 4.112128638000286, 265, 21, 286]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_165_bcf8a767815b90feb001.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_165_bcf8a767815b90feb001.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9c54e4b55d1f6805d4bed0873fb12cec67aabf3c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_165_bcf8a767815b90feb001.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1\n", "gpt-4-0314", "2023-06-26T12:00:57", "2023-06-26T12:00:58.873591", "chatcmpl-7VlkHBSeCX2ygXl0ZiuluRaMDKuWJ", "openai", "rbtf91s6", 1.873591263999515, 260, 16, 276]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_166_8363dbdf0f48f8136608.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_166_8363dbdf0f48f8136608.table.json new file mode 100644 index 0000000000000000000000000000000000000000..933d13b6aad11123921ebf8d5be440812bc0e8c6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_166_8363dbdf0f48f8136608.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,2.5\n", "gpt-4-0314", "2023-06-26T12:00:59", "2023-06-26T12:01:01.002472", "chatcmpl-7VlkJDsg4hse7aZyfcQi71lSiljtl", "openai", "rbtf91s6", 2.0024717049991523, 265, 17, 282]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_167_a268d634cc82aa80efbd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_167_a268d634cc82aa80efbd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fb62cccce54443915d0ec621f125c872826834f3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_167_a268d634cc82aa80efbd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T12:01:02", "2023-06-26T12:01:04.474600", "chatcmpl-7VlkMziOvxpXjKiTZezppjz2l3bnF", "openai", "rbtf91s6", 2.4746002069996393, 272, 19, 291]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_168_666aefd6b17253711c0b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_168_666aefd6b17253711c0b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9ffd139e1519b7fc43d9218e825cf630e67646ef --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_168_666aefd6b17253711c0b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-4-0314", "2023-06-26T12:01:05", "2023-06-26T12:01:07.096342", "chatcmpl-7VlkPh8OiBGBIDiz1bAbkTr9pX2Od", "openai", "rbtf91s6", 2.096341958999801, 271, 14, 285]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_169_82db4a2e527a8dc0caf6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_169_82db4a2e527a8dc0caf6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d6c0cc213c6a5ef64f1884da87f4938a2a5aeab9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_169_82db4a2e527a8dc0caf6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pen,Pod,Birthday Cake,1\n", "gpt-4-0314", "2023-06-26T12:01:13", "2023-06-26T12:01:14.686209", "chatcmpl-7VlkXomsuxQm23eIS62hmPMkdHOAY", "openai", "rbtf91s6", 1.6862091359998885, 260, 14, 274]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_16_bf56551e84a010aa3516.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_16_bf56551e84a010aa3516.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ab147c44cb9418834148886de9d72842914edeaf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_16_bf56551e84a010aa3516.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. \n\nTo better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing).\n", "gpt-4-0314", "2023-06-26T11:47:55", "2023-06-26T11:48:07.265403", "chatcmpl-7VlXftcrR17dE2oYMfQ4uXdur9c0L", "openai", "rbtf91s6", 12.265402844999699, 51, 103, 154]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_170_8bd9e7fd3cde47058123.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_170_8bd9e7fd3cde47058123.table.json new file mode 100644 index 0000000000000000000000000000000000000000..64e98231377f04de2f9b0277094205b61d4358f2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_170_8bd9e7fd3cde47058123.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1\n", "gpt-4-0314", "2023-06-26T12:01:16", "2023-06-26T12:01:18.456912", "chatcmpl-7VlkaGsM2mwkTpGHEOJmzBiaq7mA3", "openai", "rbtf91s6", 2.456911950000176, 262, 19, 281]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_171_7b00ae5b9d06416e6c5b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_171_7b00ae5b9d06416e6c5b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..91f123838cd9163317b2cf6a22c5cdb13554a1c1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_171_7b00ae5b9d06416e6c5b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg\n", "gpt-4-0314", "2023-06-26T12:01:18", "2023-06-26T12:01:20.713786", "chatcmpl-7VlkcuQZAbnixTm0GXm0wVtKyjm6K", "openai", "rbtf91s6", 2.7137858139994933, 263, 17, 280]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_172_4db3123a25745924ab59.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_172_4db3123a25745924ab59.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ab2839aa2fe668e8c35aef10acdf84a951ca1419 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_172_4db3123a25745924ab59.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Indoor,Bobbi Hyll,3.5\n", "gpt-4-0314", "2023-06-26T12:01:22", "2023-06-26T12:01:24.151477", "chatcmpl-7Vlkgc1DEvtvmhapE5d7xfiUfhjQA", "openai", "rbtf91s6", 2.1514770060002775, 257, 18, 275]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_173_64c6b2181f11a494744e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_173_64c6b2181f11a494744e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..82644a272ea6143c9e5267601998a1fc58ea30e2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_173_64c6b2181f11a494744e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummies,Blueberry Belts,100mg\n", "gpt-4-0314", "2023-06-26T12:01:24", "2023-06-26T12:01:27.129584", "chatcmpl-7VlkiwDqLqycRAu0apWum5v0hcyER", "openai", "rbtf91s6", 3.129583756000102, 257, 15, 272]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_174_c00fb75efcf8047d5768.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_174_c00fb75efcf8047d5768.table.json new file mode 100644 index 0000000000000000000000000000000000000000..32b540b2e1445b2151e070e5ea517161d368da0d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_174_c00fb75efcf8047d5768.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape,Pod,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T12:01:28", "2023-06-26T12:01:29.731091", "chatcmpl-7VlkmGWOVU3XCMQf6XkZPeJ8aT9w5", "openai", "rbtf91s6", 1.7310914649997358, 252, 14, 266]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_175_abb9e64b02e0768d06e6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_175_abb9e64b02e0768d06e6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..88c9e4d853d9f5b39dab581632610e4ee1558897 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_175_abb9e64b02e0768d06e6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Joint,Indoor,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T12:01:30", "2023-06-26T12:01:31.745778", "chatcmpl-7VlkovvCGalAUyW1qBhrdpbMwTjfy", "openai", "rbtf91s6", 1.7457783010004277, 259, 14, 273]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_176_35420adbdff666989729.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_176_35420adbdff666989729.table.json new file mode 100644 index 0000000000000000000000000000000000000000..adf85d435b322022f0805269ea94cf6ca85f2857 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_176_35420adbdff666989729.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Indoor,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T12:01:32", "2023-06-26T12:01:34.105635", "chatcmpl-7Vlkq1sH3Iv9cpJn0Rb60uC0HKuYn", "openai", "rbtf91s6", 2.1056346029999986, 257, 17, 274]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_177_92a7ed71977bc189bee5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_177_92a7ed71977bc189bee5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a3773c68e29e6a1f3ed2f73d87cb2d637e7f38f6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_177_92a7ed71977bc189bee5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Shake,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T12:01:35", "2023-06-26T12:01:37.014271", "chatcmpl-7VlktWZ3hrCeplcRonmgVZHdEJDKQ", "openai", "rbtf91s6", 2.014271103000283, 253, 13, 266]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_178_451a52f3828954fc495f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_178_451a52f3828954fc495f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a6622bbd06b9c032f4175aade8048257a8a755f1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_178_451a52f3828954fc495f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5\n", "gpt-4-0314", "2023-06-26T12:01:37", "2023-06-26T12:01:39.555098", "chatcmpl-7VlkvZVmne5BbGbs7ykBxjMKxKDWi", "openai", "rbtf91s6", 2.5550982190006835, 267, 23, 290]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_179_5007a67a4010c8bbd255.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_179_5007a67a4010c8bbd255.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0be27818d86c576351bd9bc56b091e0e53c6da1b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_179_5007a67a4010c8bbd255.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummy,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T12:01:40", "2023-06-26T12:01:41.807917", "chatcmpl-7VlkyyJw0I76ivg8qjOyXGsSSyTkV", "openai", "rbtf91s6", 1.8079171170002155, 263, 14, 277]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_17_6d2199f6da063394d6c4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_17_6d2199f6da063394d6c4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1e60f61661b20f47e90d78b6cccddb1d13a8c7c7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_17_6d2199f6da063394d6c4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages.\n", "gpt-4-0314", "2023-06-26T11:48:07", "2023-06-26T11:48:19.316083", "chatcmpl-7VlXr7crz27aAVL4K1s8oCsKJECTF", "openai", "rbtf91s6", 12.31608289199994, 47, 123, 170]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_180_5ccaef3975e9d27fa3ca.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_180_5ccaef3975e9d27fa3ca.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7b3e8f39c811f85cb8b735991328654e5ad33119 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_180_5ccaef3975e9d27fa3ca.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Edible,Syrup,Watermelon,250\n", "gpt-4-0314", "2023-06-26T12:01:43", "2023-06-26T12:01:44.833079", "chatcmpl-7Vll1DvBL0A0ts3AEJcNfCgHovJP1", "openai", "rbtf91s6", 1.8330785179996383, 377, 15, 392]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_181_5ee427bd54a09bbf1ed8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_181_5ee427bd54a09bbf1ed8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c57511160eac9ef4930193ef2b0e1e36c8e5c8c0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_181_5ee427bd54a09bbf1ed8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T12:01:45", "2023-06-26T12:01:46.849386", "chatcmpl-7Vll3csvkhvpAa2ResYr2W8rKDwxh", "openai", "rbtf91s6", 1.8493857120001849, 374, 14, 388]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_182_43107d8f32570ab192ef.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_182_43107d8f32570ab192ef.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9d5345d2e57094bd44050009da7da8d2021d5a1c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_182_43107d8f32570ab192ef.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Bud,Xclusivo,7\n", "gpt-4-0314", "2023-06-26T12:01:47", "2023-06-26T12:01:48.581664", "chatcmpl-7Vll5A9U2sba6AZMtdV2OY12rVnFR", "openai", "rbtf91s6", 1.581663601999935, 394, 13, 407]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_183_22f2b576d629037002d6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_183_22f2b576d629037002d6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b2cf97a405d2e9a8aed2885674614bab0da5eb95 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_183_22f2b576d629037002d6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T12:01:49", "2023-06-26T12:01:50.745600", "chatcmpl-7Vll7b5BHHNc7vY7cd2rvivGi3F1c", "openai", "rbtf91s6", 1.7456005020003431, 372, 13, 385]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_184_cc4488f72330c7d934bd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_184_cc4488f72330c7d934bd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0dc05b9225084d21884583642e6f6ac4c630ce80 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_184_cc4488f72330c7d934bd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Syrup,Bubblegum Gelato,1000mg\n", "gpt-4-0314", "2023-06-26T12:01:52", "2023-06-26T12:01:56.691308", "chatcmpl-7VllA4Lkk5ldVn9D3YjZkXRshGv2A", "openai", "rbtf91s6", 4.69130841399965, 382, 20, 402]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_185_9fc0605e3529b3df76c3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_185_9fc0605e3529b3df76c3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..46d4ace90b4504016302eea5624b76cc26048ad0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_185_9fc0605e3529b3df76c3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Diamonds,Pink Lemonade,1\n", "gpt-4-0314", "2023-06-26T12:01:57", "2023-06-26T12:01:59.434266", "chatcmpl-7VllF0QEVMJcNL2Gay5nLYMyHzfU3", "openai", "rbtf91s6", 2.434265812999911, 377, 15, 392]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_186_3a11dadd4c2e6dc784a8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_186_3a11dadd4c2e6dc784a8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..55433e188d2c6822a670f8002d2d7c2ba812b759 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_186_3a11dadd4c2e6dc784a8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T12:02:00", "2023-06-26T12:02:02.543172", "chatcmpl-7VllI7K9Yq6DILdc8qoYgjQbDoYTE", "openai", "rbtf91s6", 2.543172314000003, 382, 17, 399]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_187_4d74644b57018a56245e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_187_4d74644b57018a56245e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..67c68ec699fdc2167d6dfd03f53df9beaea46bcf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_187_4d74644b57018a56245e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T12:02:02", "2023-06-26T12:02:04.790234", "chatcmpl-7VllK2qJtrOhvNG6Ot5ntvwiKNvMV", "openai", "rbtf91s6", 2.7902343140003723, 389, 19, 408]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_188_906ccd104cbf0935d16b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_188_906ccd104cbf0935d16b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..16354d39a977f3e12a9d3021052f32c1558552c0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_188_906ccd104cbf0935d16b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-4-0314", "2023-06-26T12:02:06", "2023-06-26T12:02:08.212742", "chatcmpl-7VllORh0nSEdaFCWnTWxUdvexllCk", "openai", "rbtf91s6", 2.212741611000638, 388, 14, 402]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_189_7c8bd4a433d21fa008bc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_189_7c8bd4a433d21fa008bc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..54389fe913808dad29281065ac7e36ac7f760ea1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_189_7c8bd4a433d21fa008bc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape,Vape Pen,Birthday Cake,1\n", "gpt-4-0314", "2023-06-26T12:02:08", "2023-06-26T12:02:09.494618", "chatcmpl-7VllQmgxfKAqxYBkSaF0ptF3gfZ49", "openai", "rbtf91s6", 1.4946183080000992, 377, 14, 391]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_18_e121715ad2889a696cfc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_18_e121715ad2889a696cfc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..039befc059e8c5efe7ad79f8902454324cc2ea3d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_18_e121715ad2889a696cfc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are interested in \"The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g.\" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts.\n\nPlease make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age.\n", "gpt-4-0314", "2023-06-26T11:48:20", "2023-06-26T11:48:34.214053", "chatcmpl-7VlY4RqaZM2pR5Ef98RaucGy4ronu", "openai", "rbtf91s6", 14.21405338400018, 61, 139, 200]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_190_ed927a318ce8d2a08064.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_190_ed927a318ce8d2a08064.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ccb59f1362a0715bfbe73de14ae62a4593d9871f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_190_ed927a318ce8d2a08064.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1\n", "gpt-4-0314", "2023-06-26T12:02:11", "2023-06-26T12:02:13.431382", "chatcmpl-7VllTNrhjGgszwqYkFxKXvcmogzdq", "openai", "rbtf91s6", 2.431381691999377, 379, 20, 399]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_191_5e95d9398a73c1fd1671.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_191_5e95d9398a73c1fd1671.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c5f5bcdf7b57e02b81f9db041c916201dd5fdd80 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_191_5e95d9398a73c1fd1671.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Edible,Gummy,Blood Orange Bliss,100mg\n", "gpt-4-0314", "2023-06-26T12:02:13", "2023-06-26T12:02:14.799717", "chatcmpl-7VllVbI6pbsvjtw96LiAswF8Y4jGI", "openai", "rbtf91s6", 1.7997174930005713, 380, 15, 395]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_192_1a13826c11a348a22ba1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_192_1a13826c11a348a22ba1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c28d33a96ba82912fd5f737c94832121ea6ab410 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_192_1a13826c11a348a22ba1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Bud,BOBBI HYLL,3.5\n", "gpt-4-0314", "2023-06-26T12:02:15", "2023-06-26T12:02:18.221418", "chatcmpl-7VllXZRSodO5rCH4nB10PmmSPACpp", "openai", "rbtf91s6", 3.2214180049995775, 374, 18, 392]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_193_4d0a631832192a850872.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_193_4d0a631832192a850872.table.json new file mode 100644 index 0000000000000000000000000000000000000000..22e0601917280ca8b67a84b4371281a780390698 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_193_4d0a631832192a850872.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummies,Blueberry Belts,100mg\n", "gpt-4-0314", "2023-06-26T12:02:19", "2023-06-26T12:02:23.038883", "chatcmpl-7Vllb7kTSrTFem3WqByL4QHnpHNKb", "openai", "rbtf91s6", 4.038883035999788, 374, 15, 389]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_194_b063d331d456f58f7837.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_194_b063d331d456f58f7837.table.json new file mode 100644 index 0000000000000000000000000000000000000000..dd8d36be83652d67a4967960dc0c1628e3733ccd --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_194_b063d331d456f58f7837.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape Cartridge,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T12:02:24", "2023-06-26T12:02:25.423690", "chatcmpl-7VllgbebCkBE5a58pP1rouXYcy7Vc", "openai", "rbtf91s6", 1.4236900480000259, 369, 14, 383]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_195_41ea3364566c231831bc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_195_41ea3364566c231831bc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..846084d74d9c4d70b5e1a5fdda35329ba03d7754 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_195_41ea3364566c231831bc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T12:02:29", "2023-06-26T12:02:34.678818", "chatcmpl-7VlllgiYvYUOiy7Q1tqf9lRnjUAbS", "openai", "rbtf91s6", 5.678818184000193, 376, 15, 391]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_196_71770262335b11f706bb.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_196_71770262335b11f706bb.table.json new file mode 100644 index 0000000000000000000000000000000000000000..64397064b8a2d04527c0e4542c6e50c2cd76410d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_196_71770262335b11f706bb.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Bud,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T12:02:32", "2023-06-26T12:02:36.292496", "chatcmpl-7Vlloe2pmdpMA3jZZywPQkOZUH7S8", "openai", "rbtf91s6", 4.2924956090000705, 374, 16, 390]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_197_e664ac2a71396f5718d4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_197_e664ac2a71396f5718d4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f01919b1522738d5f1383f559d9a99742dfc7eeb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_197_e664ac2a71396f5718d4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Shake,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T12:02:36", "2023-06-26T12:02:37.924698", "chatcmpl-7VllsM5xFpcq0xBahUUAcfYW4NCG7", "openai", "rbtf91s6", 1.9246976769991306, 370, 13, 383]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_198_d808b0fe35846e1ce349.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_198_d808b0fe35846e1ce349.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d8d9a7dadb4622f9f019ae988d7de93a96b55602 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_198_d808b0fe35846e1ce349.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5\n", "gpt-4-0314", "2023-06-26T12:02:44", "2023-06-26T12:02:46.729790", "chatcmpl-7Vlm0MO0ePLlU58nFwT9TSG031msg", "openai", "rbtf91s6", 2.7297898899996653, 384, 24, 408]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_199_b1c2d36a5a314cbead21.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_199_b1c2d36a5a314cbead21.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5ada18ec4c762381de20f8bcfed13183b9c2cf8d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_199_b1c2d36a5a314cbead21.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummies,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T12:02:47", "2023-06-26T12:02:48.591907", "chatcmpl-7Vlm3o32pqYicNDKIz0FBxs41gPjX", "openai", "rbtf91s6", 1.5919065949992728, 380, 14, 394]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_19_93b9e5ad0072d4b51903.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_19_93b9e5ad0072d4b51903.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b848ec50c7d99b339fab4413f27a22628fbe23c6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_19_93b9e5ad0072d4b51903.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview:\n\nProduct: Flight Bites - S'mores Gummy\nQuantity: 10 count\nTotal THC content: 100mg\n\nUnfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask.\n", "gpt-4-0314", "2023-06-26T11:48:35", "2023-06-26T11:48:48.422193", "chatcmpl-7VlYJNqDbwyZeHGVFfVdvfr1synGQ", "openai", "rbtf91s6", 13.4221926729997, 57, 92, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_1_385dae82fabe9ae85366.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_1_385dae82fabe9ae85366.table.json new file mode 100644 index 0000000000000000000000000000000000000000..66ee97db4b90b9992ab912479c99ae0e6b5b203b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_1_385dae82fabe9ae85366.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are referring to a product called \"Feelz - Space Cowboy 3.5g.\" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of \"FLOWERS 3.5G\".\n\nPlease note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question.\n\nIf you have any other questions or need assistance with a different topic, feel free to ask!\n", "gpt-4-0314", "2023-06-26T11:44:01", "2023-06-26T11:44:16.423761", "chatcmpl-7VlTtGF3RGsngfKB1BXufxoTixX2v", "openai", "rbtf91s6", 15.423761106000711, 51, 117, 168]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_200_aec7fbfbbb852777de36.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_200_aec7fbfbbb852777de36.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aca7a62f9299375c8010a1ab94db09ac7bf2b8de --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_200_aec7fbfbbb852777de36.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:02:49", "2023-06-26T12:02:50.868551", "chatcmpl-7Vlm5umJjq0WJ5qnUkdRBaN312IXY", "openai", "rbtf91s6", 1.8685509799997817, 56, 40, 96]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_201_4f1e5067e78d45ade9d4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_201_4f1e5067e78d45ade9d4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cd0339730f4b885886554c45a9fc4c1a5a599749 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_201_4f1e5067e78d45ade9d4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items:\n\n- Feelz - Space Cowboy 3.5g\n- FLOWERS 3.5G\n\nhas been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value.\n\nThank you for choosing our service and we hope you enjoy your order!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:02:51", "2023-06-26T12:02:54.852658", "chatcmpl-7Vlm7LO4ZgWFziKdBu74JaNSA06lo", "openai", "rbtf91s6", 3.8526581239993902, 53, 104, 157]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_202_1fe106abd8923a03b129.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_202_1fe106abd8923a03b129.table.json new file mode 100644 index 0000000000000000000000000000000000000000..492cb7a1b6de3eb8cba76b50c8a26f3ccfd1bd1a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_202_1fe106abd8923a03b129.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:02:56", "2023-06-26T12:02:58.136665", "chatcmpl-7VlmCRYn2rcbp0EHf4gZPaq4uk4tT", "openai", "rbtf91s6", 2.1366645580001205, 73, 54, 127]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_203_f766dda4bb570a3aed6f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_203_f766dda4bb570a3aed6f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f1d4479c1ba1a971dff0a775fe07550a94006fc0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_203_f766dda4bb570a3aed6f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:02:59", "2023-06-26T12:03:01.881263", "chatcmpl-7VlmFm6ns3D4AFQBOmLgbnKXRtMuO", "openai", "rbtf91s6", 2.8812626129993077, 51, 68, 119]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_204_9c5c156bd601dcfd03e6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_204_9c5c156bd601dcfd03e6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4b783d63383b23cd6e7a4c76f14befb2a1ba4024 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_204_9c5c156bd601dcfd03e6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:02", "2023-06-26T12:03:05.153946", "chatcmpl-7VlmItMqgot4a4aR6UgIyoaSNVKT3", "openai", "rbtf91s6", 3.1539458139995986, 61, 73, 134]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_205_6f243317b18338a5ab75.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_205_6f243317b18338a5ab75.table.json new file mode 100644 index 0000000000000000000000000000000000000000..28c18d39d553b8489ef94e439468137db017b02c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_205_6f243317b18338a5ab75.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:06", "2023-06-26T12:03:08.562310", "chatcmpl-7VlmMuXtNlIA8NjsvbBp6tWJpAIAh", "openai", "rbtf91s6", 2.5623094990005484, 56, 59, 115]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_206_b092b26bdaa62440f838.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_206_b092b26bdaa62440f838.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3b6c98f4066dec9e464970e5d8dfc47a2540026e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_206_b092b26bdaa62440f838.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is \"Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:08", "2023-06-26T12:03:11.242621", "chatcmpl-7VlmOmE6t0OYR6bym9CsCK2cjraFr", "openai", "rbtf91s6", 3.242620988999988, 61, 85, 146]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_207_cd90ab15dc6f98604edd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_207_cd90ab15dc6f98604edd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c1f07f56efd63386dfd1d10e5f003cf5a54b0a10 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_207_cd90ab15dc6f98604edd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:12", "2023-06-26T12:03:16.064932", "chatcmpl-7VlmSjG0BFMX3WALv9cMvlTXd82OO", "openai", "rbtf91s6", 4.064931703999719, 68, 102, 170]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_208_269359d6c0e6e2887412.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_208_269359d6c0e6e2887412.table.json new file mode 100644 index 0000000000000000000000000000000000000000..87af35de3e7aa5eb8e57d56f692a637acb0b94c0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_208_269359d6c0e6e2887412.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: System Message: \n\nYour order for \"Cookies | Triple Scoop Preroll 1g\" has been processed. Your total cost is $1.0. Thank you for your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:16", "2023-06-26T12:03:17.923616", "chatcmpl-7VlmW0dOlFM8ui3k2w2vMaaPsVbYK", "openai", "rbtf91s6", 1.9236156819997632, 67, 39, 106]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_209_4ea24e7f64f00337bc75.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_209_4ea24e7f64f00337bc75.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2330bcc9b441669ed977003d4e710b13a2fa456c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_209_4ea24e7f64f00337bc75.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:19", "2023-06-26T12:03:20.906080", "chatcmpl-7VlmZZ5areaCSM09tZwosrbp4U5ND", "openai", "rbtf91s6", 1.9060801840005297, 56, 46, 102]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_20_313501182234849d116d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_20_313501182234849d116d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..faa7bb77ee41c80267f2ca5f7df83d9e15477f18 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_20_313501182234849d116d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Watermelon,Syrup,250mg,Edible\n", "gpt-4-0314", "2023-06-26T11:48:49", "2023-06-26T11:48:51.654958", "chatcmpl-7VlYXXaEHarak9k57uP9j0xeamqit", "openai", "rbtf91s6", 2.6549577750001845, 121, 16, 137]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_210_590e9578a6765cddcc8d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_210_590e9578a6765cddcc8d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1c54cadcb881531e17451e3dabc225ffff9f26cd --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_210_590e9578a6765cddcc8d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:21", "2023-06-26T12:03:23.532727", "chatcmpl-7VlmbKevC2zLgKoWAAUH5XV3qwcKd", "openai", "rbtf91s6", 2.532727568000155, 58, 61, 119]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_211_2460424b50878716bae4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_211_2460424b50878716bae4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..403956dfb5a6bec9b21909d17a6f189678bb4e41 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_211_2460424b50878716bae4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows:\n\n- Brand: Kanha\n- Product type: Gummy\n- Flavor: Nano Blood Orange Bliss Indica\n- Quantity: 10 pieces\n- THC Content: 100mg\n\nPlease note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:24", "2023-06-26T12:03:29.013987", "chatcmpl-7VlmeE2LGh1ipJTDjaYSUMomuapXJ", "openai", "rbtf91s6", 5.013987102000101, 59, 127, 186]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_212_18f556bbb4eab5e9084a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_212_18f556bbb4eab5e9084a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a90de9a130241fff9c93666a9474a4d48bc00cf6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_212_18f556bbb4eab5e9084a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Thank you for your purchase, Bobbi Hyll!\n\nYour order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives.\n\nIf you have any questions or concerns about your order, please feel free to contact our customer service team.\n\nThank you for choosing our company for your cannabis needs. We hope you have a great day!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:30", "2023-06-26T12:03:33.756086", "chatcmpl-7Vlmk27GWARL5207f7OY1PqccwPsf", "openai", "rbtf91s6", 3.756085899000027, 53, 96, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_213_e964f2ccd2a625af7262.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_213_e964f2ccd2a625af7262.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a9fd2e7ac82f3dcca94226a83db335421ff1b408 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_213_e964f2ccd2a625af7262.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:34", "2023-06-26T12:03:36.654018", "chatcmpl-7VlmoIhGHLU44ynBh54U7VnI5ZhoD", "openai", "rbtf91s6", 2.654017998999734, 53, 69, 122]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_214_0d3de001c3d2e94a60d9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_214_0d3de001c3d2e94a60d9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..757163b11327b08d843b510e02324c0fc8a7093f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_214_0d3de001c3d2e94a60d9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:37", "2023-06-26T12:03:39.271123", "chatcmpl-7VlmrDdmppf7CuCSuR86UoXGgjM7F", "openai", "rbtf91s6", 2.2711226960000204, 48, 58, 106]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_215_d8514cacd9cbb8dbe956.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_215_d8514cacd9cbb8dbe956.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4240058e8f6a22f3c52c504b10f73fbcf91c48b2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_215_d8514cacd9cbb8dbe956.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:40", "2023-06-26T12:03:41.402265", "chatcmpl-7VlmuoE6dfZHei0H5STxsQ7OcyqdA", "openai", "rbtf91s6", 1.4022646959992926, 55, 25, 80]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_216_3d506f405bd308024e5a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_216_3d506f405bd308024e5a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3109c2e1a89d65c8cb9cbbda19d086dad3a54017 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_216_3d506f405bd308024e5a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:42", "2023-06-26T12:03:44.349286", "chatcmpl-7VlmwJkKP3tRc0LklyblNXYj0Zd6B", "openai", "rbtf91s6", 2.349285592999877, 53, 60, 113]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_217_19a6e0c32b3b971316d8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_217_19a6e0c32b3b971316d8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7e7988f418bf44b1f7c077c6c7f8c8c9203d4cc6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_217_19a6e0c32b3b971316d8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:44", "2023-06-26T12:03:47.944830", "chatcmpl-7Vlmy11bydW5rHcpNmzEIHYxJAOvl", "openai", "rbtf91s6", 3.9448300860003656, 49, 100, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_218_067970d0b62907daafe7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_218_067970d0b62907daafe7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ad565d3829b29055a908d16657563db21ce87d4e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_218_067970d0b62907daafe7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for your message. It seems like you are interested in purchasing \"The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g\". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:49", "2023-06-26T12:03:52.303564", "chatcmpl-7Vln37UAAsFx4uhlRbaEZo3NSA2FO", "openai", "rbtf91s6", 3.3035642879995066, 63, 84, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_219_a489f7aa7f4b7ffddd72.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_219_a489f7aa7f4b7ffddd72.table.json new file mode 100644 index 0000000000000000000000000000000000000000..992dfd860fbe850e689889fabd5d64f7f6d6c2b0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_219_a489f7aa7f4b7ffddd72.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:53", "2023-06-26T12:03:54.380350", "chatcmpl-7Vln7kifizjvC9ywsXWxSwu3PfvKN", "openai", "rbtf91s6", 1.3803501950005739, 59, 24, 83]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_21_cf51fd2572b985d76d3e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_21_cf51fd2572b985d76d3e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..276faa20c7673430ac6789f34751b43e6a0343f3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_21_cf51fd2572b985d76d3e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Space Cowboy,3.5g,Eighths\n", "gpt-4-0314", "2023-06-26T11:48:52", "2023-06-26T11:48:54.428404", "chatcmpl-7VlYaDODEkOanePMI3mqZ3qExxAZB", "openai", "rbtf91s6", 2.4284041999999317, 118, 16, 134]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_220_b1d9cddfdc73b606b6cb.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_220_b1d9cddfdc73b606b6cb.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c16fa6dab2b3572ebda28ef80363d64614849a82 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_220_b1d9cddfdc73b606b6cb.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF\n", "gpt-3.5-turbo-0301", "2023-06-26T12:03:55", "2023-06-26T12:03:56.057388", "chatcmpl-7Vln9Yde6Jnj8fzotNSgd8nnXelAC", "openai", "rbtf91s6", 1.0573881990003429, 125, 22, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_221_a7fb3acc0779afe21a15.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_221_a7fb3acc0779afe21a15.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b3f6d1b74f96fbb7f42d5a30cdc213fff623a5ae --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_221_a7fb3acc0779afe21a15.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Space Cowboy,Flowers,3.5g,11.16\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:02", "2023-06-26T12:04:08.626725", "chatcmpl-7VlnGLvEEntSSYe9vhqUoHH5nV2oN", "openai", "rbtf91s6", 6.626724693000142, 122, 17, 139]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_222_c12fb27f8fa2f2680627.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_222_c12fb27f8fa2f2680627.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8dd638f5cff4b1b4127b728d452473cf220a9452 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_222_c12fb27f8fa2f2680627.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli, Packed Bud, Xclusivo 3.5g, Eighth, 3.5g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:03", "2023-06-26T12:04:04.121809", "chatcmpl-7VlnH14pffouCKxX5seWDUUc9esrP", "openai", "rbtf91s6", 1.1218086009994295, 142, 24, 166]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_223_5e85cd2309a4739af921.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_223_5e85cd2309a4739af921.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2af90c64408584e8931555bb217b40c402a9df71 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_223_5e85cd2309a4739af921.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Mellowz #7,Flower,7g,073133213364\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:05", "2023-06-26T12:04:05.997787", "chatcmpl-7VlnJTVDrdHSqYg2CRjdtT7uS8jPR", "openai", "rbtf91s6", 0.9977867010002228, 120, 17, 137]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_224_caddb3221cf73cf3f581.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_224_caddb3221cf73cf3f581.table.json new file mode 100644 index 0000000000000000000000000000000000000000..08163fcf4e1af909707f3a60a76cac9b30d355ea --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_224_caddb3221cf73cf3f581.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Bubblegum Gelato Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:06", "2023-06-26T12:04:07.481851", "chatcmpl-7VlnKFpC7Cctkb5Yaq5odULD0tBSt", "openai", "rbtf91s6", 1.48185070099953, 130, 30, 160]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_225_a23fb772c96951792489.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_225_a23fb772c96951792489.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e286f1216a381a15d44bea480ce960ed157c17bc --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_225_a23fb772c96951792489.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:08", "2023-06-26T12:04:09.293109", "chatcmpl-7VlnM5F6aoRRjTHoHFXi3Q14RZDM6", "openai", "rbtf91s6", 1.2931094000005032, 125, 20, 145]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_226_f12c53756bf9cb524a96.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_226_f12c53756bf9cb524a96.table.json new file mode 100644 index 0000000000000000000000000000000000000000..43da6f9200629f8252cf894707fa2cb25540d736 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_226_f12c53756bf9cb524a96.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,11.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:10", "2023-06-26T12:04:10.835840", "chatcmpl-7VlnOndJUISMu970CLZrCnlVqfPIe", "openai", "rbtf91s6", 0.8358398999998826, 130, 17, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_227_4f0adba9370439b90acd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_227_4f0adba9370439b90acd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..062dc67e9432aaa43e8564dbceacdbcfe9ee7645 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_227_4f0adba9370439b90acd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:11", "2023-06-26T12:04:12.428723", "chatcmpl-7VlnPh4vL7xcfsVltQkP5e6zxnkFp", "openai", "rbtf91s6", 1.428723201000139, 137, 30, 167]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_228_cdc201f101bf5b0a7632.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_228_cdc201f101bf5b0a7632.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fd3d7fada9afbcd548d2534b06f0eedaa53531ce --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_228_cdc201f101bf5b0a7632.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies, Triple Scoop Preroll, 1g, Joint, FL-doWkMzvFq2, 1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:13", "2023-06-26T12:04:14.283128", "chatcmpl-7VlnRSaq3SwxcK1KFKwiYRVirHxau", "openai", "rbtf91s6", 1.2831286010004987, 136, 30, 166]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_229_510e453c9b7ce35740fa.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_229_510e453c9b7ce35740fa.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e92da54a7d34d0b94578511152fb5360b4bfa1bd --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_229_510e453c9b7ce35740fa.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Birthday Cake,Pod,Vape Pen,1g,VAPE PENS,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:14", "2023-06-26T12:04:15.033306", "chatcmpl-7VlnSiWX3QxBmhrif9Lu9UuCnA5dG", "openai", "rbtf91s6", 1.0333057010002449, 125, 24, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_22_a13a08731859ee1bb9d3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_22_a13a08731859ee1bb9d3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1d021650f04b478c35c1a2a3c61586f2ec7ecb7c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_22_a13a08731859ee1bb9d3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Eighths,Xclusivo,3.5g,Packed Bud\n", "gpt-4-0314", "2023-06-26T11:48:55", "2023-06-26T11:48:57.634240", "chatcmpl-7VlYd8Os1iBbUsLZQLerC9igxU4NQ", "openai", "rbtf91s6", 2.6342397530006565, 138, 17, 155]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_230_5b267c71e672be521653.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_230_5b267c71e672be521653.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5fae79a0cc146403758adc067c418bb2b57831d9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_230_5b267c71e672be521653.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle, TangEray, Infused Joint, Indoor, 1g, co-6GGKA0GV.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:16", "2023-06-26T12:04:17.240803", "chatcmpl-7VlnUb97t4pNyv5xn3NKzj4YOWcNX", "openai", "rbtf91s6", 1.2408024999995177, 127, 29, 156]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_231_32dff36d4cca04458955.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_231_32dff36d4cca04458955.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6939bbae085a12a1795a361c8f22728cf1828018 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_231_32dff36d4cca04458955.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Nano Gummy,Blood Orange Bliss,Indica,10 Count,100mg.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:18", "2023-06-26T12:04:19.021732", "chatcmpl-7VlnWVkPyThr6CIbPvfWttfnDfL4v", "openai", "rbtf91s6", 1.021731601999818, 128, 21, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_232_0fe24ecea7f6d1bac6fe.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_232_0fe24ecea7f6d1bac6fe.table.json new file mode 100644 index 0000000000000000000000000000000000000000..79373021e6e11165fa6a746dfe05d8387363173d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_232_0fe24ecea7f6d1bac6fe.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,BOBBI HYLL,Indoor Flower,3.5g.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:19", "2023-06-26T12:04:19.917523", "chatcmpl-7VlnXuY6n9vqcJ71yyzRjlSpaCjOc", "openai", "rbtf91s6", 0.9175233050000315, 122, 19, 141]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_233_2a87b55c500f80e797a7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_233_2a87b55c500f80e797a7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..02ff86a66af2b67169ad0bd885ba0919882eb394 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_233_2a87b55c500f80e797a7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:20", "2023-06-26T12:04:20.738602", "chatcmpl-7VlnYkub5TJhvmYpRzvjnFUu1SKM8", "openai", "rbtf91s6", 0.7386020040003132, 122, 13, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_234_272656e9663408d73b96.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_234_272656e9663408d73b96.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4cb8621783c2fae5419592dfbac9d45f37a4715d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_234_272656e9663408d73b96.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape Pod,Cherry Pie,1g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:22", "2023-06-26T12:04:22.788507", "chatcmpl-7Vlnagx4YlsdHjUypEW6uru4nWV2r", "openai", "rbtf91s6", 0.7885065050004414, 117, 14, 131]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_235_4dcb435e8bd1df97fb98.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_235_4dcb435e8bd1df97fb98.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c9100277a7bfaa6845cdc51a05d012f62b670ad0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_235_4dcb435e8bd1df97fb98.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:24", "2023-06-26T12:04:25.940246", "chatcmpl-7VlncCOBmmZikH8LxeH6qmAugMlZA", "openai", "rbtf91s6", 1.9402463099995657, 124, 23, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_236_98e66530d4e2a058b5e4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_236_98e66530d4e2a058b5e4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7b4226fb56de3c8fbba964472c277c7290b38525 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_236_98e66530d4e2a058b5e4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Indoor Double Down 3.5g by The Grower's Circle. This product has a CO-5RAWYHYQ tracking code.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:25", "2023-06-26T12:04:26.375239", "chatcmpl-7Vlndj7selNs8FVBaUMcvmOlq3B8u", "openai", "rbtf91s6", 1.3752388150005572, 122, 30, 152]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_237_2a1c11ae5f35b0f98f90.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_237_2a1c11ae5f35b0f98f90.table.json new file mode 100644 index 0000000000000000000000000000000000000000..88270876e9d12ba4af5c0346d6fb1f1e3505b11b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_237_2a1c11ae5f35b0f98f90.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:27", "2023-06-26T12:04:27.819993", "chatcmpl-7Vlnf6aDIzHpjUYDzfqA9vh5E1UEC", "openai", "rbtf91s6", 0.8199932239995178, 118, 14, 132]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_238_22da06d6a0d91d38b2ef.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_238_22da06d6a0d91d38b2ef.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b67ec95deff88579fcfef91225a014e98268c7a7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_238_22da06d6a0d91d38b2ef.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5pk,2.5g,co-847ZXF37\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:29", "2023-06-26T12:04:30.361283", "chatcmpl-7VlnhqFBYLfJhKGi3rx7XxVfqcv5B", "openai", "rbtf91s6", 1.361282539000058, 132, 31, 163]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_239_ae3505ad138b3dd5f16a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_239_ae3505ad138b3dd5f16a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0df606086aad7af053c622f9e3f1469c641ea125 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_239_ae3505ad138b3dd5f16a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Gummies,S'mores Flavor,10 Count,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:30", "2023-06-26T12:04:30.738604", "chatcmpl-7VlnicMeSfGCxxq5uGrY8QwYbjrpy", "openai", "rbtf91s6", 0.7386036210000384, 128, 15, 143]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_23_66a860794242762bf555.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_23_66a860794242762bf555.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2accaeb668623455ea1f1522b4eea8dd18cd3d82 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_23_66a860794242762bf555.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Mellowz #7,Flower,7g,Strain,28.0\n", "gpt-4-0314", "2023-06-26T11:48:58", "2023-06-26T11:48:59.834407", "chatcmpl-7VlYgkpoZl51CDhhV5QJ0NH0mWoNZ", "openai", "rbtf91s6", 1.8344071709998389, 116, 19, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_240_ab42aed943325ba0085d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_240_ab42aed943325ba0085d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1e8133a6b67361ec6c9ab5790059fcc663f6359b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_240_ab42aed943325ba0085d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Watermelon,Syrup,250mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:31", "2023-06-26T12:04:31.746376", "chatcmpl-7VlnjGeemleIxYhuljgjHacCyI6L3", "openai", "rbtf91s6", 0.7463756219995048, 186, 13, 199]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_241_8754e1ad3ccb30acb2d2.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_241_8754e1ad3ccb30acb2d2.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6f5ef76bcbf97bc19c1840f004ed0575839f6afd --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_241_8754e1ad3ccb30acb2d2.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:33", "2023-06-26T12:04:33.819794", "chatcmpl-7VlnlAAbh5c8f79gYoLZcLb4YLp8G", "openai", "rbtf91s6", 0.8197936229998959, 183, 14, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_242_867f7991aa540f97206f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_242_867f7991aa540f97206f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..21687aa817325d7afb81f3a03706c5b1556d28e4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_242_867f7991aa540f97206f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Xclusivo,Eighth,Packed Bud,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:04:34", "2023-06-26T12:04:34.866977", "chatcmpl-7VlnmeUro2szM5BpzZOkjHjkKmwBQ", "openai", "rbtf91s6", 0.8669774139998481, 203, 15, 218]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_243_8656fb93bff04550cd83.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_243_8656fb93bff04550cd83.table.json new file mode 100644 index 0000000000000000000000000000000000000000..57aa9c6dddfc27b8d00485c985ff30d7bc9604e9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_243_8656fb93bff04550cd83.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg potency. Could you please clarify what information you're looking for \u2013 whether it's about usage, effects, or something else? This will help me provide you with the most relevant and accurate information.\n", "gpt-4-0314", "2023-06-26T12:06:00", "2023-06-26T12:06:06.707936", "chatcmpl-7VlpAgOiW7FXG460um3Nx4VMq6pfm", "openai", "rbtf91s6", 6.707936360999156, 54, 61, 115]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_244_05a8711c4c95b8239f17.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_244_05a8711c4c95b8239f17.table.json new file mode 100644 index 0000000000000000000000000000000000000000..73929fdfe1708f361d11cb4f8a95e51626199fc9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_244_05a8711c4c95b8239f17.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on Feelz - Space Cowboy 3.5g. Unfortunately, I couldn't find any specific details about this product. However, I'm here to help! If you could provide more context or clarify your request, I'll do my best to assist you.\n", "gpt-4-0314", "2023-06-26T12:06:07", "2023-06-26T12:06:14.275403", "chatcmpl-7VlpH0pJpOfPWsLTwS6XtZ7BQ9dWW", "openai", "rbtf91s6", 7.275403162999282, 51, 63, 114]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_245_4f4a72d646e6e773015b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_245_4f4a72d646e6e773015b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f4145a19d3f7d41278dd50d211750538aad063aa --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_245_4f4a72d646e6e773015b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It seems like you are interested in the Champelli Xclusivo 3.5g cannabis product. Here is some information about it:\n\nProduct: Champelli Xclusivo 3.5g Eighths\nBrand: Champelli\nDistributor: PackedBud\n\nThis Champelli Xclusivo 3.5g Eighths contains 3.5 grams of premium cannabis flower. Champelli is known for its high-quality products, meticulous growing processes, and exclusive strains. Please ensure that you are familiar with the laws and regulations in your area related to cannabis consumption, and always use it responsibly.\n", "gpt-4-0314", "2023-06-26T12:06:15", "2023-06-26T12:06:30.146066", "chatcmpl-7VlpP9mr37ww7w1nIAJrhwHRRyuv2", "openai", "rbtf91s6", 15.146066522000183, 71, 127, 198]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_246_539bb92249fc8c068583.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_246_539bb92249fc8c068583.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d835e89c37c16f9f4d713a93749ab3832dd1375f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_246_539bb92249fc8c068583.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: It seems that you're mentioning the details of a product, specifically, \"CAM - Mellowz #7 7g\" which looks like a 7-gram package of flower strain from the cannabis industry. However, I am unable to provide any additional information or context without a more specific question or descriptive context.\n\nPlease feel free to ask further questions or provide more information, and I will do my best to assist you.\n", "gpt-4-0314", "2023-06-26T12:06:30", "2023-06-26T12:06:38.189035", "chatcmpl-7VlpeNJxbBIeEeF84JiBZ3qQCuirq", "openai", "rbtf91s6", 8.189035185998364, 49, 86, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_247_d314ce2fc58aa2474d43.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_247_d314ce2fc58aa2474d43.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b894461662c598e3b47d48b8a8f42708b135629a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_247_d314ce2fc58aa2474d43.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're interested in the Backpack Boyz Bubblegum Gelato Sizzurp Tincture with 1000mg potency. While I'm an AI language model and therefore unable to verify the availability or specific details of this product, I can provide you with general guidance about tinctures and their uses. \n\nA tincture is a concentrated liquid herbal extract made by dissolving herbs or plants in a solvent like alcohol or glycerin. Tinctures are usually taken sublingually (under the tongue) or mixed into beverages or food. They can be used for various purposes, such as for relaxation, pain relief, and more, depending on the active ingredients and dosages.\n\nIf you have any questions regarding tinctures or would like guidance on how to use them, feel free to ask.\n", "gpt-4-0314", "2023-06-26T12:06:39", "2023-06-26T12:06:53.205883", "chatcmpl-7VlpnWPKvbD8krShfJl8tbEEmsQns", "openai", "rbtf91s6", 14.20588244099963, 59, 169, 228]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_248_6a986fbcd254e2cf02cd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_248_6a986fbcd254e2cf02cd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b2013e4086732cf2877991950afb99dec15469ff --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_248_6a986fbcd254e2cf02cd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you might be interested in Raw Garden's Pink Lemonade Crushed Diamonds 1g, which is a Concentrate. Raw Garden is known for its high-quality cannabis products and this Pink Lemonade Crushed Diamonds is no exception.\n\nPink Lemonade Crushed Diamonds is a potent cannabis concentrate made from the hybrid Pink Lemonade strain. This product offers a flavorful taste profile with sweet, fruity, and tangy notes, reminiscent of the refreshing summer beverage it is named after. With 1.0 gram of concentrate, you can expect a smooth and enjoyable experience.\n\nPlease note that this product is meant for users who are familiar with the use of cannabis concentrates. Enjoy responsibly and remember to follow all guidelines and local regulations surrounding cannabis consumption.\n\nIf you have any further questions or need more information, feel free to ask.\n", "gpt-4-0314", "2023-06-26T12:06:54", "2023-06-26T12:07:11.687793", "chatcmpl-7Vlq21TCWkc9Tw336MWaGaTVg8Zu7", "openai", "rbtf91s6", 17.68779318199995, 54, 167, 221]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_249_c08fa7e03d306669e772.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_249_c08fa7e03d306669e772.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f1e7834029efcbe29d36f9dbdcd6a844e571b2b8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_249_c08fa7e03d306669e772.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: **Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g \n\n**Brand:** Jeeter\n\n**Category:** Infused Prerolls\n\n**Description:** Baby Jeeter Peaches offers a pack of 5 infused prerolls, providing a total of 2.5g of cannabis. These prerolls are crafted to enhance your smoking experience by combining top-shelf flower with a rich infusion of flavorful terpenes from peaches. This unique combination results in a smooth, enjoyable smoke with a delightful peach aroma.\n\nPlease note that the potency and availability of this product may vary depending on your location. Always consume responsibly and be aware of the laws and regulations in your specific area.\n", "gpt-4-0314", "2023-06-26T12:07:12", "2023-06-26T12:07:30.977546", "chatcmpl-7VlqKxQAMCwhu56jO3L34RViZjhcg", "openai", "rbtf91s6", 18.977546541000265, 59, 148, 207]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_24_cf0b985a39bf6294bfa0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_24_cf0b985a39bf6294bfa0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5ecad744d7df6090d26a643fe9c913479fb8d875 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_24_cf0b985a39bf6294bfa0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg\n", "gpt-4-0314", "2023-06-26T11:49:00", "2023-06-26T11:49:02.263508", "chatcmpl-7VlYiGi0ZdZ8JReOvwI1ZKoDY5ML2", "openai", "rbtf91s6", 2.2635076219994517, 126, 21, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_250_f11757e8515a42748692.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_250_f11757e8515a42748692.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9f55eec94b75645486a4eae01f2da45fbb5b9834 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_250_f11757e8515a42748692.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! It looks like you're inquiring about a product called \"Truffle Pupil\" by Ocean Breeze Cultivators. \n\nTruffle Pupil is an indoor-grown cannabis strain offered in a 1g blunt. Ocean Breeze Cultivators is the company responsible for cultivating this strain. Unfortunately, more specific information about the strain or its effects is not provided in the given query. \n\nIf you have further questions or need additional information about Truffle Pupil or Ocean Breeze Cultivators, please feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:07:31", "2023-06-26T12:07:40.459126", "chatcmpl-7Vlqdk93JQInquTqlsMJ71cAEniCX", "openai", "rbtf91s6", 9.459126284000376, 66, 110, 176]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_251_155cf141400ff6058f68.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_251_155cf141400ff6058f68.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4ab1bee2d3153f3bb7c071a31b976152aa45cdcc --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_251_155cf141400ff6058f68.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It seems like you are mentioning a Triple Scoop Preroll 1g Joint from Cookies. Cookies is a popular cannabis brand known for its quality products. The Triple Scoop Preroll is a pre-rolled joint containing 1 gram of Triple Scoop strain, which is a hybrid strain known for its potent effects and flavorful terpenes. Enjoying this preroll can provide a balanced and relaxing experience suitable for both experienced and novice consumers. Always consume cannabis responsibly and be aware of the laws in your jurisdiction.\n", "gpt-4-0314", "2023-06-26T12:07:41", "2023-06-26T12:07:54.636918", "chatcmpl-7VlqncrBWE88cXyyTPok95anewunX", "openai", "rbtf91s6", 13.636918338999749, 65, 105, 170]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_252_8b25a5b88fd5b59ad957.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_252_8b25a5b88fd5b59ad957.table.json new file mode 100644 index 0000000000000000000000000000000000000000..64637ee547452ecd03b22a9b0349b2c3dc26a3e0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_252_8b25a5b88fd5b59ad957.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you are interested in the STIIIZY Birthday Cake 1g Pod. This product is part of the VAPE PENS 1G category and typically contains 1.0 gram of vape concentrate. This particular Birthday Cake flavor offers a sweet, delicious, and smooth vaping experience. Please let me know if you have any questions or need additional information!\n", "gpt-4-0314", "2023-06-26T12:07:55", "2023-06-26T12:08:01.381037", "chatcmpl-7Vlr1WpJoPnHWfiEUcM3lLMBGVf6T", "openai", "rbtf91s6", 6.381037483999535, 54, 77, 131]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_253_4b587e08858f20d47653.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_253_4b587e08858f20d47653.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a3b4cfc232d854846a80037a1c87c97ac21acdcb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_253_4b587e08858f20d47653.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems like the information provided is incomplete and not in a proper format. Can you please provide more context or clarify your question? Are you looking for product details or information on this specific cannabis-infused joint?\n", "gpt-4-0314", "2023-06-26T12:08:02", "2023-06-26T12:08:08.781990", "chatcmpl-7Vlr8Smej27RhlDoeZoQ7iM2ynf4g", "openai", "rbtf91s6", 6.7819900550002785, 56, 42, 98]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_254_1c938c885e7efbdaca0b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_254_1c938c885e7efbdaca0b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d74f4a9ded9b568e98de0c5d15528de17672338c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_254_1c938c885e7efbdaca0b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Thank you for providing information on Kanha Nano Blood Orange Bliss Indica Gummies. These gummies contain 100mg of THC per 10-count package, making each gummy contain 10mg of THC. Kanha is widely known for their high-quality cannabis-infused products. With a Blood Orange Bliss flavor, these Indica gummies offer a delightful and convenient way to enjoy the benefits of THC in a tasty and discreet form.\n\nPlease note that these gummies are meant for those who are of legal age and in areas where recreational or medicinal cannabis is permitted. It is crucial to start with a low dose if you're a first-timer or have a low tolerance, and to remember that the effects may take some time to kick in, so be patient before consuming more. Always consume responsibly and observe local laws and regulations.\n", "gpt-4-0314", "2023-06-26T12:08:09", "2023-06-26T12:08:25.684639", "chatcmpl-7VlrFd3zdJGsDoP3SVcEsrkexhTks", "openai", "rbtf91s6", 16.68463855799928, 57, 167, 224]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_255_dfd84c26cd82192756fc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_255_dfd84c26cd82192756fc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1eef1e32d333bae022f33d04eebf4969643e4c9b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_255_dfd84c26cd82192756fc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hello! It looks like you are interested in information about BOBBI HYLL Indoor flower at 3.5g. Here's a brief overview:\n\nProduct: BOBBI HYLL\nType: Indoor Flower\nBrand: Fresca\nWeight: 3.5g\n\nBOBBI HYLL is an indoor-grown cannabis flower by Fresca. The 3.5g weight makes this a suitable option for moderate users looking for a quality cannabis experience. As an indoor-grown product, BOBBI HYLL demonstrates careful cultivation practices, harnessing an optimal environment to produce quality buds. The brand, Fresca, is known for its commitment to producing flowers with natural flavors and fragrances.\n\nWhile the specific strain details aren't provided, you can generally expect a cannabis flower product like this to provide a range of effects based on its THC/CBD percentage and terpene profile.\n\nPlease make sure to use this product responsibly and follow your local regulations and laws surrounding cannabis usage.\n", "gpt-4-0314", "2023-06-26T12:08:27", "2023-06-26T12:08:46.458960", "chatcmpl-7VlrXQwSkMt0rMBhBknjjuBfYsaL1", "openai", "rbtf91s6", 19.458960388999913, 51, 200, 251]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_256_2d36c5962ebfd9f8cfe1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_256_2d36c5962ebfd9f8cfe1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..11d3bcc3b8ff6c9b8970ef1871fbd91cf39abb35 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_256_2d36c5962ebfd9f8cfe1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're interested in Flav Blueberry Belts containing 100mg of THC. These are edible cannabis-infused gummies made by the company Flav. The product offers a delicious blueberry flavor and is designed to provide a consistent dose of THC for a reliable and enjoyable experience.\n\nPlease note that cannabis products are intended for individuals who are of legal age, and the effects of THC can vary from person-to-person. Always be sure to consume responsibly and adhere to local laws and guidelines.\n\nIf you have any further questions or need more information about this product, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:08:47", "2023-06-26T12:09:02.806374", "chatcmpl-7VlrrA1FGUKEfPX4SyRAlAKhvgeWH", "openai", "rbtf91s6", 15.806373875000645, 51, 122, 173]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_257_91f0857a72b18c1dc026.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_257_91f0857a72b18c1dc026.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0bd0a9cb57187d56e64a023275a94730f40dc99d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_257_91f0857a72b18c1dc026.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: It seems that you are searching for information on the \"Cherry Pie - 1g - Pod\" product from Left Coast Extracts.\n\nCherry Pie is a cannabis strain that is well-known for its strong sweet and sour cherry flavor, as well as its calming and uplifting effects. The 1g pod refers to a vape cartridge containing 1 gram of Cherry Pie cannabis concentrate, specifically made for vaping. Left Coast Extracts is a popular cannabis brand focused on creating high-quality vape products.\n\nPlease note that vaping cannabis products is only legal in certain locations and for individuals of legal age, so make sure to check the laws in your area and consume responsibly.\n", "gpt-4-0314", "2023-06-26T12:09:03", "2023-06-26T12:09:16.927694", "chatcmpl-7Vls7Dkg6oLhz6wwwgvcft433tAz9", "openai", "rbtf91s6", 13.927693608000482, 46, 132, 178]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_258_31b208f0a53d78892820.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_258_31b208f0a53d78892820.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d94ac1a39f77471f68dd48c84ea8f91aa454e626 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_258_31b208f0a53d78892820.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! It seems like you're interested in \"Emerald Cut\" - a 1g joint by Minntz designed for indoor use. Emerald Cut is a strain produced by Minntz that offers a unique smoking experience. Unfortunately, I don't have enough information about its specific effects and characteristics. \n\nTo get the most out of your experience, I recommend visiting Minntz's website or reaching out to a local dispensary for more information on the Emerald Cut strain. They can provide you with details about the strain's effects, potency, and any other attributes that you may be interested in learning about.\n\nRemember to consume responsibly and follow the laws and regulations in your area. Enjoy!\n", "gpt-4-0314", "2023-06-26T12:09:17", "2023-06-26T12:09:29.595404", "chatcmpl-7VlsLFy3noD62CWyPowY5PpUbESTj", "openai", "rbtf91s6", 12.595403911000176, 53, 139, 192]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_259_212e06acc7cd6cbebf04.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_259_212e06acc7cd6cbebf04.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aacfee3eac49a196fdcbab6347d321ed752a18ef --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_259_212e06acc7cd6cbebf04.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're inquiring about The Growers Circle's Double Down, an Indoor-grown cannabis strain available in a 3.5g pack. However, there is not enough information provided for a detailed response. Can you please clarify your question or provide more information about what you're looking for?\n", "gpt-4-0314", "2023-06-26T12:09:30", "2023-06-26T12:09:37.998494", "chatcmpl-7VlsYCh12v0DT00SCpYSgISookL0n", "openai", "rbtf91s6", 7.998494428000413, 51, 64, 115]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_25_0c451578eb8290f13b1f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_25_0c451578eb8290f13b1f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e2af7123ac365df986b47cc7cb5deb334210ac22 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_25_0c451578eb8290f13b1f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0\n", "gpt-4-0314", "2023-06-26T11:49:03", "2023-06-26T11:49:05.023555", "chatcmpl-7VlYl7OiCCT2OgVMg5PjEf22hwk3n", "openai", "rbtf91s6", 2.0235550280003736, 121, 20, 141]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_260_8bae963ad19a64828189.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_260_8bae963ad19a64828189.table.json new file mode 100644 index 0000000000000000000000000000000000000000..02d6e5045733fa9fed95b748edd06f4f7bd53e22 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_260_8bae963ad19a64828189.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nProduct Category: Flowers\nDescription:\n\nThe Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a 14g bag of flowers that provides a delicious and highly enjoyable experience for cannabis enthusiasts. This premium shake features Blue Dream, a popular hybrid strain, that delivers a perfect balance between powerful full-body relaxation and uplifting cerebral stimulation. The product's Sativa-dominant effects make it suitable for controlling symptoms such as chronic pain, depression, and stress.\n\nThese sugar shakes are ideal for users who prefer to roll their own joints, pack bowls, or create their own cannabis-infused edibles. Pacific Stone's Blue Dream Roll Your Own 14g Bag ensures that you are working with a high-quality mixture of premium flowers.\n\nPlease note that effects may vary depending on the individual and their cannabis experience. Always follow your local cannabis regulations and consult with a healthcare professional if consuming cannabis for any medical reasons.\n", "gpt-4-0314", "2023-06-26T12:09:40", "2023-06-26T12:10:01.053215", "chatcmpl-7VlsikaQsM3Q64mLeIWkzZkny2Wys", "openai", "rbtf91s6", 21.05321506099972, 47, 199, 246]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_261_754a1c4270908717e97f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_261_754a1c4270908717e97f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8b0a74015c1b2fa99135d59d80dbf94db3dfeee6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_261_754a1c4270908717e97f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are referring to a product called \"The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\" This product appears to be a pack of pre-rolled joints containing a mix of two cannabis strains, Zoo Dawg and Cosa Nostra. Each pack contains 5 joints with a total weight of 2.5 grams. \n\nPlease note that if you are seeking information about a specific product, it is important to consult the manufacturer or retailer directly. Availability, pricing, and other information may vary depending on your location and the specific business in question.\n\nAlways remember to consume cannabis responsibly and legally according to your local regulations, and consult your doctor if you have any concerns or questions about your own consumption.\n", "gpt-4-0314", "2023-06-26T12:10:00", "2023-06-26T12:10:19.808974", "chatcmpl-7Vlt2HqaqHVuwtuEruvfNAPucUprk", "openai", "rbtf91s6", 19.808974314999432, 61, 161, 222]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_262_ecb9ca2e72a70a7d7cda.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_262_ecb9ca2e72a70a7d7cda.table.json new file mode 100644 index 0000000000000000000000000000000000000000..67bd3c1420957187f254c180db16fc429a44e440 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_262_ecb9ca2e72a70a7d7cda.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: It seems like you are looking for information on the product: Flight Bites - S'mores - Gummy - 10ct - 100mg.\n\nSince I received limited information, I am unable to provide you with specific details about the product. However, I can provide some general information about similar products.\n\nFlight Bites generally refers to a type of cannabis-infused edible in the form of gummies. In this case, the product seems to be a S'mores flavored gummy.\n\nThe mentioned 10ct probably refers to 10 individual gummies being in a pack, and 100mg might be the total THC content of the package. Usually, gummies are individually dosed for easier consumption and consistent dosage.\n\nPlease keep in mind that THC is the primary psychoactive compound found in cannabis, and products containing THC are generally not recommended for individuals under the legal consuming age in their respective jurisdiction. If you are looking for more information about this specific product, I would recommend visiting the official Flight Bites website or contacting the manufacturer directly.\n\nPlease remember to consume THC products responsibly and only when it is legal in your local area to do so.\n", "gpt-4-0314", "2023-06-26T12:10:21", "2023-06-26T12:10:40.996794", "chatcmpl-7VltNllMVqq8jo9EnHCiiyfX6ZwhY", "openai", "rbtf91s6", 19.996794278999005, 57, 231, 288]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_263_1b124e1eaf4d75e40001.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_263_1b124e1eaf4d75e40001.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4b5c838869105d42efed24e4cd741a1944c47a0e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_263_1b124e1eaf4d75e40001.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're searching for information on Chill Medicated Watermelon Syrup with 250mg. Chill Medicated is known for their cannabis-infused products, which are designed for relaxation and pain relief.\n\nProduct: Chill Medicated - Watermelon - Syrup - 250mg\nBrand: Chill Medicated\n\nWhile specific details are not provided in your query, this product likely contains 250mg of cannabis-derived compounds, such as THC or CBD. These compounds are known for their medicinal properties and can help with various ailments such as pain, anxiety, and inflammation.\n\nWatermelon syrup is a flavored addition to beverages and can be mixed into drinks like soda, lemonade, or even water for a tasty and refreshing way to consume cannabis.\n\nPlease note that it is essential to follow proper dosing recommendations and be aware of the effects of THC or CBD on your body, especially if you're new to cannabis products. Also, ensure that you're of legal age and consuming it in an area where it is allowed.\n\nIf you have any more specific questions or need more information, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:10:41", "2023-06-26T12:11:02.706970", "chatcmpl-7VlthO1oQkfiS19FvciNcR9NXwd6i", "openai", "rbtf91s6", 21.706969629000014, 55, 223, 278]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_264_a0231fe0791d636addbe.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_264_a0231fe0791d636addbe.table.json new file mode 100644 index 0000000000000000000000000000000000000000..04c2656a2d1b37d642309e18b7a69f2815e60876 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_264_a0231fe0791d636addbe.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information regarding Feelz - Space Cowboy 3.5g.\n\nUnfortunately, the details provided are insufficient for me to assist you accurately. Can you please provide more context or clarify your request? If you're looking for information about a specific product, it would be helpful to provide more details about the product or the purpose of the inquiry.\n", "gpt-4-0314", "2023-06-26T12:11:04", "2023-06-26T12:11:13.224989", "chatcmpl-7Vlu4smDDBwy1CnhFsp2iSknvqylD", "openai", "rbtf91s6", 9.22498864499903, 52, 76, 128]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_265_a90e1cc15b5c7a8db31b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_265_a90e1cc15b5c7a8db31b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6ea28fc06c6648d4b92b2e576b256c5b61573b32 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_265_a90e1cc15b5c7a8db31b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It seems like you're interested in purchasing the Champelli Xclusivo 3.5g Eighths. Here is some information on the product:\n\nProduct: Champelli Xclusivo 3.5g Eighths\nBrand: Champelli\nType: Packed Bud\n\nThe Champelli Xclusivo 3.5g Eighths is a high-quality cannabis product that offers an enjoyable and unique experience. This packed bud has been carefully cultivated by the reputable brand of Champelli, ensuring the best flavors and potency, providing you the ultimate satisfaction.\n\nTo make a purchase or get more information about this product, please visit a local dispensary or a reliable online store. Make sure to consume responsibly and follow local regulations on marijuana consumption.\n", "gpt-4-0314", "2023-06-26T12:11:13", "2023-06-26T12:11:31.641617", "chatcmpl-7VluDFzrC6lat27myyC3whUF0WJ23", "openai", "rbtf91s6", 18.64161723899997, 72, 153, 225]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_266_364b82dfa388d7cff685.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_266_364b82dfa388d7cff685.table.json new file mode 100644 index 0000000000000000000000000000000000000000..10c6146f76008f5c0a6694742fc070a80fa68e23 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_266_364b82dfa388d7cff685.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are interested in Mellowz #7, which is a 7-gram (7g) cannabis flower product. However, some details are missing or unclear in your message. If you have any specific questions or need further information, please let me know and I'd be more than happy to help.\n", "gpt-4-0314", "2023-06-26T12:11:33", "2023-06-26T12:11:40.478948", "chatcmpl-7VluXWir89qm23FNLk2sL3q118mEc", "openai", "rbtf91s6", 7.47894829300094, 50, 67, 117]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_267_7bca69535cdfcbea21b9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_267_7bca69535cdfcbea21b9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e1a4a27df35d13add0f744f5fa04c95a28d8576f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_267_7bca69535cdfcbea21b9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems you are looking for information on the \"Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg\" tincture. Unfortunately, I couldn't find any specific information about this product as my knowledge is based on pre-existing information up to September 2021. \n\nHowever, I can provide some general information about tinctures. Cannabis tinctures are alcohol or oil-based extracts that are usually taken sublingually (under the tongue) or added to food or beverages. They provide an alternative method of consumption for those who prefer not to smoke or vape. Tinctures can range in potency, and the 1000mg you mentioned likely refers to the amount of total cannabinoids present in the product.\n\nPlease make sure you consult with a qualified professional or visit a licensed dispensary for accurate and up-to-date information on any cannabis products you intend to use.\n", "gpt-4-0314", "2023-06-26T12:11:45", "2023-06-26T12:12:00.819565", "chatcmpl-7VlujWxn2Egac5tPipeOHFivMYV97", "openai", "rbtf91s6", 15.819564686000376, 60, 183, 243]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_268_f0c6b7b429f383de8b79.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_268_f0c6b7b429f383de8b79.table.json new file mode 100644 index 0000000000000000000000000000000000000000..48514aa527b3666c0a6978148ab8dbbfc7b0cccb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_268_f0c6b7b429f383de8b79.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: It seems like you are looking for information on Raw Garden Pink Lemonade Crushed Diamonds 1g. Raw Garden is a well-known brand that creates high-quality cannabis products, and in this case, they have a concentrate called Pink Lemonade Crushed Diamonds. It is a 1-gram product that is used for enjoying the terpenes and potency of the cannabis plant in a concentrated form. Concentrates are generally more potent than regular flower and are often used for faster and stronger effects. The Pink Lemonade Crushed Diamonds might have a fruity, citrusy flavor, reminiscent of pink lemonade. However, it's essential to use concentrates responsibly and in moderation to avoid any adverse effects.\n", "gpt-4-0314", "2023-06-26T12:12:02", "2023-06-26T12:12:14.663727", "chatcmpl-7Vlv0NgrY31V6an2cmINk6T4co565", "openai", "rbtf91s6", 12.663726920000045, 55, 139, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_269_701a7a03644ae06ceeb1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_269_701a7a03644ae06ceeb1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..655e4396ce462d73064096d398b52af894501c10 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_269_701a7a03644ae06ceeb1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: It seems like you're looking for some information on the Baby Jeeter Peaches Infused Preroll 5-pack, which contains a total of 2.5g of product. \n\nProduct Name: Baby Jeeter Peaches Infused Preroll 5pk - 2.5g\nBrand: Jeeter\nType: Infused Prerolls\nTHC Content: Not provided\nCBD Content: Not provided\n\nUnfortunately, the THC and CBD contents are not specified. Baby Jeeter Peaches are cannabis-infused prerolls produced by Jeeter, a company well-known for its quality prerolls. These infused prerolls provide users with a convenient and flavorful way to enjoy their cannabis.\n\nSince the THC and CBD content is not mentioned, it is crucial to check with your local dispensaries or the manufacturer for an accurate description of the product's cannabinoid content. Always consume responsibly and follow the recommended dosages for your cannabis consumption.\n", "gpt-4-0314", "2023-06-26T12:12:16", "2023-06-26T12:12:34.316662", "chatcmpl-7VlvEEtVoQuWRIBCUEKBFDTsN6Bou", "openai", "rbtf91s6", 18.31666207499984, 60, 190, 250]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_26_41c8f984f402d34ae57c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_26_41c8f984f402d34ae57c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fc7e18f64734b06e192c5f74bbc4f4f265ddf676 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_26_41c8f984f402d34ae57c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T11:49:06", "2023-06-26T11:49:08.847866", "chatcmpl-7VlYoyitK2kvmxoSm5V13tNqC4m6c", "openai", "rbtf91s6", 2.847866210000575, 126, 17, 143]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_270_dcef11f04e7e3d160c4d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_270_dcef11f04e7e3d160c4d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..86f46e63f83aef8b2d811a5b1297d90142f2f7fb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_270_dcef11f04e7e3d160c4d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! I see you have an interest in Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt. Here's some information about it:\n\nProduct: Truffle Pupil Indoor Blunt\nProducer: Ocean Breeze Cultivators\nWeight: 1g\n\nTruffle Pupil is a unique blend crafted by Ocean Breeze Cultivators that offers a pleasant smoking experience. As an indoor-grow cultivar, Truffle Pupil is carefully developed in a controlled environment, ensuring optimal growth and potency.\n\nThe Truffle Pupil Indoor Blunt is pre-rolled and packed with 1 gram of high-quality cannabis. The strain boasts a diverse mix of flavors and aromas, combining earthy undertones with a hint of sweetness. The unique combination is reminiscent of truffles, giving it its memorable name.\n\nAs for the effects, Truffle Pupil offers a balanced high, with both uplifting and relaxing properties. You can expect a cerebral buzz that stimulates creativity and focus, making it ideal for artistic or intellectual tasks. As the experience progresses, you might also enjoy a soothing body effect that provides physical relaxation without causing couch-lock or sedation.\n\nRemember to consume responsibly and enjoy the unique experience offered by Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt!\n", "gpt-4-0314", "2023-06-26T12:12:35", "2023-06-26T12:13:03.495957", "chatcmpl-7VlvX1OIP1FxzBSfEBJHTZCDQEjHk", "openai", "rbtf91s6", 28.49595732799935, 67, 258, 325]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_271_804d18d09542ac6f1aff.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_271_804d18d09542ac6f1aff.table.json new file mode 100644 index 0000000000000000000000000000000000000000..19f389b52713509deadc38e4c40d754647e59e7b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_271_804d18d09542ac6f1aff.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It seems like you are mentioning a product: Cookies Triple Scoop Preroll 1g - a joint. \n\nCookies is a well-known cannabis brand, and their Triple Scoop Preroll is a pre-rolled joint containing 1 gram of cannabis. The Triple Scoop strain is a hybrid that offers a mix of cerebral stimulation and body relaxation. This preroll is perfect for those looking to enjoy the benefits of cannabis without the hassle of rolling their own joint. Remember to consume responsibly and follow local laws and regulations regarding cannabis use.\n", "gpt-4-0314", "2023-06-26T12:13:03", "2023-06-26T12:13:18.864249", "chatcmpl-7VlvzBDAxpCh5M6geXhv1u5Nffk2O", "openai", "rbtf91s6", 15.864249135000136, 66, 109, 175]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_272_2b79aa2842f1547240e8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_272_2b79aa2842f1547240e8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1ae2fde8b430533f22f5310568f738267ce5645d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_272_2b79aa2842f1547240e8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen provides an enjoyable and convenient way to consume cannabis. Here are some details about the product:\n\nProduct Name: STIIIZY - Birthday Cake Pod 1g\nCategory: VAPE PENS 1G\nSize: 1.0 gram\n\nPlease note that the availability of this product may vary depending on your location and local regulations. Be sure to check with your nearest dispensary for further information. If you have any other questions or need assistance, feel free to ask!\n\n", "gpt-4-0314", "2023-06-26T12:13:20", "2023-06-26T12:13:30.437227", "chatcmpl-7VlwGpa2mPVV25qiuaHDpXqchVmhk", "openai", "rbtf91s6", 10.437227369999164, 55, 122, 177]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_273_fd4ee6acf23a4550c9e2.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_273_fd4ee6acf23a4550c9e2.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4d16aca9376b9cfb1251108d47d1076eac327b67 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_273_fd4ee6acf23a4550c9e2.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: It appears you are inquiring about a specific product: TangEray Indoor Infused Joint by the collaboration of Cookies and The Grower Circle. This is a 1-gram pre-roll joint that has been infused for a more potent smoking experience. However, there is limited information provided in your message. \n\nTangEray is likely a cannabis strain derived from Tangie and possibly another strain, providing an invigorating experience with strong citrus flavors. The Indoor signifies that the flower was grown indoors, which often results in higher quality and more controlled growing conditions.\n\nInfused joints are pre-rolls that have been enhanced with additional cannabis concentrates, like kief, oil, or wax, to increase potency and enhance the overall smoking experience.\n\nPlease let me know if you need more information or have a specific question about this product.\n", "gpt-4-0314", "2023-06-26T12:13:31", "2023-06-26T12:13:45.291591", "chatcmpl-7VlwRUfnRB7uNMcM20XgQpKOhthPJ", "openai", "rbtf91s6", 14.291590820999772, 57, 166, 223]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_274_e6baefb71cab817098bd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_274_e6baefb71cab817098bd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..404b5615d6af409722260df41e8da58bbe771d50 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_274_e6baefb71cab817098bd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Thank you for providing the information on the product \"Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg\". It appears to be a pack of 10 gummies, each with a blood orange flavor and infused with Indica cannabis, resulting in a total of 100mg for the entire pack. The product is made by Kanha. Since some details provided are unclear, I would recommend checking the product packaging or consulting the manufacturer for further information and instructions on usage, ingredients, and potential benefits.\n", "gpt-4-0314", "2023-06-26T12:13:46", "2023-06-26T12:13:57.414602", "chatcmpl-7Vlwgbn0uZRZcfkoPuNawr9lKjFWI", "openai", "rbtf91s6", 11.414601918000699, 58, 110, 168]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_275_ea0688698aab3de46154.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_275_ea0688698aab3de46154.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7d974e423a28905ffbc2c10434f85447708ff20a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_275_ea0688698aab3de46154.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hi there! It looks like you're interested in the BOBBI HYLL Indoor - 3.5g Fresca flower. Let's go over some details!\n\nProduct: BOBBI HYLL Indoor - 3.5g\nStrain: Fresca\nType: Flower\nWeight: 3.5 grams\n\nBOBBI HYLL's Fresca flower is an indoor-grown cannabis strain perfect for users seeking a flavorful and smooth smoking experience. With 3.5 grams of premium flower, this product provides a generous amount for multiple sessions.\n\nFresca is known for its unique sweet and fruity aroma, with notes of grapefruit, citrus, and a hint of earthiness. This strain is well-suited for daytime use as it's uplifting, providing a balanced and focused high that won't leave you feeling overwhelmed or unproductive.\n\nWhether you're a seasoned cannabis connoisseur or a newcomer to the world of marijuana, BOBBI HYLL's 3.5g of Fresca flower is a solid choice for an enjoyable and uplifting experience.\n", "gpt-4-0314", "2023-06-26T12:13:58", "2023-06-26T12:14:27.068478", "chatcmpl-7Vlwsy4qY4eH0CjBilF3fK0VwnFjp", "openai", "rbtf91s6", 29.068478130000585, 52, 217, 269]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_276_2789ae6b29f19759744f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_276_2789ae6b29f19759744f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c1e8dba8b302f78042841ffb2b2daf4018f3722d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_276_2789ae6b29f19759744f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: I see that you are looking for information about \"Flav Blueberry Belts 100mg\". Flav Blueberry Belts are an edible cannabis-infused product made by the company Flav. Here are some details:\n\n- Flav Blueberry Belts are infused with 100mg of cannabis extract, providing a consistent dosage in every serving.\n- These belts are coated in blueberry-flavored sugar, offering a delicious and convenient way to consume cannabis.\n- The product comes in a resealable package, ensuring freshness and easy storage.\n\nPlease note that the consumption of cannabis products should be done responsibly and according to local laws and regulations. Start with a low dosage and monitor your body's reaction to determine the appropriate amount for your personal needs.\n", "gpt-4-0314", "2023-06-26T12:14:27", "2023-06-26T12:14:45.852557", "chatcmpl-7VlxLM0LHGhayvjwoDLj6ElcnZfsB", "openai", "rbtf91s6", 18.85255714699997, 52, 151, 203]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_277_41817c961f537cece7af.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_277_41817c961f537cece7af.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f63fde07cc64c6f35337eb48c162815de2d2a8fa --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_277_41817c961f537cece7af.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Title: Cherry Pie 1g Pod\nBrand: Left Coast Extracts\nCategory: Vape\n\nDescription: The Cherry Pie 1g Pod from Left Coast Extracts is a high-quality vape product for those looking for a strong and flavorful vaping experience. Cherry Pie is a popular hybrid strain, with a delightful mix of sweet berries and earthy undertones. With its powerful effects, users can expect a happy and uplifting experience that soothes the mind and body. This vape pod is compatible with various vape devices, making it a convenient option for those who enjoy vaping on the go.\n", "gpt-4-0314", "2023-06-26T12:14:47", "2023-06-26T12:14:57.390795", "chatcmpl-7Vlxfl4YscwkNvGG6hKlfLUD800EU", "openai", "rbtf91s6", 10.390795107001395, 47, 118, 165]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_278_e9497c45043769a4079f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_278_e9497c45043769a4079f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2680fc6b2455063c29c1880d7c5827f9a8446576 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_278_e9497c45043769a4079f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information on Minntz's Emerald Cut, a 1g indoor joint. Unfortunately, you haven't provided specific details or questions. Please let me know what exactly you would like to know about this product, and I'll be happy to help!\n", "gpt-4-0314", "2023-06-26T12:14:58", "2023-06-26T12:15:03.134990", "chatcmpl-7VlxqlNy5Le1ohN846kmWns2ZDafk", "openai", "rbtf91s6", 5.134989759999371, 54, 59, 113]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_279_5739d6eb3c9ccbb40ae0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_279_5739d6eb3c9ccbb40ae0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7e8fe3b0940dc3278ba7d16a2a1b1d5753739d27 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_279_5739d6eb3c9ccbb40ae0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you might be asking about a product called \"The Growers Circle - Double Down - Indoor - 3.5g.\" Based on the information given, there seem to be some missing details. Can you please provide more context or clarify your question? This will help me provide you with accurate and relevant information.\n", "gpt-4-0314", "2023-06-26T12:15:03", "2023-06-26T12:15:10.509472", "chatcmpl-7VlxvSoLfzYLS3c0pKJdJItv3uDjW", "openai", "rbtf91s6", 7.509471838999161, 52, 67, 119]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_27_dfd8e7982ed36304cc9d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_27_dfd8e7982ed36304cc9d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..43cf084933ac720b9a1653f5476ded44dd436d91 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_27_dfd8e7982ed36304cc9d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g\n", "gpt-4-0314", "2023-06-26T11:49:09", "2023-06-26T11:49:12.422678", "chatcmpl-7VlYrxNTh934MSy6dx7217HGy75Bu", "openai", "rbtf91s6", 3.422677852000561, 133, 20, 153]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_280_932fbe75e299baabc0f5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_280_932fbe75e299baabc0f5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ddc131c7be4acee8ffc83bc42be4e871b7f4a59a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_280_932fbe75e299baabc0f5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\nPrice: Not mentioned\nDescription: Not provided\n\nFrom the information provided, it seems that the 'Blue Dream Roll Your Own Sugar Shake 14g Bag' is a cannabis flower product by the brand 'Pacific Stone'. The product is meant for those who prefer to roll their own joints using the sugar shake \u2013 a term that refers to the small, sugar-like trichomes and tiny pieces of cannabis that remain in the bottom of a storage container.\n\nPlease note that the price and full description of the product are not available. Make sure to check the product label for THC and CBD content and consult with a sales representative or budtender at the point of purchase for more details.\n", "gpt-4-0314", "2023-06-26T12:15:12", "2023-06-26T12:15:27.705783", "chatcmpl-7Vly4uW2o4TmxabptH6sBE9fUSHxl", "openai", "rbtf91s6", 15.705782822999026, 48, 160, 208]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_281_d54c411f2235c8b57ad5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_281_d54c411f2235c8b57ad5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e68ae6daf76cd38405c1d614a7ef381a8429dc2e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_281_d54c411f2235c8b57ad5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems like you're looking for information about a multi-pack of cannabis joints called \"The Grower Circle - Zoo Dawg x Cosa Nostra\". This pack contains 5 pre-rolled joints with a total weight of 2.5g.\n\nUnfortunately, we cannot provide any more information about this product or any other cannabis-related topic. It's important to note that the usage, sale, and possession of cannabis are not legal everywhere and are subject to varying regulations depending on the location.\n\nPlease make sure to review the applicable laws and regulations before consuming or possessing any cannabis-related product and consult your physician for medical advice.\n", "gpt-4-0314", "2023-06-26T12:15:28", "2023-06-26T12:15:41.979789", "chatcmpl-7VlyKBVcLuq1xd6FFARAwtcoAMt6F", "openai", "rbtf91s6", 13.979788874001315, 62, 125, 187]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_282_fb8c99fa10d818138c67.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_282_fb8c99fa10d818138c67.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c452b549677299fa22f67c02f95a0af748299c10 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_282_fb8c99fa10d818138c67.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information on Flight Bites S'mores Gummy with 10 pieces containing a total of 100mg. However, you've provided some \"nan\" values, which are typically placeholders for Not a Number or missing data. In order to provide you with accurate and proper information about the product, I will need more context or specific questions. Please feel free to ask more about Flight Bites or provide more details, and I would be happy to help!\n", "gpt-4-0314", "2023-06-26T12:15:42", "2023-06-26T12:15:50.419227", "chatcmpl-7VlyYgcb3VZUM5fuVUVl6NapiDrk7", "openai", "rbtf91s6", 8.419227316000615, 58, 100, 158]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_283_d339342854dfe785a451.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_283_d339342854dfe785a451.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5d82ebecef927084b43ffe93b88e75d682322392 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_283_d339342854dfe785a451.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for using our system. Can you please provide me with more information on how I can assist you with Chill Medicated's Watermelon Syrup?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:15:51", "2023-06-26T12:15:52.678776", "chatcmpl-7VlyhuwTHx9Shj9ZijHH8dZ6rEZk6", "openai", "rbtf91s6", 1.6787755509994895, 56, 33, 89]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_284_708010c4064c46461f3f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_284_708010c4064c46461f3f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..50a225fca1e050c41833a35bfe36fcb0515eccc8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_284_708010c4064c46461f3f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello bl-111630024545,\n\nThank you for your message. Can you please provide more context or detail on your inquiry? It seems like you have listed two products, \"Feelz - Space Cowboy 3.5g\" and \"FLOWERS 3.5G,\" but there are three \"nan\" entries in between them. Are these also products or do they refer to something else? \n\nPlease provide more information so that we can assist you better. Thank you.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:15:53", "2023-06-26T12:15:56.829190", "chatcmpl-7VlyjtLG33m9tdUl8Ls4RvnuhYsWd", "openai", "rbtf91s6", 3.829190058999302, 53, 97, 150]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_285_9e62cb22723c48f82940.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_285_9e62cb22723c48f82940.table.json new file mode 100644 index 0000000000000000000000000000000000000000..960578d93389129356cd03f961e0b8cd51395066 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_285_9e62cb22723c48f82940.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Thank you for your message. It appears to be a product order for \"Champelli | Xclusivo 3.5g\" in the amount of \"3.5\". Can you please confirm the delivery address and payment method for this order? Thank you.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:15:59", "2023-06-26T12:16:02.225164", "chatcmpl-7VlypMcObtUe5H0UvyS9duEjEZIWr", "openai", "rbtf91s6", 3.225164195000616, 73, 54, 127]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_286_04f194983319b3c88323.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_286_04f194983319b3c88323.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b6d63a06abfbc42aa5ea3241b1bbdb94d767bfbf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_286_04f194983319b3c88323.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: This is a system message for bl-073133213364. Your order for CAM - Mellowz #7 7g and FLOWERS 7G has been confirmed. Thank you for your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:16:01", "2023-06-26T12:16:02.663866", "chatcmpl-7VlyrthXnlykysIcsrgcdp8xgYabn", "openai", "rbtf91s6", 1.6638662909990671, 51, 43, 94]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_287_808dc3cb5d0c022d66dc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_287_808dc3cb5d0c022d66dc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ecf2d0f98ab2bde1bfa0a63c03cb2141e1d2cbf4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_287_808dc3cb5d0c022d66dc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Sorry, I don't understand what you're asking for. Can you please provide more information or clarify your request?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:16:05", "2023-06-26T12:16:07.050588", "chatcmpl-7VlyvlJcufD75SWdt34cRlIwrtLxe", "openai", "rbtf91s6", 2.0505876170009287, 61, 23, 84]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_288_aa43de08697c943e22b3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_288_aa43de08697c943e22b3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..193c2a678ea222741ba546d7c361cdc06d20d63f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_288_aa43de08697c943e22b3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Thank you for choosing our GPT-4 system. \n\nBased on your input, it looks like you're interested in a cannabis concentrate product called \"Pink Lemonade Crushed Diamonds\" by Raw Garden. This product contains 1 gram of concentrate and has a nan level potency rating. \n\nPlease keep in mind that cannabis products may have legal restrictions in your area, so be sure to check your local laws and regulations before making any purchases. Also, remember to consume cannabis responsibly and only in accordance with applicable laws. \n\nLet us know if you have any other questions or if there's anything else we can help you with!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:16:06", "2023-06-26T12:16:10.655968", "chatcmpl-7VlywybfRs8HLlzl2oollRrf255WR", "openai", "rbtf91s6", 4.655967651000537, 56, 125, 181]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_289_07243f12e5abfbf4ec56.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_289_07243f12e5abfbf4ec56.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6f9dd2f68c8ae347b56cad8d54e22cac7f5cd53f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_289_07243f12e5abfbf4ec56.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: The product you are mentioning is Chill Medicated Watermelon Syrup, which contains 250mg of active components (likely THC or CBD). Chill Medicated is a brand that produces cannabis-infused products, such as syrups and edibles. It's essential to note that cannabis products can have varying effects on individuals and should be consumed responsibly. Also, make sure to follow any local or regional laws regarding the purchase and use of such items.\n", "gpt-4-0314", "2023-06-26T12:21:51", "2023-06-26T12:22:00.903285", "chatcmpl-7Vm4VLLpp1t9ISA8RsHB9SOREpG8s", "openai", "rbtf91s6", 9.90328518899878, 54, 90, 144]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_28_f0dffb5b71a631264ecc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_28_f0dffb5b71a631264ecc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bfaf96810c880a4d89535883f9ea871649c5065a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_28_f0dffb5b71a631264ecc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1.0\n", "gpt-4-0314", "2023-06-26T11:49:13", "2023-06-26T11:49:14.725664", "chatcmpl-7VlYv20nevHI3YLfBTdRNkFReuKfR", "openai", "rbtf91s6", 1.7256644169992796, 132, 16, 148]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_290_271009645a52862198e4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_290_271009645a52862198e4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ce416214ce0246dbbd14f0b4c584f61b982bbf5e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_290_271009645a52862198e4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you might be looking for information about a specific cannabis strain called \"Feelz - Space Cowboy 3.5g\" or a product that includes \"FLOWERS 3.5G.\" Unfortunately, as an AI language model, I am not able to provide up-to-date information about specific products, their availability, or their effects.\n\nIt is important to note that cannabis products can vary in strength, composition, and effects depending on factors such as the strain, growing conditions, and production methods. If you are considering using a cannabis product, it is always a good idea to seek advice from a knowledgeable source, such as a licensed dispensary or a medical professional, to ensure that you select a product that is appropriate for your needs and legal in your area.\n\nPlease let me know if there's any other topic or general information you'd like me to help you with.\n", "gpt-4-0314", "2023-06-26T12:22:01", "2023-06-26T12:22:18.172025", "chatcmpl-7Vm4fMHuIogI8LIYNclHB4lsAU980", "openai", "rbtf91s6", 17.1720249480004, 51, 179, 230]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_291_e1bfe497fb6fe4766880.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_291_e1bfe497fb6fe4766880.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8fb4780d75560fa96aa2387dabd351e4cca47616 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_291_e1bfe497fb6fe4766880.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It seems like you are looking for information on Champelli Xclusivo 3.5g eighths. Champelli is a cannabis brand known for its high-quality products. Xclusivo, a product by Champelli, is available in 3.5g (eighths) pre-packaged quantities for convenience. PackedBud refers to the well-packed nature of the cannabis in the container, ensuring freshness and quality. So, you can expect to experience a great level of satisfaction from Champelli Xclusivo 3.5g eighths. Please let me know if you need more information or if you have any questions.\n", "gpt-4-0314", "2023-06-26T12:22:19", "2023-06-26T12:22:30.642586", "chatcmpl-7Vm4xLTbyMueCEvu8KF6bJqINlMYx", "openai", "rbtf91s6", 11.642586151001524, 71, 133, 204]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_292_b655b0331805b1ec9b6c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_292_b655b0331805b1ec9b6c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7a85939448f305072d698af8bc7b44c1c3737f14 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_292_b655b0331805b1ec9b6c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're inquiring about a product. Please provide more context or details about what information you'd like to know, and I'd be happy to help you.\n", "gpt-4-0314", "2023-06-26T12:22:31", "2023-06-26T12:22:36.845338", "chatcmpl-7Vm59q98mj8vyuGVARSMP5CbdZodk", "openai", "rbtf91s6", 5.845338338000147, 49, 37, 86]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_293_41fbd9101219f570fcbc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_293_41fbd9101219f570fcbc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..087d58c0380d3fa59178e4f130504b954c92bc72 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_293_41fbd9101219f570fcbc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for Bubblegum Gelato Sizzurp 1000mg, a product from Backpack Boyz. This product is a tincture, which is a liquid extract made from plants, herbs or other materials for various purposes, including medicinal.\n\nPlease note that I am an AI language model and cannot provide specific information on the availability or effectiveness of a product. It's always best to consult a healthcare professional or your local dispensary for personalized advice on using any cannabis-related products.\n\nIf you have any other questions or need information, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:22:37", "2023-06-26T12:22:55.444098", "chatcmpl-7Vm5FIAbtaeVp7FAjawABXUff7Y7D", "openai", "rbtf91s6", 18.44409793200066, 59, 120, 179]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_294_7f49f04e464ef2d6b35b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_294_7f49f04e464ef2d6b35b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c7702f0ecce21e72003107ef13d1988bc8b17907 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_294_7f49f04e464ef2d6b35b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hi there, it seems like you want some information about Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. \n\nRaw Garden is well-known for producing high-quality cannabis concentrates. Their Pink Lemonade Crushed Diamonds is a 1-gram cannabis concentrate that offers a flavorful and potent experience for users.\n\nProduct: Pink Lemonade Crushed Diamonds\nBrand: Raw Garden\nType: Cannabis Concentrate\nSize: 1 gram\n\nUnfortunately, I cannot provide you with the pricing or availability information as it may vary depending on your location. To find out more about this product or to purchase it, I recommend visiting a local dispensary or checking out Raw Garden's official website. Make sure to follow your local laws and regulations when using cannabis products.\n", "gpt-4-0314", "2023-06-26T12:22:56", "2023-06-26T12:23:16.814301", "chatcmpl-7Vm5Yrg4Ckp4c7GydaeS07LYcc4Tf", "openai", "rbtf91s6", 20.814300846999686, 54, 152, 206]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_295_ab1eab03baaf964218b7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_295_ab1eab03baaf964218b7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5dab678e0f250583e6c702e3ac17aa758ad702 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_295_ab1eab03baaf964218b7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Product: Baby Jeeter Peaches\nType: Infused Preroll 5-pack\nWeight: 2.5g\nBrand: Jeeter\n\nThe Baby Jeeter Peaches is a 5-pack of infused prerolls by the brand Jeeter. These prerolls contain a blend of flavorful peach essence and high-quality cannabis, ensuring a smooth and enjoyable smoking experience. With a total weight of 2.5 grams, each preroll is infused with a generous amount of cannabis, making them perfect for a satisfying smoke session with friends or when you need that extra relaxation alone. So, enjoy the fruity flavor and experience the delightful effects of Baby Jeeter Peaches, a delicious and convenient way to consume cannabis.\n", "gpt-4-0314", "2023-06-26T12:23:17", "2023-06-26T12:23:30.177005", "chatcmpl-7Vm5tXEO0odxVFrpy2xldskffLMK6", "openai", "rbtf91s6", 13.177004694000061, 59, 145, 204]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_296_ed00f01aeda292c6ca5c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_296_ed00f01aeda292c6ca5c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6a41c27dd10657d8786e32fa05838850c0096c82 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_296_ed00f01aeda292c6ca5c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). Let me provide some details for you.\n\nProduct: Truffle Pupil Indoor Blunt\nCompany: Ocean Breeze Cultivators\nWeight: 1g\n\nUnfortunately, I don't have exact details about the specific strain and its effects, but if Truffle Pupil is a product from Ocean Breeze Cultivators, it's likely that they've taken great care in cultivating and processing it.\n\nTo ensure the best experience, it's always a good idea to consult with a knowledgeable dispensary or representative from the company, as they can provide more information on the product, its effects, and recommended usage.\n\nIf you have any other questions or need additional information, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:23:31", "2023-06-26T12:23:52.963552", "chatcmpl-7Vm67lqgdKbWNn8QsQvy9LZrZKspP", "openai", "rbtf91s6", 21.963552010000058, 66, 168, 234]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_297_4532221c10cda3ad6889.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_297_4532221c10cda3ad6889.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c80923e21e07bb21b488cae0044d00ecc377c51a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_297_4532221c10cda3ad6889.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It seems like you're referring to a Triple Scoop Preroll 1g Joint by Cookies, which is a cannabis product that comes in a pre-rolled joint form. Cookies is a brand known for its quality cannabis products, and Triple Scoop is one of their strains. The 1g designation indicates that each joint contains 1 gram of cannabis.\n\nTriple Scoop is a hybrid strain created by crossing three popular strains: Gelato, Sorbet, and Orange Sherbet. This combination creates a unique and flavorful experience for users, with sweet and fruity notes alongside a potent, balanced high.\n\nRemember that cannabis products are for adults 21 and over, and should be used responsibly and in accordance with local laws and regulations.\n", "gpt-4-0314", "2023-06-26T12:23:53", "2023-06-26T12:24:12.812932", "chatcmpl-7Vm6TcaoZ69np5b20T24mbrsZUStD", "openai", "rbtf91s6", 19.812932016999184, 65, 147, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_298_c2bbe42518bc12d5c93c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_298_c2bbe42518bc12d5c93c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3168d35b06eebb4ba90db89f8eacd0e94b04df8d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_298_c2bbe42518bc12d5c93c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of vape product with a Birthday Cake flavor. Unfortunately, some information is missing from your input, such as the price and seller. If you have any specific questions about this product or need more information, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:24:14", "2023-06-26T12:24:20.592122", "chatcmpl-7Vm6ofkYp5UCthY7ZMYakVtmBaQG9", "openai", "rbtf91s6", 6.592121548999785, 54, 77, 131]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_299_a6832fba5289e98d0a20.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_299_a6832fba5289e98d0a20.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f795906d5c5255d8e8ff5604535aad7d32081d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_299_a6832fba5289e98d0a20.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information on the Infused Joint product called TangEray, which is a collaboration between Cookies and The Grower Circle. This indoor-grown cannabis product contains 1g of product.\n\nUnfortunately, I couldn't find specific details on the THC percentage, CBD percentage, and other components. However, Cookies and The Grower Circle are reputable brands known for their high-quality cannabis products.\n\nTheir TangEray Infused Joint is likely to provide a smooth and potent experience for the user. As always, remember to consume responsibly and abide by your local laws and regulations on cannabis use.\n", "gpt-4-0314", "2023-06-26T12:24:21", "2023-06-26T12:24:33.597947", "chatcmpl-7Vm6vhr30TmyDQslyz8avC6MJ9WHx", "openai", "rbtf91s6", 12.597946627000056, 56, 124, 180]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_29_8ad3c3815486e75806f1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_29_8ad3c3815486e75806f1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..14ec738909cf07a5cbb5864169f94324a8a5a375 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_29_8ad3c3815486e75806f1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Pod,1G,Birthday Cake,1.0\n", "gpt-4-0314", "2023-06-26T11:49:15", "2023-06-26T11:49:18.695667", "chatcmpl-7VlYxSUsNn2ocwVLFRjzCCFL2N1F9", "openai", "rbtf91s6", 3.6956665549996615, 121, 16, 137]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_2_ce214e3588b2f01d62f6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_2_ce214e3588b2f01d62f6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9196a4a22c5ef81fbccc8624e1c43b2472571ef9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_2_ce214e3588b2f01d62f6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers.\n\nFor more information on the product or strain specifics, or if you have any other questions, feel free to ask.\n", "gpt-4-0314", "2023-06-26T11:44:16", "2023-06-26T11:44:24.059701", "chatcmpl-7VlU80b0m00VaiGymtj9dbqOggTgR", "openai", "rbtf91s6", 8.059701299000153, 71, 91, 162]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_300_9e55ca22404704d4610d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_300_9e55ca22404704d4610d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e7e4f5c112aff0cc337111e25dabe8a0488d0450 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_300_9e55ca22404704d4610d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: It seems like you are providing information about a product. Let me help you summarize the details:\n\nProduct: Kanha - Nano Blood Orange Bliss Indica Gummy\nQuantity: 10 Count\nTotal Potency: 100mg\nBrand: Kanha\n\nThis product is a pack of 10 gummies from the brand Kanha, featuring a Nano Blood Orange Bliss Indica flavor. The entire pack has a total potency of 100mg.\n", "gpt-4-0314", "2023-06-26T12:24:34", "2023-06-26T12:24:43.060163", "chatcmpl-7Vm78Golxgq9CQ2QdKzH6V2l0TY1a", "openai", "rbtf91s6", 9.060163399000885, 57, 90, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_301_a352cfacad1296a11479.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_301_a352cfacad1296a11479.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d7ba698f7c51f7bcd4d237443803de88c9956be6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_301_a352cfacad1296a11479.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hello! It seems like you're referring to a specific cannabis product: BOBBI HYLL Indoor 3.5g by Fresca. The information provided mentions that it is a flower product with a quantity of 3.5 grams. If you have any questions or need more information about this product, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:24:44", "2023-06-26T12:24:53.007826", "chatcmpl-7Vm7II8Tk14g7UJlmUb10WjKU9zRU", "openai", "rbtf91s6", 9.007825820999642, 51, 67, 118]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_302_b7a821ef6e77dd94507d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_302_b7a821ef6e77dd94507d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..87411cfa493187a39e949ef78159d9acd8d43d67 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_302_b7a821ef6e77dd94507d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Hello! It seems you are inquiring about the Flav Blueberry Belts 100mg edible product. This is a cannabis-infused edible produced by Flav, and each pack contains 10 pieces with a dosage of 10mg of THC per piece. These Blueberry Belts offer a delicious blueberry flavor and can provide an enjoyable and discreet way to consume cannabis. It's important to start with a low dose, especially if you are inexperienced with cannabis edibles, and wait for the effects to set in before consuming more.\n", "gpt-4-0314", "2023-06-26T12:24:53", "2023-06-26T12:25:08.182244", "chatcmpl-7Vm7RspewqFQUY2Rh1ZLynNAkyqt7", "openai", "rbtf91s6", 15.182243768998887, 51, 108, 159]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_303_2dce1966b92d248c092e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_303_2dce1966b92d248c092e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..17def97d3ce75a73c5243b6bbe73d0a51ddfe5b1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_303_2dce1966b92d248c092e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Product Name: Cherry Pie - 1g - Pod\nProducer: Left Coast Extracts\nProduct Type: Vape\nTHC Content: Not specified\nCBD Content: Not specified\n\nDescription: The Cherry Pie 1g Pod by Left Coast Extracts provides a flavorful and enjoyable vaping experience. Loaded with the classic Cherry Pie strain, this vape pod offers a burst of sweet cherry flavors with earthy undertones that have the potential to produce both relaxing and uplifting effects. To fully enjoy this product, it's important to know that the exact THC/CBD content is not specified, so it might not be an ideal choice for users with particular preferences or requirements. Make sure to purchase from a reputable source to ensure product authenticity and quality.\n", "gpt-4-0314", "2023-06-26T12:25:09", "2023-06-26T12:25:23.124015", "chatcmpl-7Vm7hlAAoFq0kdfiKwpCfhH8XpBuY", "openai", "rbtf91s6", 14.124014597000496, 46, 148, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_304_7777315b298099a1b3c0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_304_7777315b298099a1b3c0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5f56be1d2d93cd76f13b67db71537efe4180c482 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_304_7777315b298099a1b3c0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: It seems like you are inquiring about the Minntz Emerald Cut Indoor Joint - 1g. Minntz is a cannabis brand known for producing high-quality products. The Emerald Cut Indoor Joint is a pre-rolled joint containing 1 gram of cannabis flower, which is intended for indoor consumption.\n\nPlease note that I am an AI language model and cannot provide information on the specific strain or effects of this product. It is essential to consult with a knowledgeable source or the product's packaging for accurate information on the strain, THC and CBD levels, and potential effects this particular joint may have. \n\nIn addition, it is crucial to be aware of your local laws regarding the purchase and consumption of cannabis products. If you have any questions or concerns, please consult with a legal expert or local authorities in your region.\n", "gpt-4-0314", "2023-06-26T12:25:23", "2023-06-26T12:25:38.533229", "chatcmpl-7Vm7vbSL4mlQ5kigWpOYHoReVJikW", "openai", "rbtf91s6", 15.533228841999517, 53, 163, 216]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_305_0e602ebd329d7d32ee61.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_305_0e602ebd329d7d32ee61.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fc5a4abbaf1bbf203f4640be8dd6de7657855286 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_305_0e602ebd329d7d32ee61.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello and thank you for your query. It appears that you are inquiring about a product called \"The Growers Circle - Double Down - Indoor - 3.5g.\" This product is likely to be high-quality cannabis, often used for recreational or medicinal purposes.\n\nThe Growers Circle refers to a group or a company responsible for growing and supplying cannabis products. \"Double Down\" is likely a specific strain or variety of cannabis produced by The Growers Circle, with its own distinctive characteristics, effects, and flavors.\n\nConsidering it's grown indoors, The Growers Circle might be utilizing climate-controlled, hydroponic, or other advanced techniques to cultivate cannabis. This typically results in high-quality products.\n\nThe \"3.5g\" in the name denotes the weight of the product, indicating that it is available in packages containing 3.5 grams of cannabis.\n\nPlease note that the legality of purchasing or consuming cannabis products depends on the jurisdiction you are in, so make sure to check your local laws and regulations beforehand.\n", "gpt-4-0314", "2023-06-26T12:25:39", "2023-06-26T12:25:57.179501", "chatcmpl-7Vm8BmnXsUAsk4MvSskJKJwzb6WCH", "openai", "rbtf91s6", 18.179501377000634, 51, 204, 255]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_306_7dd0362a2a53829bd6ec.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_306_7dd0362a2a53829bd6ec.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5e9cc2ce8b0e4d1f802e946f45e595998bf077b3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_306_7dd0362a2a53829bd6ec.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription: The Blue Dream Roll Your Own Sugar Shake is a 14g bag of cannabis shake, ideal for rolling your own joints or using it in edibles. This popular strain is well-known among cannabis enthusiasts for its balanced high and sweet, berry-like flavor. Manufactured by Pacific Stone, you can trust the quality and consistency of these flowers. Prices may vary based on location and availability. Patients with a valid medical marijuana card should consult with their healthcare provider to ensure appropriate use.\n", "gpt-4-0314", "2023-06-26T12:25:58", "2023-06-26T12:26:09.940925", "chatcmpl-7Vm8UIVSykVsi1IUzy0X9dXBRmBAH", "openai", "rbtf91s6", 11.940925345001233, 47, 121, 168]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_307_61ff8191978fc2e8f0f5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_307_61ff8191978fc2e8f0f5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9c0ec153f059a8f3affe222815f87a5f0f4e2597 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_307_61ff8191978fc2e8f0f5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems that you are looking for information about a product called \"The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\" I apologize, but I need more information or a clear question to help you better with this inquiry. Please feel free to ask any specific question about this product or any other related topic, and I'll be happy to assist you.\n", "gpt-4-0314", "2023-06-26T12:26:10", "2023-06-26T12:26:23.277105", "chatcmpl-7Vm8gZ09sBnzx1zkj03TTeYEVyzjI", "openai", "rbtf91s6", 13.277104716000395, 61, 88, 149]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_308_586350916283006c346d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_308_586350916283006c346d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..19ebaca10a5f4a131a9e3b9971b1058cc577187b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_308_586350916283006c346d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information about \"Flight Bites - S'mores - Gummy - 10ct - 100mg\" product. Here's a brief description for you:\n\nFlight Bites are delicious and enjoyable s'mores-flavored gummies that come in a 10-count pack, with each gummy containing 10mg of active ingredient, resulting in a total of 100mg per package. These gummies are perfect for those who love the classic taste of s'mores and are looking for a convenient, precisely dosed, and portable edible option.\n\nPlease note that I am an AI language model, and I do not have the ability to provide exact product details or availability, as well as any legal concerns or restrictions in your area. Always ensure to follow regulations and purchase from authorized retailers.\n\nIf you have any further questions or need assistance, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:26:24", "2023-06-26T12:26:49.451196", "chatcmpl-7Vm8uzbMqdV5Q17vb16Q0Y9VK3TBg", "openai", "rbtf91s6", 25.451196092999453, 57, 182, 239]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_309_72731c91a0c7b3176d87.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_309_72731c91a0c7b3176d87.table.json new file mode 100644 index 0000000000000000000000000000000000000000..929a839a42ec39d96408a6662dbcb7b0be743abf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_309_72731c91a0c7b3176d87.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems you are inquiring about Chill Medicated Watermelon Syrup with 250mg strength. Unfortunately, I am an AI language model and cannot provide real-time information on product availability or current pricing. However, I am happy to provide you with general information about the product.\n\nChill Medicated Watermelon Syrup is an infused syrup that can be used to enhance your food or beverage experience. It contains 250mg of THC, which is a psychoactive compound found in cannabis. This syrup may provide relief from pain, stress, and anxiety while promoting relaxation and a sense of euphoria, depending on the individual's tolerance and dosage. It might also be an effective sleep aid for some users.\n\nTo use Chill Medicated Watermelon Syrup, you can measure out your desired dose and mix it into your favorite drinks, like lemonades, teas, or smoothies. You can also drizzle it on top of your favorite desserts or mix it into recipes for an elevated culinary experience.\n\nPlease note that it is essential to start with a low dose, especially if you are new to edibles or have a low tolerance. Effects can take anywhere from 30 minutes to 2 hours to onset, so be patient and give the syrup enough time to take effect before consuming more. Additionally, please remember to keep this product out of the reach of children and consume it responsibly.\n\nIf you are interested in purchasing Chill Medicated Watermelon Syrup, I recommend contacting your local dispensaries or searching for online retailers that ship to your area.\n\nIf you have additional questions or require information about this product, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:26:50", "2023-06-26T12:27:32.740662", "chatcmpl-7Vm9KTRUIof7A3ctrfrmJNs7cjW7t", "openai", "rbtf91s6", 42.7406624489995, 55, 326, 381]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_30_d3341317a350913a08a0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_30_d3341317a350913a08a0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..15cbea764876445074cef496dbc5106e7d160fb2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_30_d3341317a350913a08a0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies,Preroll,Infused Joint,TangEray,1\n", "gpt-4-0314", "2023-06-26T11:49:19", "2023-06-26T11:49:21.188083", "chatcmpl-7VlZ1KSt0BTGNncirPDed8YKdYJVa", "openai", "rbtf91s6", 2.1880831389999003, 123, 15, 138]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_310_93ecb912766725835edf.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_310_93ecb912766725835edf.table.json new file mode 100644 index 0000000000000000000000000000000000000000..27f45550a5e580ed15049aa6207db36f0ac31132 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_310_93ecb912766725835edf.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Hello! It looks like you're interested in Feelz - Space Cowboy 3.5g flowers. Space Cowboy is a unique strain that often provides users with an uplifting and creative experience. If you need any assistance or information about this strain or any other product, please feel free to ask, and I'll be happy to help!\n", "gpt-4-0314", "2023-06-26T12:27:33", "2023-06-26T12:27:42.835776", "chatcmpl-7VmA1e4qLxt6CyrZ91XlFO38rUJjP", "openai", "rbtf91s6", 9.835775569999896, 52, 67, 119]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_311_013d33c7fad306d40a14.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_311_013d33c7fad306d40a14.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fe20b604e52938e8b5477921023fa07299723fee --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_311_013d33c7fad306d40a14.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Hello! It looks like you're interested in the Champelli Xclusivo 3.5g Eighths. This premium cannabis strain is pre-packed in a 3.5-gram container, providing a convenient option for those who enjoy high-quality cannabis products.\n\nChampelli is known for its quality, craftsmanship, and dedication to producing an exclusive and refined cannabis experience. The Xclusivo strain in 3.5g Eighths is perfect for those who wish to indulge in the luxuries that the Champelli brand offers, while still enjoying the convenience of pre-packaged quantities.\n\nPlease note that the availability of this product may vary depending on your location and local regulations. Always ensure that you are purchasing and using cannabis products responsibly and within the boundaries set by your local laws.\n", "gpt-4-0314", "2023-06-26T12:27:44", "2023-06-26T12:27:57.956293", "chatcmpl-7VmACPLuFJeEcbGGiPxBGaz8Z3jZR", "openai", "rbtf91s6", 13.956293383998855, 72, 159, 231]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_312_70a2a6e4db10f0948a06.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_312_70a2a6e4db10f0948a06.table.json new file mode 100644 index 0000000000000000000000000000000000000000..90b454e7a8e31a66571501371eeec3763e3786f5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_312_70a2a6e4db10f0948a06.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're trying to inquire about a product, \"Mellowz #7 7g\" in the \"FLOWERS 7G\" category. However, some parts of the provided information are unclear or missing (nan values). To better assist you, can you please provide more context and specific information about what you're looking for?\n", "gpt-4-0314", "2023-06-26T12:27:59", "2023-06-26T12:28:06.332722", "chatcmpl-7VmARsatLOqlk8La0TDpDKLivlUP7", "openai", "rbtf91s6", 7.332722514000125, 50, 72, 122]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_313_80376fdbfd206093c1db.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_313_80376fdbfd206093c1db.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b5437b61c54816777d5525d7acde2d16070a557e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_313_80376fdbfd206093c1db.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg. Backpack Boyz is a brand known for its premium cannabis products, and Bubblegum Gelato Sizzurp is a tincture with 1000mg of THC content.\n\nUnfortunately, I could not find specific details or reviews of this product. It is important to note that products containing cannabis may not be legal in your area, so please research your local laws before attempting to purchase any cannabis-related goods.\n\nIf you have any specific questions or need more information on Backpack Boyz or their products, please feel free to ask, and I'll do my best to help you out.\n", "gpt-4-0314", "2023-06-26T12:28:06", "2023-06-26T12:28:19.627025", "chatcmpl-7VmAYeGlvnyGqOzFzoC0SDJ5f3rtt", "openai", "rbtf91s6", 13.627024585999607, 60, 146, 206]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_314_8b7336d504ab6624d8bc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_314_8b7336d504ab6624d8bc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fbb90e64186463ea8586e963433085ad7eee1e6a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_314_8b7336d504ab6624d8bc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds. This is a 1g concentrate that offers a delightful and flavorful cannabis experience. Raw Garden is known for its high-quality products, and this concentrate is no exception.\n\nThe Pink Lemonade Crushed Diamonds is a type of cannabis concentrate that provides a potent and enjoyable experience for users. Keep in mind that concentrates can be quite strong, so start with a smaller dose if you're new to this form of consumption, and gradually increase as needed.\n\nWhile the price may vary based on location and availability, you can typically expect to pay around $45-60 for 1g of this product. Make sure to visit your local dispensary or check online for availability and current pricing in your area.\n\nFeel free to ask any additional questions you may have!\n", "gpt-4-0314", "2023-06-26T12:28:20", "2023-06-26T12:28:35.355322", "chatcmpl-7VmAmijk4KMNnHk9Axg2hPY4yVqlB", "openai", "rbtf91s6", 15.355322374000025, 55, 168, 223]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_315_85f8bb6328628589bf20.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_315_85f8bb6328628589bf20.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b5df29471a206ca68664fe727b45d940697f5c7f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_315_85f8bb6328628589bf20.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Product Name: Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\nBrand: Jeeter\nCategory: Infused Prerolls\nDescription: Unfortunately, I am an AI language model and do not have the capacity to provide product descriptions. However, I can tell you that this product appears to be a 5-pack of Baby Jeeter Peaches infused prerolls, which may contain cannabis and are potentially flavored or enhanced to resemble the taste or aroma of peaches. The total weight of the product is 2.5 grams. It is advisable to check the retailer's site or contact the brand for more information on their products.\n", "gpt-4-0314", "2023-06-26T12:28:36", "2023-06-26T12:28:50.220004", "chatcmpl-7VmB2PdmPhwOX7bigF6Y0VoDTeQVt", "openai", "rbtf91s6", 14.22000396600015, 60, 137, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_316_54032f7f2a3cdc090567.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_316_54032f7f2a3cdc090567.table.json new file mode 100644 index 0000000000000000000000000000000000000000..380d088291f90211660f872d06dbefd039af2a5a --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_316_54032f7f2a3cdc090567.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! It seems like you're looking for information about a product:\n\nProduct Name: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g\n\nBrand: Ocean Breeze Cultivators\n\nStrain: Truffle Pupil\n\nType: Indoor Grown\n\nForm: Blunt\n\nWeight: 1 gram\n\nUnfortunately, I am currently unable to pull up specific information about this product, as I am an AI language model and do not have real-time information. However, you can usually find detailed information about products like this on the brand's website or through a licensed cannabis dispensary.\n\nIf you have any questions about cannabis or related products, feel free to ask and I'll do my best to help!\n", "gpt-4-0314", "2023-06-26T12:28:51", "2023-06-26T12:29:05.987635", "chatcmpl-7VmBHMUVCiNoRy821L9rmQ2LNXzI9", "openai", "rbtf91s6", 14.987635106999733, 67, 151, 218]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_317_c49519f9063d64072361.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_317_c49519f9063d64072361.table.json new file mode 100644 index 0000000000000000000000000000000000000000..69be381ea1bda5133c5702644488af1a5db5f7d9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_317_c49519f9063d64072361.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It seems like you're interested in Cookies Triple Scoop Preroll 1g joints.\n\nCookies Triple Scoop Preroll joints are made with high-quality cannabis flower, expertly rolled for a smooth, even burn. A 1g preroll joint is a convenient way to enjoy the effects of this hybrid strain for both beginners and experienced cannabis users.\n\nTriple Scoop is a cross between Gelato and Sorbet, producing a balanced and flavorful experience with notes of berry, citrus, and cream. It's known for its uplifting and relaxing effects, making it perfect for socializing or kicking back after a long day.\n\nEnjoy your Cookies Triple Scoop Preroll responsibly and remember to always follow the guidelines in your jurisdiction.\n", "gpt-4-0314", "2023-06-26T12:29:06", "2023-06-26T12:29:26.634822", "chatcmpl-7VmBWSXysPqzYxh0hwV6onkFsO2JY", "openai", "rbtf91s6", 20.634822305000853, 66, 146, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_318_f6db2a296b5c4bdd4919.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_318_f6db2a296b5c4bdd4919.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fd8ab16e3e29884c48eef792160d382277e76551 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_318_f6db2a296b5c4bdd4919.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen cartridge contains 1 gram of Birthday Cake strain, which is an appealing option for vaping enthusiasts. Unfortunately, some information is missing in your message, such as the price. Please provide more details or ask any questions you may have so I can help you better.\n", "gpt-4-0314", "2023-06-26T12:29:28", "2023-06-26T12:29:36.505669", "chatcmpl-7VmBsDbyZ1KwxbjVPkH7tPRWdfoKF", "openai", "rbtf91s6", 8.50566868200076, 55, 77, 132]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_319_2b5c784578f514dffd8a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_319_2b5c784578f514dffd8a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..be3d1df19c082f8f7cedd94e2aab3facbfaca9ae --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_319_2b5c784578f514dffd8a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems like you are inquiring about a product called \"TangEray,\" which is a 1g Indoor Infused Joint offered by Cookies x The Grower Circle. \n\nTangEray is a cannabis pre-roll joint infused with a blend of potent cannabis oils and/or concentrates to elevate the smoking experience and deliver an impactful high. Cookies x The Grower Circle is likely a collaboration between two cannabis brands or growers, known for their quality products.\n\nKeep in mind that this product is intended for adult use only and should be consumed responsibly. It's important to use cannabis products in accordance with your local laws and regulations.\n", "gpt-4-0314", "2023-06-26T12:29:37", "2023-06-26T12:29:47.134894", "chatcmpl-7VmC1pEa2fVLtylYU86aambqqtl2B", "openai", "rbtf91s6", 10.134893788001136, 57, 126, 183]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_31_dfcffcde603ff58613e3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_31_dfcffcde603ff58613e3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..05e634ab3bc6b03eb1b93e2a90b27773f64de198 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_31_dfcffcde603ff58613e3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Gummies,Blood Orange Bliss,Indica,100\n", "gpt-4-0314", "2023-06-26T11:49:22", "2023-06-26T11:49:23.509399", "chatcmpl-7VlZ4RiZs5w7f20DZBJ9sJGUpOi8C", "openai", "rbtf91s6", 1.509399356999893, 124, 14, 138]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_320_c3104ef81eaee8a66ead.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_320_c3104ef81eaee8a66ead.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f27409bbcbeb46016817e451aab5370247cea414 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_320_c3104ef81eaee8a66ead.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Hello! It looks like you are interested in the Kanha Nano Blood Orange Bliss Indica Gummies. These gummies come in a pack of 10, with a total of 100mg of THC. They are infused with indica cannabis extract, providing a relaxing and soothing effect. These blood orange-flavored gummies are also nano-infused, which means they have a faster onset time and more efficient absorption. As with all cannabis products, it is important to start with a low dosage and gradually adjust to find the right dose for you. Enjoy responsibly and keep out of the reach of children.\n", "gpt-4-0314", "2023-06-26T12:29:47", "2023-06-26T12:29:58.303658", "chatcmpl-7VmCBGhrrMFKXttg7jtPTGiKMFl75", "openai", "rbtf91s6", 11.303658319000533, 58, 120, 178]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_321_1c3263e455e2b016838f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_321_1c3263e455e2b016838f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9ee948140410c1ef1465fde4a16371f05426cd9f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_321_1c3263e455e2b016838f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Hello! It looks like you are inquiring about a product called \"BOBBI HYLL Indoor - 3.5g\" which is a Fresca Flower. Here is the information you have provided:\n\n- Brand: BOBBI HYLL\n- Strain: Fresca\n- Product type: Flower\n- Undefined value: nan\n- Quantity: 3.5g\n\nIf you have any questions or need more information about this product, please let me know and I'll be happy to help!\n", "gpt-4-0314", "2023-06-26T12:29:59", "2023-06-26T12:30:08.048163", "chatcmpl-7VmCNw4Px2vlIpgk36rFv8YqviGax", "openai", "rbtf91s6", 9.048163015999307, 52, 104, 156]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_322_33e1fcd30aa18c57cdd9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_322_33e1fcd30aa18c57cdd9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a069b10449a906600dfa1abd5e85e81f380752a4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_322_33e1fcd30aa18c57cdd9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Product: Flav Blueberry Belts 100mg\nBrand: Flav\nCategory: Edible\n\nDescription:\nFlav Blueberry Belts are deliciously sweet and tangy blueberry-flavored edible belts infused with 100mg of THC. These belts provide a tasty and convenient way to enjoy the relaxing and therapeutic effects of cannabis.\n\nEach Flav Blueberry Belt is pre-dosed with a consistent amount of THC, ensuring a reliable and enjoyable experience. They are perfect for both new and experienced users looking to indulge in a delicious and discreet way to consume cannabis.\n\nIf you are trying Flav Blueberry Belts 100mg or other edibles for the first time, it's important to start with a low dose and gradually increase it to find your desired effect. As with all edibles, the onset of effects can take up to 2 hours, so be patient and enjoy responsibly.\n", "gpt-4-0314", "2023-06-26T12:30:09", "2023-06-26T12:30:28.862251", "chatcmpl-7VmCXiZDIw30cKZwZ8qf3C183cri3", "openai", "rbtf91s6", 19.8622512560014, 52, 181, 233]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_323_03c2952ee439efd92fe0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_323_03c2952ee439efd92fe0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6e60ec0e4bc568022943d4d26f80a4489a222e09 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_323_03c2952ee439efd92fe0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: It seems like you're looking for information about \"Cherry Pie - 1g - Pod\" by Left Coast Extracts. This product is a vape pod containing 1 gram of Cherry Pie cannabis extract.\n\nCherry Pie is a hybrid cannabis strain known for its balanced effects, combining the energizing qualities of a Sativa with the relaxing properties of an Indica. The strain is a cross between Granddaddy Purple and Durban Poison, providing users with a delightful flavor reminiscent of sweet and sour cherries, with a touch of earthiness. \n\nLeft Coast Extracts is a company specializing in producing high-quality, lab-tested vape cartridges and pods made from premium cannabis extracts. They emphasize purity, potency, and consistency in their products.\n\nPlease note that the use of cannabis products is subject to legal regulations and varies depending on the location. Always ensure you are aware of and following local laws and guidelines pertaining to cannabis use.\n", "gpt-4-0314", "2023-06-26T12:30:29", "2023-06-26T12:30:48.705842", "chatcmpl-7VmCrWn4WRZSRmDaW7vYdgd4YrWtM", "openai", "rbtf91s6", 19.705842167999435, 47, 185, 232]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_324_d2f2f16ab726a907b814.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_324_d2f2f16ab726a907b814.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cf8fd20677ca6f26345e6221606fdab25512cd95 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_324_d2f2f16ab726a907b814.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Hello! It looks like you're interested in the Minntz - Emerald Cut, a 1g indoor joint. The Emerald Cut strain is known for its unique flavor profile and powerful effects.\n\nMinntz is a well-known cannabis brand that produces high-quality products. Unfortunately, I don't have the THC and CBD levels for the Emerald Cut strain, as they may vary between batches. To get the most accurate information, I'd recommend checking with the dispensary or retailer where you plan on purchasing the product.\n\nIf you have any other questions about this joint or cannabis in general, feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:30:50", "2023-06-26T12:31:07.505495", "chatcmpl-7VmDCC5kaiN84xgtOZBN2Ej4PbXtU", "openai", "rbtf91s6", 17.505495179999343, 54, 122, 176]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_325_eb3dcabcf4780e1dbdd7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_325_eb3dcabcf4780e1dbdd7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..18a440ec9efb493428ab3eb24543bc982974edc5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_325_eb3dcabcf4780e1dbdd7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems like you're inquiring about \"The Growers Circle - Double Down - Indoor - 3.5g.\" The Growers Circle is a brand known for their cannabis products, and the \"Double Down\" is one of their strains. This particular product comes in a 3.5g pack, perfect for personal or shared use. Note that it is an indoor-grown cannabis strain, which typically yields higher quality and potency compared to outdoor-grown products.\n\nHowever, it's important to remember that the effects and experience may vary depending on individual tolerance, method of consumption, and other factors. Always consume responsibly and talk to a professional or experienced user if you're unsure.\n", "gpt-4-0314", "2023-06-26T12:31:08", "2023-06-26T12:31:25.376988", "chatcmpl-7VmDUwkOrPhHrwu05oKD3rXJvwwE9", "openai", "rbtf91s6", 17.376987810999708, 52, 140, 192]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_326_3c61e3b23cd77c91d462.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_326_3c61e3b23cd77c91d462.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e2960e1a94c547f5225f97a06bb015fe74118208 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_326_3c61e3b23cd77c91d462.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Product: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription:\nPacific Stone's Blue Dream Roll Your Own Sugar Shake provides a convenient and cost-effective way to enjoy the classic Blue Dream strain. This 14-gram bag of shake features sugar trimmings that retain the flavors and effects of the Blue Dream cannabis plant. \n\nBlue Dream is a sativa-dominant hybrid strain, with a sweet berry aroma produced by its blend of Blueberry and Haze genetics. This strain is popular for its uplifting and creative effects, accompanied by a smooth, relaxing body high. Pacific Stone's Blue Dream Sugar Shake is perfect for those seeking a quality cannabis experience without breaking the bank. \n\nTo use this product, simply roll it into your preferred smoking delivery method or use it in a vaporizer.\n", "gpt-4-0314", "2023-06-26T12:31:25", "2023-06-26T12:31:40.243531", "chatcmpl-7VmDlF0EEn3pZ7aYcr9ZkzKSika8b", "openai", "rbtf91s6", 15.243530437999652, 48, 170, 218]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_327_9cdbba45b4048430e879.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_327_9cdbba45b4048430e879.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a36292780d4b28559864af6613d4ccab414d5ad2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_327_9cdbba45b4048430e879.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: It seems like you are referring to a product called \"The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\" I am not completely certain about the context or the information you're seeking. However, I can try to help. The description suggests that this product is a pack of 5 pre-rolled joints with a total weight of 2.5 grams. The strain appears to be a combination of Zoo Dawg and Cosa Nostra, which are likely cannabis strains.\n\nPlease provide more context or specific questions if you need further assistance.\n", "gpt-4-0314", "2023-06-26T12:31:41", "2023-06-26T12:32:01.002832", "chatcmpl-7VmE1i0tNTIsYo0R1F0jyMknUyOpT", "openai", "rbtf91s6", 20.002832105999914, 62, 124, 186]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_328_78ac9c5e3b6e5b945468.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_328_78ac9c5e3b6e5b945468.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5e1fc5c452a4b67219a2e8a4cc8557df4443c2f1 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_328_78ac9c5e3b6e5b945468.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! It seems you are inquiring about Flight Bites S'mores Gummy 10ct 100mg. Flight Bites are a delicious and convenient way to enjoy the benefits of THC. Each gummy contains 10 mg of THC, making them perfect for microdosing and controlled consumption. The S'mores flavor offers a tasty treat that satisfies your craving for the classic campfire snack while providing the relaxation and therapeutic effects of THC. If you have any further questions, please feel free to ask!\n", "gpt-4-0314", "2023-06-26T12:32:02", "2023-06-26T12:32:14.051090", "chatcmpl-7VmEMF7ah28KxpGIsyIOZd6NdKOjL", "openai", "rbtf91s6", 12.051090529999783, 58, 103, 161]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_329_965909ec681c4ef913c6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_329_965909ec681c4ef913c6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..85acd8c4151bfa69e2225e07cba26b6dae641a3f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_329_965909ec681c4ef913c6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: System Message: The product with ID co-2MFE5QVF is Chill Medicated - Watermelon - Syrup - 250mg, manufactured by Chill Medicated. However, the information provided for the product's category, subcategory, and class is not complete. Please update the product information.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:14", "2023-06-26T12:32:16.373158", "chatcmpl-7VmEYkCHctea1eIcPbI3JGqC0rUQs", "openai", "rbtf91s6", 2.3731573860004573, 56, 62, 118]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_32_f8d3a7353309399a0483.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_32_f8d3a7353309399a0483.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7ad8c1c8ff9066bb3d8b9e2c937d3eb852c3c1ab --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_32_f8d3a7353309399a0483.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Indoor,BOBBI HYLL,3.5\n", "gpt-4-0314", "2023-06-26T11:49:24", "2023-06-26T11:49:28.811948", "chatcmpl-7VlZ6htAo36Zg8Ad3OMIydlQXZFXa", "openai", "rbtf91s6", 4.8119477640002515, 118, 19, 137]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_330_335a7a60235138f3de82.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_330_335a7a60235138f3de82.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cafd513133a7ec2bf61f03aab64889ad2ca2afef --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_330_335a7a60235138f3de82.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Welcome to our system!\n\nWe have received your order with the following details:\n\nOrder Number: bl-111630024545\nProduct 1: Feelz - Space Cowboy 3.5g\nProduct 2: FLOWERS 3.5G\n\nWe will process your order as soon as possible. Thank you for choosing our service!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:17", "2023-06-26T12:32:19.635994", "chatcmpl-7VmEbSTgSO5xLvv5DZTdCc3nKrntO", "openai", "rbtf91s6", 2.635993772000802, 53, 70, 123]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_331_96de1b691d47a1c82fb3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_331_96de1b691d47a1c82fb3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4c8fc82e959fe83aab6bf61b2a006ded7469fe7d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_331_96de1b691d47a1c82fb3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: System Message: \n\nThank you for your order! Your order number is fl-8voAjt83sD. You have purchased 1 unit of Champelli | Xclusivo 3.5g | Eighths. The strain is Champelli and it will be in PackedBud form. The quantity purchased is 3.5. We will notify you once your order has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you for choosing us!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:20", "2023-06-26T12:32:23.971744", "chatcmpl-7VmEejKVd8agpTNtLwHckrTZTAkJw", "openai", "rbtf91s6", 3.9717439689993626, 73, 105, 178]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_332_25d31caa969d5a8052b4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_332_25d31caa969d5a8052b4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4cb186d56ff4318074903475a0c1f3f54772c221 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_332_25d31caa969d5a8052b4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: Hello there! This is a system message from GPT4. It appears that you have provided some product information, specifically an item code and product details of \"CAM - Mellowz #7 7g, FLOWERS 7G\". However, the second part of the product details seems to be missing a value - it says \"nan,nan\". Can you provide more information so I can assist you better? Thank you!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:25", "2023-06-26T12:32:28.507450", "chatcmpl-7VmEje0fjqZwD7309H7RXTtYTvzVU", "openai", "rbtf91s6", 3.507449937000274, 51, 88, 139]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_333_c8b24fa099d54e846170.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_333_c8b24fa099d54e846170.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3b3d326a0bb9301931effe07813abd56cb8c312d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_333_c8b24fa099d54e846170.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: System message: \n\nI'm sorry, but I don't understand the content of the message. Can you please provide me with more context or information so I can better assist you?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:29", "2023-06-26T12:32:30.497835", "chatcmpl-7VmEnrkBsw0ypXHpdVyRNsb7aQ9Wx", "openai", "rbtf91s6", 1.4978345819999959, 61, 36, 97]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_334_b918fae4d3c622ec87e9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_334_b918fae4d3c622ec87e9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5199f18adec95d75b6977af286b24815ac664782 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_334_b918fae4d3c622ec87e9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Welcome! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. This product is a high-quality cannabis extract crafted using state-of-the-art techniques. With its potent and delicious flavor profile, Pink Lemonade Crushed Diamonds is the perfect choice for cannabis enthusiasts who seek a premium concentrate. If you have any questions, please do not hesitate to ask, and we'll be happy to assist you.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:31", "2023-06-26T12:32:34.263557", "chatcmpl-7VmEp4BD0ubAFYS1wo6HY99BPs95g", "openai", "rbtf91s6", 3.263557321000917, 56, 87, 143]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_335_e346144c0b5955cf4519.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_335_e346144c0b5955cf4519.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e4b4ea64d596417cc568b0ca74c56986258fc7eb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_335_e346144c0b5955cf4519.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Hello! I see that you have entered the product code \"md-1159983\". Can you please provide me with more information about what you need help with regarding this product?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:35", "2023-06-26T12:32:36.671949", "chatcmpl-7VmEtoZgI78iluB0KXuZRagaL2w42", "openai", "rbtf91s6", 1.671948668999903, 61, 36, 97]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_336_49a56475bd5269497ce8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_336_49a56475bd5269497ce8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..453e9d5403cb023e03220a1b556f883e189634bf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_336_49a56475bd5269497ce8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Thank you for your order of 1g Ocean Breeze Cultivators' Truffle Pupil strain. Our team will process and package your order, and it will be shipped within the next 24 hours. Please keep an eye out for a confirmation email with your tracking information. Enjoy your purchase, and thank you for choosing Ocean Breeze Cultivators!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:37", "2023-06-26T12:32:39.857697", "chatcmpl-7VmEvjB5BVx6Wo6PVEHWBVih39Wfv", "openai", "rbtf91s6", 2.857697247998658, 68, 73, 141]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_337_e19ec2551ff4ec99de75.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_337_e19ec2551ff4ec99de75.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7baef1bdd02ac1ae133c00c451dfeff136ffa083 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_337_e19ec2551ff4ec99de75.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Hello there! Based on the information you provided, it seems like you have purchased a product called \"Cookies | Triple Scoop Preroll 1g\" which is a joint containing 1 gram of cannabis. Is there anything else I can assist you with?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:40", "2023-06-26T12:32:42.162319", "chatcmpl-7VmEyY9MIWJ6Db6gEfEkm53E4FYn6", "openai", "rbtf91s6", 2.162318728000173, 67, 53, 120]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_338_4eb0879be8337d382a18.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_338_4eb0879be8337d382a18.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4482040173b6f80a220138bdb9acc223626c230f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_338_4eb0879be8337d382a18.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! Thank you for your inquiry. It looks like you are interested in the STIIIZY Birthday Cake Pod 1g. Unfortunately, we could not find any information on the \"nan, VAPE PENS 1G, nan, 1.0\" part of your message. Can you please provide more information or clarify your request?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:43", "2023-06-26T12:32:45.689508", "chatcmpl-7VmF1BAiYMrtZPChkP51oMZiWEAbf", "openai", "rbtf91s6", 2.6895080600006622, 56, 71, 127]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_339_1b23fe1a7ccf6b0f515d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_339_1b23fe1a7ccf6b0f515d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9e30647d9f37e353cb9a2d55186e352e8f93a404 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_339_1b23fe1a7ccf6b0f515d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: System Message: Your request is unclear. Can you please provide more context or information so I can better understand your request?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:46", "2023-06-26T12:32:47.125197", "chatcmpl-7VmF4rwx8orPcVOc6NQgTGAYxXYdu", "openai", "rbtf91s6", 1.1251968760007003, 58, 24, 82]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_33_ab41ba80f80e90589641.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_33_ab41ba80f80e90589641.table.json new file mode 100644 index 0000000000000000000000000000000000000000..271ae56e1819a92c662639d3f39da19280b899fa --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_33_ab41ba80f80e90589641.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg,1\n", "gpt-4-0314", "2023-06-26T11:49:29", "2023-06-26T11:49:30.637900", "chatcmpl-7VlZB7P40LUm3Kv5jirqP0wWeA2bh", "openai", "rbtf91s6", 1.6378998049995062, 118, 15, 133]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_340_34ed0e72db8f3f453407.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_340_34ed0e72db8f3f453407.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f5442bf0e54868cb4e5a7413c562a7bbcb77648e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_340_34ed0e72db8f3f453407.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Hello! Your order with the code co-7YGGNHBR for Kanha Nano Blood Orange Bliss Indica Gummies (10 count, 100mg) has been received and is currently being processed. Thank you for choosing Kanha!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:48", "2023-06-26T12:32:50.106342", "chatcmpl-7VmF60Qi5onjWVImQETl8rOJelCeA", "openai", "rbtf91s6", 2.1063424309995753, 59, 49, 108]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_341_b1864d463100829bf6fc.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_341_b1864d463100829bf6fc.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1852c322f697a6879d3ef8c314981daec177d34b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_341_b1864d463100829bf6fc.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Thank you for your order, Bobbi Hyll! Your order number is md-1242517.\n\nYou have ordered Indoor Flores-3.5g of Fresca strain from Nan brand. Your order will be processed and shipped out to you as soon as possible. Thank you for choosing our services and we hope you enjoy your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:50", "2023-06-26T12:32:52.819448", "chatcmpl-7VmF87aoz4yUfneDtl8v2iW27GAPB", "openai", "rbtf91s6", 2.819447534999199, 53, 68, 121]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_342_caa36c8889ae3f794167.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_342_caa36c8889ae3f794167.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2175d8ccd801e4569d984587f9f06dd774554caf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_342_caa36c8889ae3f794167.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Hello! I see that you are interested in Flav's Blueberry Belts 100mg edible. Can I help you with anything today?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:54", "2023-06-26T12:32:55.227098", "chatcmpl-7VmFCmm6Ga5eg0jTEdSL9H5LPDlg2", "openai", "rbtf91s6", 1.227097748000233, 53, 29, 82]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_343_5a3bc97cdef4893604be.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_343_5a3bc97cdef4893604be.table.json new file mode 100644 index 0000000000000000000000000000000000000000..096853414142bdfae37117058c3f5bbc3978ad10 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_343_5a3bc97cdef4893604be.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Hi there! Your order with the ID md-1347497 for a Cherry Pie 1g Pod from Left Coast Extracts has been received. This is for a vape product and the THC and CBD levels are both currently unknown (nan). Thank you for your purchase and we will update you as soon as the order has shipped.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:55", "2023-06-26T12:32:57.702671", "chatcmpl-7VmFDuaB0DQ05Vqg5lI0m3B3fBSh2", "openai", "rbtf91s6", 2.7026711800008343, 48, 67, 115]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_344_f2eb25f32c6b3c7f0c2d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_344_f2eb25f32c6b3c7f0c2d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..280c27e1c5d17fd48d96134eb1bfd67e239d89cb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_344_f2eb25f32c6b3c7f0c2d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: System message: Cannot find information for the specified product code and strain. Please provide a valid code and strain.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:32:59", "2023-06-26T12:33:00.060479", "chatcmpl-7VmFHBOd422KasneD9AjxCvNlz7Ax", "openai", "rbtf91s6", 1.0604790140005207, 55, 22, 77]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_345_25a1a2ec7f28a7063af9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_345_25a1a2ec7f28a7063af9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5f2b6d10dacb614de50b5b048216189455abe977 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_345_25a1a2ec7f28a7063af9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: System Message: Sorry, I am not able to understand the prompt. Can you please provide me with more information or context regarding the message?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:00", "2023-06-26T12:33:01.358207", "chatcmpl-7VmFIlPE0akdCntJnOawMlpeuva3R", "openai", "rbtf91s6", 1.3582066899998608, 53, 28, 81]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_346_4bb8f1b0d522b69b607e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_346_4bb8f1b0d522b69b607e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4372a75d9fd7afd0852f6b4620ee7707b3d81bfb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_346_4bb8f1b0d522b69b607e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Greetings! This is a system message regarding your recent purchase. Your order number is md-1195389. You have purchased a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. The product falls under the Flowers category with nan THC and nan CBD content. We hope you enjoy your purchase. Thank you for choosing our services.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:02", "2023-06-26T12:33:04.758185", "chatcmpl-7VmFKUi45mI9C8OGL1jxEbnKU07s1", "openai", "rbtf91s6", 2.7581850919996214, 49, 70, 119]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_347_cd8d8ce7daaf2b1bf4b4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_347_cd8d8ce7daaf2b1bf4b4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..3346e4b8042190795d139983a646a96d146c67d3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_347_cd8d8ce7daaf2b1bf4b4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for your message. However, I am not sure what you are requesting. Can you please clarify or provide additional details?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:19", "2023-06-26T12:33:33.502723", "chatcmpl-7VmFbJLw0mgNtD8EIvd1r1GBCod1J", "openai", "rbtf91s6", 14.502723392999542, 63, 28, 91]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_348_f5b2e9911ea68c577c72.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_348_f5b2e9911ea68c577c72.table.json new file mode 100644 index 0000000000000000000000000000000000000000..012240c9b33b5376af252e6f4dc62632ee10d4a6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_348_f5b2e9911ea68c577c72.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Hello! Thank you for your message. Can you please provide more information about your request so that I can assist you better?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:20", "2023-06-26T12:33:21.129942", "chatcmpl-7VmFcexBrUIbB98eGr9dT9aBMwFFx", "openai", "rbtf91s6", 1.129941934001181, 59, 25, 84]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_349_5fb31ce96f9f9e849845.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_349_5fb31ce96f9f9e849845.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b6e1fb43e743be78d69b9f9a7a24a2a245e3ca97 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_349_5fb31ce96f9f9e849845.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Watermelon,Syrup,250mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:22", "2023-06-26T12:33:22.709841", "chatcmpl-7VmFeww0Hvmo9Sl5BwNP0CHiuVO9k", "openai", "rbtf91s6", 0.7098405160013499, 186, 13, 199]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_34_342ff3de54628cd469b6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_34_342ff3de54628cd469b6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aa11a70d76cbfca57cf45de6ee3a9ef048c7f005 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_34_342ff3de54628cd469b6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape,Cherry Pie,1g,Pod\n", "gpt-4-0314", "2023-06-26T11:49:31", "2023-06-26T11:49:32.744474", "chatcmpl-7VlZDUikYDY6DRQ1J38yMwwZxpyQL", "openai", "rbtf91s6", 1.7444738739995955, 113, 15, 128]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_350_760156225a855738a858.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_350_760156225a855738a858.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e350fa9a891c6b915db41518f3db61b892df719f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_350_760156225a855738a858.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:23", "2023-06-26T12:33:23.724539", "chatcmpl-7VmFfWUPQesC7VNpxwk9IRhi1uALY", "openai", "rbtf91s6", 0.7245386960003088, 183, 14, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_351_3026151af5a0ee74e953.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_351_3026151af5a0ee74e953.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bafda4f814c7b49af0eae09cb04ed9dbe2089d1d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_351_3026151af5a0ee74e953.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Packed Bud,Xclusivo,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:24", "2023-06-26T12:33:24.769443", "chatcmpl-7VmFg0GuzuRupVor3tob0EaJvfJFx", "openai", "rbtf91s6", 0.7694428329996299, 203, 16, 219]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_352_6c1587d3e2406c0420ca.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_352_6c1587d3e2406c0420ca.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6a963c486541b4dbaf5291d19f5c42efe718777f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_352_6c1587d3e2406c0420ca.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Mellowz #7,Flower,Bud,7\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:27", "2023-06-26T12:33:28.923710", "chatcmpl-7VmFjlz6CO9lzhBDtca6Ft83bCL1T", "openai", "rbtf91s6", 1.9237097959994571, 181, 13, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_353_4d9b734b1921e649c7b3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_353_4d9b734b1921e649c7b3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..755653ca0635ae75f995676c61c3b187b7966e45 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_353_4d9b734b1921e649c7b3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:28", "2023-06-26T12:33:29.059398", "chatcmpl-7VmFkANdiCyXJtY0nQ5vgNu8UHG23", "openai", "rbtf91s6", 1.059398212000815, 191, 21, 212]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_354_178399e7593813de1a48.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_354_178399e7593813de1a48.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8d58a0e38dd416b7445c2c78c067da35e5471c29 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_354_178399e7593813de1a48.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1.0g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:30", "2023-06-26T12:33:30.895317", "chatcmpl-7VmFmkyEpzpuhRLnCrrJn4nsWfS8l", "openai", "rbtf91s6", 0.8953169249998609, 186, 18, 204]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_355_bc496c6bf150791159b4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_355_bc496c6bf150791159b4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e8ba08de29539cbbe383f6f30956bbb193b85f1b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_355_bc496c6bf150791159b4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:31", "2023-06-26T12:33:31.901963", "chatcmpl-7VmFnZUj5a81g9wu53Ye7RC12il5w", "openai", "rbtf91s6", 0.9019632239997009, 191, 17, 208]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_356_cb1ab82133d8e821d07a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_356_cb1ab82133d8e821d07a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5e9551f677141c62b817c7e1281312559c7e6a58 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_356_cb1ab82133d8e821d07a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Truffle Pupil,Indoor,Blunt,1g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:32", "2023-06-26T12:33:32.907823", "chatcmpl-7VmFoKQO4ljbUBvDtFwy9p504GYwQ", "openai", "rbtf91s6", 0.9078229240003566, 198, 20, 218]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_357_af5be02c749c3f02c675.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_357_af5be02c749c3f02c675.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4eaf2d03a2d9aa78f04e60cf677b34bc483f3a77 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_357_af5be02c749c3f02c675.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Triple Scoop,Joint,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:34", "2023-06-26T12:33:35.032622", "chatcmpl-7VmFqzEAiMi827ovMHX1qZI902E8F", "openai", "rbtf91s6", 1.032621520000248, 197, 16, 213]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_358_8a44f379eacef299d817.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_358_8a44f379eacef299d817.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1e2675ddc126de040e00bbe43b3d4c220842b178 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_358_8a44f379eacef299d817.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pen,Birthday Cake,1.0g,Pod\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:35", "2023-06-26T12:33:36.018433", "chatcmpl-7VmFruvf4Y7rM38vxXphhDinUxOCs", "openai", "rbtf91s6", 1.0184330240008421, 186, 17, 203]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_359_262deacd29112d03f768.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_359_262deacd29112d03f768.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f65e531fb4e56bb2dc57e7edfa3c5571cbe0cff2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_359_262deacd29112d03f768.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:37", "2023-06-26T12:33:38.047490", "chatcmpl-7VmFtfnQMnSTEMhtl6sP4uXRMTnoS", "openai", "rbtf91s6", 1.0474900209992484, 188, 21, 209]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_35_04d68bdfdfc827d3c090.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_35_04d68bdfdfc827d3c090.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7e75bb934916fdf98a082c54f6ddf0170b5b0986 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_35_04d68bdfdfc827d3c090.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Standard Joint,Emerald Cut,1g\n", "gpt-4-0314", "2023-06-26T11:49:33", "2023-06-26T11:49:35.017650", "chatcmpl-7VlZFfRgdf9pkWhi0p7eDe4ILN59R", "openai", "rbtf91s6", 2.017649991000326, 120, 17, 137]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_360_b1235a7939e005179766.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_360_b1235a7939e005179766.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f295d924c2aabec4b6fba7b5e64937db00a783d3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_360_b1235a7939e005179766.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:38", "2023-06-26T12:33:39.011427", "chatcmpl-7VmFu6DaM05BjIPHVC76FOncbpKyF", "openai", "rbtf91s6", 1.0114274229999864, 189, 20, 209]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_361_137aad1fe664139a8a54.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_361_137aad1fe664139a8a54.table.json new file mode 100644 index 0000000000000000000000000000000000000000..185d7540f58faaa71029a3576887dc27032e35d2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_361_137aad1fe664139a8a54.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: BOBBI HYLL,Indoor,Flower/Bud,Fresca,3.5g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:40", "2023-06-26T12:33:41.184470", "chatcmpl-7VmFwg1uAvbmK1IlyHqIE4FO6K5Oe", "openai", "rbtf91s6", 1.1844701099998929, 183, 21, 204]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_362_63a74aaa82377fa157bb.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_362_63a74aaa82377fa157bb.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1aba47b6bca28c6724f89722973a3d19b1adddf9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_362_63a74aaa82377fa157bb.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:42", "2023-06-26T12:33:42.828015", "chatcmpl-7VmFy9l5U6zsT4xBQTSDNF6ZQM6Jd", "openai", "rbtf91s6", 0.8280153699997754, 183, 13, 196]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_363_f9bd987c887ffbde51f4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_363_f9bd987c887ffbde51f4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..de271be44fc212e1e48db243b927af35d98da306 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_363_f9bd987c887ffbde51f4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Cherry Pie,Left Coast Extracts,Vape Pod,1g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:43", "2023-06-26T12:33:43.752275", "chatcmpl-7VmFzGIAgCd47nloh3NVoodkSK3ns", "openai", "rbtf91s6", 0.7522749299987481, 178, 14, 192]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_364_f832d7a73d3bf8608c04.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_364_f832d7a73d3bf8608c04.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f7f8d89a7a28fe406c9c873bfc0cd33588e03cd7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_364_f832d7a73d3bf8608c04.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Indoor,Emerald Cut,Joint,1g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:45", "2023-06-26T12:33:46.594956", "chatcmpl-7VmG1SCXI4ETTJvVm19JNYHg92bcy", "openai", "rbtf91s6", 1.5949562629994034, 185, 15, 200]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_365_d6b802653a1ff41259e5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_365_d6b802653a1ff41259e5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4709463872ca8a4be10d58c035b7af6fb0a3f7ee --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_365_d6b802653a1ff41259e5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Double Down,Indoor,Flower,Bud,3.5g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:47", "2023-06-26T12:33:48.787262", "chatcmpl-7VmG3UTQM7rE20FveiWiZOAp6iWKW", "openai", "rbtf91s6", 1.7872618709989183, 183, 20, 203]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_366_9fa8a199f0ef598a1447.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_366_9fa8a199f0ef598a1447.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aa84e886a6fb374a440705d707f857236e34ed46 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_366_9fa8a199f0ef598a1447.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Sugar Shake,Blue Dream,14g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:49", "2023-06-26T12:33:49.741922", "chatcmpl-7VmG5Iey66HwsqET6lVnppG5sYj3y", "openai", "rbtf91s6", 0.7419224300010683, 179, 11, 190]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_367_79b60c2c94d76245ab42.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_367_79b60c2c94d76245ab42.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6cf636c1254604e250f768daed537c8590479835 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_367_79b60c2c94d76245ab42.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,Infused Preroll,5pk,2.5g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:50", "2023-06-26T12:33:51.411906", "chatcmpl-7VmG6ZCNFjlCLPmwYMuMYKQ6zdVtM", "openai", "rbtf91s6", 1.4119054499988124, 193, 30, 223]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_368_8e6162ae5adc3df2be3a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_368_8e6162ae5adc3df2be3a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..40fa88b9dc0dbe408e2281c7c80274827c4e7899 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_368_8e6162ae5adc3df2be3a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Gummies,S'mores,10 count,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:52", "2023-06-26T12:33:52.702706", "chatcmpl-7VmG8L9UM3ZTrXeRTGPBFZyrlv5OJ", "openai", "rbtf91s6", 0.7027055239996116, 189, 14, 203]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_369_bb02452b457448f23128.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_369_bb02452b457448f23128.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5177854b18f3737b2b946d8873af9e89d017ab8e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_369_bb02452b457448f23128.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Watermelon,250mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:53", "2023-06-26T12:33:53.692966", "chatcmpl-7VmG9pgVrLgnwTGpnGVwePLRvHhtz", "openai", "rbtf91s6", 0.6929660240002704, 267, 13, 280]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_36_07010d515b3bec28784a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_36_07010d515b3bec28784a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7714f8de243b96cf828ef524be19b243304fb514 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_36_07010d515b3bec28784a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Indoor,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T11:49:36", "2023-06-26T11:49:38.206905", "chatcmpl-7VlZI2WawrxAa34Kbsn5CC2Hfc3Mk", "openai", "rbtf91s6", 2.2069048599996677, 118, 17, 135]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_370_fe6b31d4b600527b8c1d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_370_fe6b31d4b600527b8c1d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..06dcc210ec1866561426b8b6fb53647881e37e20 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_370_fe6b31d4b600527b8c1d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:54", "2023-06-26T12:33:54.713414", "chatcmpl-7VmGAfKtJ2auTjrmeEAEGgJQ2TT3A", "openai", "rbtf91s6", 0.7134143240000412, 264, 14, 278]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_371_60c2e5b994e89ad9f875.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_371_60c2e5b994e89ad9f875.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e657afd45e63c1cb699e604dd99d76f90f520a17 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_371_60c2e5b994e89ad9f875.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Eighth,Packed Bud,Xclusivo,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:55", "2023-06-26T12:33:55.823164", "chatcmpl-7VmGBcZWxG5Dm9oqMIWXTcpO4PvyO", "openai", "rbtf91s6", 0.8231643279996206, 284, 15, 299]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_372_279f6264de6454132940.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_372_279f6264de6454132940.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c30dfbd10550ad493ee5864240d6a2b3ca2901a8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_372_279f6264de6454132940.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Mellowz #7,Flower,Bud,7\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:57", "2023-06-26T12:33:57.702868", "chatcmpl-7VmGDjNcLO7GC6nB53qx4YLBBByFw", "openai", "rbtf91s6", 0.7028675239998847, 262, 13, 275]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_373_c28c92b951c541b23b50.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_373_c28c92b951c541b23b50.table.json new file mode 100644 index 0000000000000000000000000000000000000000..83e0c919887e4856827dba491b8672e96a06a125 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_373_c28c92b951c541b23b50.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:33:58", "2023-06-26T12:33:59.052285", "chatcmpl-7VmGE7qw45vT6gahAHn7jYJOdA8wh", "openai", "rbtf91s6", 1.0522851300011098, 272, 21, 293]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_374_19a1a2fe9f650f76e7f9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_374_19a1a2fe9f650f76e7f9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b42a6d588193a4110f44da08a6f3c51c0ec7679e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_374_19a1a2fe9f650f76e7f9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:00", "2023-06-26T12:34:00.907007", "chatcmpl-7VmGGV7vTnDn4foSS2fHsPYpSDvfH", "openai", "rbtf91s6", 0.9070066149997729, 267, 17, 284]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_375_3d43c65167672f319e8a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_375_3d43c65167672f319e8a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..facb3d9ee9c0f31f2a3d7c86ed24881dc71130ad --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_375_3d43c65167672f319e8a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:01", "2023-06-26T12:34:01.881315", "chatcmpl-7VmGH5X5JHPAYOLvuTW1ezPphVN7q", "openai", "rbtf91s6", 0.881314795000435, 272, 17, 289]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_376_e74d86fb742f88a3783b.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_376_e74d86fb742f88a3783b.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e5e8e412127f3dea408148035194789df9afc006 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_376_e74d86fb742f88a3783b.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:02", "2023-06-26T12:34:02.865671", "chatcmpl-7VmGI11D9T2GaQ8nlq6cBZ5RXvkWc", "openai", "rbtf91s6", 0.8656705829998828, 279, 20, 299]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_377_e4ce773d19d35a8eb7b1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_377_e4ce773d19d35a8eb7b1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bd025d8bb2c86b8c1913fa1d8dfe9a06dfbcf84b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_377_e4ce773d19d35a8eb7b1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:04", "2023-06-26T12:34:04.893632", "chatcmpl-7VmGKH3kXdcI7sEPr0btg4A0tSPol", "openai", "rbtf91s6", 0.8936323050002102, 278, 14, 292]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_378_ab62d4a15e06b3f59979.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_378_ab62d4a15e06b3f59979.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d620a3f9070f93da4e47a38433e17c92e3940adc --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_378_ab62d4a15e06b3f59979.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Birthday Cake,Pod,Vape Pen,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:05", "2023-06-26T12:34:06.263736", "chatcmpl-7VmGLbeUyDNRNtsFhWQKq0cXtsJbn", "openai", "rbtf91s6", 1.263735552000071, 267, 16, 283]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_379_facfc92bf3f244a30fed.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_379_facfc92bf3f244a30fed.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8dbe0cefb17cd62502c69437d32365dd678df51c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_379_facfc92bf3f244a30fed.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,TangEray,Indoor,Grower Circle Infused Joint,1\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:07", "2023-06-26T12:34:08.062289", "chatcmpl-7VmGNOOYOs61UDrR9v5hMyNyasCXs", "openai", "rbtf91s6", 1.0622886090004613, 269, 22, 291]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_37_69c979cdb4e8c8c762a1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_37_69c979cdb4e8c8c762a1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..dfc51f7d457cf24562445fe455c7cb81be7350f8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_37_69c979cdb4e8c8c762a1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g\n", "gpt-4-0314", "2023-06-26T11:49:39", "2023-06-26T11:49:41.136561", "chatcmpl-7VlZLsymqMssRZJLYkFbh7MLsQaQd", "openai", "rbtf91s6", 2.1365611540004465, 114, 14, 128]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_380_354e4b315ea02ab19d35.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_380_354e4b315ea02ab19d35.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a6af0164fbe9adcc3b0aa678ebc3985cb5962a90 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_380_354e4b315ea02ab19d35.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Nano Gummies,Indica,Blood Orange Bliss,10ct-100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:09", "2023-06-26T12:34:10.451418", "chatcmpl-7VmGPNXRshbnaKjKGHnUgxyyP1YXS", "openai", "rbtf91s6", 1.4514181119993737, 270, 20, 290]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_381_13747eab235a01f4cc94.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_381_13747eab235a01f4cc94.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5f8887dd3e8165d90d62e1294c85ba43432503f5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_381_13747eab235a01f4cc94.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Bobbi Hyll, Flower, Indoor, 3.5g, Fresca\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:10", "2023-06-26T12:34:10.929723", "chatcmpl-7VmGQg3at7rm82p5F72uyWtu8ZaLM", "openai", "rbtf91s6", 0.9297225080008502, 264, 17, 281]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_382_ff1dbaa0fb72ca59d4f1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_382_ff1dbaa0fb72ca59d4f1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1d2bd49951cd5d2affd55fbf22fea1a64421a829 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_382_ff1dbaa0fb72ca59d4f1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:13", "2023-06-26T12:34:13.719506", "chatcmpl-7VmGTf3BVFPFlHhzOF0KvSZHI4U5s", "openai", "rbtf91s6", 0.7195063270009996, 264, 13, 277]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_383_50c4a988f554574034dd.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_383_50c4a988f554574034dd.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdc8f05da4e821e0a4d7629fb833f4d3ef02b13 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_383_50c4a988f554574034dd.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Cherry Pie,Pod,Vape Cartridge,Left Coast Extracts,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:15", "2023-06-26T12:34:15.849919", "chatcmpl-7VmGVtSx4jnakVRndKbdlQlHcXWAi", "openai", "rbtf91s6", 0.8499188599998888, 259, 18, 277]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_384_552bdd6becb6a04302f8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_384_552bdd6becb6a04302f8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..94802fc08c82bfdb7ac2c4f97439c8a12250a3c0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_384_552bdd6becb6a04302f8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Indoor,Joint,Emerald Cut,1\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:17", "2023-06-26T12:34:18.321318", "chatcmpl-7VmGXpyFeXO3OaUgfxhhUFBED7oNd", "openai", "rbtf91s6", 1.3213179610011139, 266, 14, 280]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_385_db19bd4c3887ebac5723.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_385_db19bd4c3887ebac5723.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bb6345a06211516177f07fe019b96fd8e5a8a08c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_385_db19bd4c3887ebac5723.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Double Down,Indoor,Flower,Bud,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:18", "2023-06-26T12:34:18.935014", "chatcmpl-7VmGYMRw4vUUTOI4ybSB6DOdt0uqD", "openai", "rbtf91s6", 0.9350145959997462, 264, 19, 283]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_386_d410d2019e8012b0f63c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_386_d410d2019e8012b0f63c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4dc0e86cea4865fd4417a02b440f76ae8c463d20 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_386_d410d2019e8012b0f63c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Sugar Shake,Blue Dream,14\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:19", "2023-06-26T12:34:19.777462", "chatcmpl-7VmGZsHUCGv08FFTI2kq4aLXYOG4J", "openai", "rbtf91s6", 0.7774620299987873, 260, 13, 273]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_387_661ff3b92e10eb4b1d50.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_387_661ff3b92e10eb4b1d50.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9c15460a2398ac939e0fb36007df1b23f83b6fde --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_387_661ff3b92e10eb4b1d50.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5 Pack,2.5g\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:25", "2023-06-26T12:34:30.244430", "chatcmpl-7VmGfUFeBCtiNEoTzqIoL4Wd6VSJN", "openai", "rbtf91s6", 5.244430246000775, 274, 24, 298]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_388_f882b4bb41d37f474f09.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_388_f882b4bb41d37f474f09.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a387a83f82e72cac4cf0cd3f12e5c5d90abd75fa --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_388_f882b4bb41d37f474f09.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Gummies,S'mores flavor,10 count package,100 mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:26", "2023-06-26T12:34:26.787495", "chatcmpl-7VmGgxAiSAaTyN7GkhQLSnWMekDSK", "openai", "rbtf91s6", 0.7874945549992844, 270, 16, 286]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_389_6aea083333f20dd08d0e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_389_6aea083333f20dd08d0e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..32f8c2c5e226c1f031710dc3fddda7b7a070f434 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_389_6aea083333f20dd08d0e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Watermelon,250mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:28", "2023-06-26T12:34:29.082662", "chatcmpl-7VmGimz690IFarI5Xq0MftmuqVfCZ", "openai", "rbtf91s6", 1.0826620750012808, 388, 13, 401]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_38_487e44776ac10c62dc49.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_38_487e44776ac10c62dc49.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a901053a7df676eb19cbff9c1b33a85a481f2969 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_38_487e44776ac10c62dc49.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5\n", "gpt-4-0314", "2023-06-26T11:49:46", "2023-06-26T11:49:55.053777", "chatcmpl-7VlZSI1osBMyc3nzsnKjdkERsy0Iu", "openai", "rbtf91s6", 9.05377683200004, 128, 24, 152]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_390_4cda528dfe8591b27bc4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_390_4cda528dfe8591b27bc4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f6407804584ae5002be6b7cafda0a162b3908a99 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_390_4cda528dfe8591b27bc4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:30", "2023-06-26T12:34:31.186025", "chatcmpl-7VmGk0ujpf8XfOcUFrkj9SqqEY6yI", "openai", "rbtf91s6", 1.186024611000903, 385, 14, 399]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_391_5723b40eea22ee1bbc53.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_391_5723b40eea22ee1bbc53.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fd811cbc2743a1be6a95de1bdbb1fef3a73a9107 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_391_5723b40eea22ee1bbc53.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Bud,Xclusivo,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:31", "2023-06-26T12:34:31.759497", "chatcmpl-7VmGljIZyEgrqsjJKlqcmLaEaQpTn", "openai", "rbtf91s6", 0.7594969969995873, 405, 15, 420]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_392_fa812f77103e9453a017.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_392_fa812f77103e9453a017.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cf325c0bcfbba8b8254506fde51df61fbe04cb15 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_392_fa812f77103e9453a017.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Mellowz #7,Flower,Bud,7\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:32", "2023-06-26T12:34:32.951373", "chatcmpl-7VmGmSYvJqcnQAq0xR9hV7p1cwRzD", "openai", "rbtf91s6", 0.9513730710004893, 383, 13, 396]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_393_4839c08bf95412cfee82.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_393_4839c08bf95412cfee82.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9592d32b437bd83e388c51891ef47b5c0791fe43 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_393_4839c08bf95412cfee82.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:33", "2023-06-26T12:34:33.998840", "chatcmpl-7VmGn1IF7NwVhakXpNbgmbolP7Xgr", "openai", "rbtf91s6", 0.9988400640013424, 393, 21, 414]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_394_a7992e83c18bede6d62c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_394_a7992e83c18bede6d62c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2b232517ea083814f3a421389721e8327f96da1b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_394_a7992e83c18bede6d62c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:35", "2023-06-26T12:34:35.843804", "chatcmpl-7VmGpfYAlhZ8SYCLr9XC2Kr8ajtPK", "openai", "rbtf91s6", 0.843803884999943, 388, 17, 405]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_395_2eded88484de1a791c9a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_395_2eded88484de1a791c9a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4a4071a68e127e494b0b10d28bb5a3140d6c91db --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_395_2eded88484de1a791c9a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:37", "2023-06-26T12:34:38.135540", "chatcmpl-7VmGrCwFS3fiSvn18MpH9t6PDffAY", "openai", "rbtf91s6", 1.1355396449998807, 393, 17, 410]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_396_440bf80587f1ed70cfd3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_396_440bf80587f1ed70cfd3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..35f881a81ae4e037e8e4cdd2ba6c19e94b37a157 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_396_440bf80587f1ed70cfd3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:38", "2023-06-26T12:34:39.114438", "chatcmpl-7VmGsls6B6xjISSQXSY2blfoBakjz", "openai", "rbtf91s6", 1.1144375059993763, 400, 18, 418]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_397_9da2a8dd2cf6a85b146c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_397_9da2a8dd2cf6a85b146c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7145375e822a93e3c07ad95fb4ba7a4e15ba147d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_397_9da2a8dd2cf6a85b146c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:40", "2023-06-26T12:34:40.968323", "chatcmpl-7VmGurtIl8XuixvXB3xbiiRwrBlm5", "openai", "rbtf91s6", 0.9683231220005837, 399, 14, 413]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_398_e580d445b422c5de8de4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_398_e580d445b422c5de8de4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0a6c1565d862ddf97af1b4dfb6254e9d94c1549c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_398_e580d445b422c5de8de4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pen,Birthday Cake,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:41", "2023-06-26T12:34:41.702103", "chatcmpl-7VmGv9M3CZSaVbVNH6Lj8VgSi86ry", "openai", "rbtf91s6", 0.7021028170001955, 388, 14, 402]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_399_5269f5a146f1fc9497a7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_399_5269f5a146f1fc9497a7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fedc414698c76e7f1cb1ea6842e1d3dc156c1164 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_399_5269f5a146f1fc9497a7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:42", "2023-06-26T12:34:43.130202", "chatcmpl-7VmGwJ91CBDCL4kJWV185Pistp4QI", "openai", "rbtf91s6", 1.1302019260001543, 390, 21, 411]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_39_741cfde0df24ad1f5463.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_39_741cfde0df24ad1f5463.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c5ea7b908cf5c75097ec693f9dbf51651f0093f4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_39_741cfde0df24ad1f5463.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edibles,Gummies,S'mores,10,100mg\n", "gpt-4-0314", "2023-06-26T11:49:51", "2023-06-26T11:49:52.797462", "chatcmpl-7VlZXkc7tOJGf6ulDzFVmio7OqsWa", "openai", "rbtf91s6", 1.79746212200007, 124, 16, 140]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_3_b99ee63da82be12ac678.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_3_b99ee63da82be12ac678.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4921ccea0ffe15cfc883afbb66e3c1fd7957f26c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_3_b99ee63da82be12ac678.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. \n\nIf you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects.\n\nSativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects.\n\nPlease keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help.\n", "gpt-4-0314", "2023-06-26T11:44:25", "2023-06-26T11:44:41.510252", "chatcmpl-7VlUHqbsG2kpFHDxAWfsryh6pHmC9", "openai", "rbtf91s6", 16.510252543000206, 49, 171, 220]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_400_421974bb686fafa369e4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_400_421974bb686fafa369e4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..92c2c98f0ec50f643292d2cdaeb460f94c677b14 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_400_421974bb686fafa369e4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg,10ct\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:44", "2023-06-26T12:34:45.012792", "chatcmpl-7VmGyhy9WvMSGQK8fKQ2IpqfNExWH", "openai", "rbtf91s6", 1.012791623999874, 391, 20, 411]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_401_8712bd25559e61c42819.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_401_8712bd25559e61c42819.table.json new file mode 100644 index 0000000000000000000000000000000000000000..fa162282717edfcd6e347dfb9bcd2f0ede6e76a3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_401_8712bd25559e61c42819.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: BOBBI HYLL,Flower,Bud,Indoor,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:45", "2023-06-26T12:34:45.904652", "chatcmpl-7VmGzYnF49ZaFnmm3DLk1nDrz72Y0", "openai", "rbtf91s6", 0.9046521840009518, 385, 17, 402]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_402_a1a210d462e13f12d291.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_402_a1a210d462e13f12d291.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e04a306455f7131632341915524714e163193cb3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_402_a1a210d462e13f12d291.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummies,nan,nan\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:47", "2023-06-26T12:34:48.062856", "chatcmpl-7VmH1svaI1B4h30J6OdcJgZJj2soA", "openai", "rbtf91s6", 1.0628556039991963, 385, 11, 396]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_403_8dc4293881d930a1e2fe.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_403_8dc4293881d930a1e2fe.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a7d5d196f5af8d9848164e76a32a99cedc6991d6 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_403_8dc4293881d930a1e2fe.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Cherry Pie,Pod,Vape,1.0,Left Coast Extracts\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:49", "2023-06-26T12:34:50.029915", "chatcmpl-7VmH3RToL1qmgi3cUaJATwREAWnNX", "openai", "rbtf91s6", 1.0299153910000314, 380, 16, 396]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_404_89d975553b4ab6dcd529.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_404_89d975553b4ab6dcd529.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bc94eb431eb6dfb1d01323e80ae317ab0ccb7acf --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_404_89d975553b4ab6dcd529.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:50", "2023-06-26T12:34:50.937521", "chatcmpl-7VmH4nJFQApgLCXsN9sxowC3TbV1b", "openai", "rbtf91s6", 0.9375215559994103, 387, 17, 404]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_405_8c6881a546cd00921b85.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_405_8c6881a546cd00921b85.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ca7fbd39f9c213eab27828c8ffe90a53912f35a4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_405_8c6881a546cd00921b85.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Double Down,Flower,Bud,Indoor,3.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:51", "2023-06-26T12:34:51.971419", "chatcmpl-7VmH5v2hMKItKUIT54HgDpnDklXZW", "openai", "rbtf91s6", 0.9714193700001488, 385, 19, 404]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_406_019a379b90248b3907ff.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_406_019a379b90248b3907ff.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b8100c3e1ace0f4b55b99e96084ab10383c3ca2b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_406_019a379b90248b3907ff.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Sugar Shake,Blue Dream,14.0\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:53", "2023-06-26T12:34:53.644199", "chatcmpl-7VmH7fOTkbTDqvdgMCsrXsyc8wXji", "openai", "rbtf91s6", 0.6441987449998123, 381, 12, 393]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_407_3bffd88a5c34608ddfa2.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_407_3bffd88a5c34608ddfa2.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a60afa7ecf2d4b3a917541edb67abfb4de699388 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_407_3bffd88a5c34608ddfa2.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Zoo Dawg x Cosa Nostra,Multijoint,Joint,12.5\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:54", "2023-06-26T12:34:54.980258", "chatcmpl-7VmH8ZuN6PAPdKPYlnVXqb3bl2v7v", "openai", "rbtf91s6", 0.9802584890003345, 395, 23, 418]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_408_8d28eb934f9866666df3.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_408_8d28eb934f9866666df3.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bcaf1bbe76ec15e50e4f720e5bd72e63bab9a6d7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_408_8d28eb934f9866666df3.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummies,S'mores,100mg,10ct\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:56", "2023-06-26T12:34:56.993743", "chatcmpl-7VmHADIXFokbBPpnayIWBLRvjCBEM", "openai", "rbtf91s6", 0.9937426629985566, 391, 17, 408]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_409_19f8d60d57ca6cc4585d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_409_19f8d60d57ca6cc4585d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0bfcc5f25560b28a081bceb441b7def4c1567055 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_409_19f8d60d57ca6cc4585d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: System Message: The product code co-2MFE5QVF corresponds to Chill Medicated's Watermelon-flavored Syrup with a dosage of 250mg. Additional information about the product is not available, as the provided details for the brand, category, and sub-category are null. Please provide complete information for better assistance.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:34:57", "2023-06-26T12:34:59.646829", "chatcmpl-7VmHBC7A962yP1ewM0bz5D6c6hyBk", "openai", "rbtf91s6", 2.6468289000004006, 57, 67, 124]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_40_79a9dbcbf7f13b5b868f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_40_79a9dbcbf7f13b5b868f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f767a22d52de9cd09234d45facb8ff9a99180d14 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_40_79a9dbcbf7f13b5b868f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Edible,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T11:49:53", "2023-06-26T11:49:55.495790", "chatcmpl-7VlZZdb2ssNEKS5WMNPQT3gFIZzqI", "openai", "rbtf91s6", 2.4957900569997946, 180, 16, 196]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_410_c23896521cd54a464be6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_410_c23896521cd54a464be6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d3e9643d8e6035c587f7068a38697c1825ce8857 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_410_c23896521cd54a464be6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Dear customer,\n\nThank you for your recent purchase. We are pleased to inform you that your order (bl-111630024545) has been processed and is being prepared for shipment.\n\nYour order includes the following items:\n\n- Feelz - Space Cowboy 3.5g\n- FLOWERS 3.5G\n\nWe apologize for the missing information on two of the items in your order. Can you please provide us with additional details so we can ensure the accurate processing and delivery of your order? Please feel free to contact us if you have any further questions or concerns.\n\nThank you for choosing our services and we look forward to serving you again.\n\nBest regards,\n[Your company name]\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:00", "2023-06-26T12:35:05.600168", "chatcmpl-7VmHEufbbvcvOJqIqhFgjwUbrs3L3", "openai", "rbtf91s6", 5.600168547000067, 54, 140, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_411_91344efdffe738abf4e7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_411_91344efdffe738abf4e7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..42cb89e3439d7ae33d08ebd89450acfd93fc9e1d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_411_91344efdffe738abf4e7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Thank you for your purchase of Champelli Xclusivo 3.5g eighths! Your order, with the order reference number fl-8voAjt83sD, has been received and is being processed for delivery. The packed buds will be prepared for shipping soon and you will receive a notification with tracking information once it is on its way to you. Thank you for choosing Champelli and we hope you enjoy your purchase!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:07", "2023-06-26T12:35:10.237027", "chatcmpl-7VmHLJz2mF29bfyGU7hJ9FeBh1llU", "openai", "rbtf91s6", 3.2370268770009716, 74, 89, 163]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_412_20e8c7ea07871025dc1a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_412_20e8c7ea07871025dc1a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cf1d5997311be5b5c830a8e023482d3258aac317 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_412_20e8c7ea07871025dc1a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: ERROR: Invalid input format. Please provide a valid input in the format \"Order Number, Product Name, Product Quantity, Product Type, Product Quantity, Product Type\".\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:15", "2023-06-26T12:35:16.945160", "chatcmpl-7VmHT2uBHhiXu61HzDznNRdOOE1Se", "openai", "rbtf91s6", 1.9451597439983743, 52, 33, 85]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_413_caeb5d5931b697871a63.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_413_caeb5d5931b697871a63.table.json new file mode 100644 index 0000000000000000000000000000000000000000..85c985965637102325149387e086a98e541645b5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_413_caeb5d5931b697871a63.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! This is an automated message from our system to inform you that we have received your order for a Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Please note that your order is currently being processed and will be shipped to the address provided once it is ready. Estimated delivery time is within 5-7 business days. Thank you for choosing our services!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:17", "2023-06-26T12:35:19.720946", "chatcmpl-7VmHVhOVli4pp2uhZZmpxmzaDqC6n", "openai", "rbtf91s6", 2.720946343999458, 62, 82, 144]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_414_341c29c2990a7cadb293.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_414_341c29c2990a7cadb293.table.json new file mode 100644 index 0000000000000000000000000000000000000000..29df7004f2b9f059627fdb140c68c275f91d806f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_414_341c29c2990a7cadb293.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Hello there! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. This product is currently available and in stock. It is a high-quality cannabis concentrate made from carefully selected flowers to provide customers with the best possible experience. Please let us know if you have any further questions or if you would like to place an order. Thank you!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:20", "2023-06-26T12:35:23.128847", "chatcmpl-7VmHYwBuKhjKfkdadgkb2DiKy9f9g", "openai", "rbtf91s6", 3.1288473990007333, 57, 76, 133]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_415_9267c598f0e09a9fb519.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_415_9267c598f0e09a9fb519.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c491c107687f5b1663c9caba603fc6d2b403172f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_415_9267c598f0e09a9fb519.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Hello! This is a system message regarding item MD-1159983, Baby Jeeter Peaches Infused Preroll 5pk - 2.5g. This product is from the brand Jeeter and is categorized under Infused Prerolls. Currently, the CBD and THC content for this product is not available. Would you like me to check if there are any similar products available?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:24", "2023-06-26T12:35:27.121842", "chatcmpl-7VmHceewY8P3mwgj8wqRCirswTYXS", "openai", "rbtf91s6", 3.121842045999074, 62, 81, 143]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_416_941fcbe749d754649497.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_416_941fcbe749d754649497.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad5c02a8fe889ac673b0da2e785844b8efd8e81 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_416_941fcbe749d754649497.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: System Message: \n\nThank you for your order! Your order confirmation number is co-6WGV1Z0H. You have purchased a 1g blunt of Truffle Pupil from Ocean Breeze Cultivators's indoor collection. We appreciate your business and hope you enjoy your purchase.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:27", "2023-06-26T12:35:29.490549", "chatcmpl-7VmHfIv3UYu9jLS4XpShIYIFcLXjn", "openai", "rbtf91s6", 2.4905494399990857, 69, 60, 129]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_417_1067b679caebcf472af6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_417_1067b679caebcf472af6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4003f79c196bc98e282380c8739f45f257bf6efb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_417_1067b679caebcf472af6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: System Message: \n\nThank you for your order! Your order ID is fl-doWkMzvFq2. \n\nYour order includes: \n\n- Cookies\n- Triple Scoop Preroll 1g\n- Joints\n\nThe total amount of your order is $1.0. \n\nWe will process your order and send you a confirmation email once your order is ready for pickup. Thank you for choosing our dispensary!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:30", "2023-06-26T12:35:33.379635", "chatcmpl-7VmHiAEqdiv4raZvmiNrONAai6wgM", "openai", "rbtf91s6", 3.3796349819986062, 68, 89, 157]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_418_80d217e7be7bd0e12c8f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_418_80d217e7be7bd0e12c8f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ead1007ca5d3471b0c0cd3f4dbbd5b3589b9a923 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_418_80d217e7be7bd0e12c8f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! I see that you are inquiring about the STIIIZY Birthday Cake Pod, which is a vape pen with 1 gram of product. Is there anything else I can assist you with?\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:35", "2023-06-26T12:35:37.633511", "chatcmpl-7VmHnYidK0MGPAEo1146dGzyp2Yb9", "openai", "rbtf91s6", 2.63351123800021, 57, 41, 98]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_419_59b58fbe8f35b9616037.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_419_59b58fbe8f35b9616037.table.json new file mode 100644 index 0000000000000000000000000000000000000000..7527b6f3860d96e71c124fa112e5f23315dc0fe9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_419_59b58fbe8f35b9616037.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: System Message: \n\nInvalid product code entered. Please make sure the code is correct and try again.\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:37", "2023-06-26T12:35:37.980842", "chatcmpl-7VmHpxkJDRS5Av53t2B4Hbghsw3bM", "openai", "rbtf91s6", 0.9808418800002983, 59, 20, 79]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_41_ee9b92c26005a8fff4c6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_41_ee9b92c26005a8fff4c6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..871af1b3b6bc2444ed794a79446d05b34544c551 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_41_ee9b92c26005a8fff4c6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T11:49:56", "2023-06-26T11:49:57.898175", "chatcmpl-7VlZcO9I6Ac5xLI0ND2kqnSOkXIyY", "openai", "rbtf91s6", 1.8981752079998842, 177, 14, 191]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_420_032bdd7ea93c1aa7a697.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_420_032bdd7ea93c1aa7a697.table.json new file mode 100644 index 0000000000000000000000000000000000000000..89ad2d4d4968719ea2747a9a5a1a137a441aa2ab --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_420_032bdd7ea93c1aa7a697.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: System message: Thank you for your order! Your order number is co-7YGGNHBR. You have ordered Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg. Your order is currently being processed and will be shipped to you soon. If you have any questions or concerns about your order, please feel free to contact our customer support team. Thank you for choosing Kanha!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:39", "2023-06-26T12:35:42.251765", "chatcmpl-7VmHrFsW345NpBFhJ6CMjHSk49POW", "openai", "rbtf91s6", 3.2517650360005064, 60, 87, 147]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_421_7b25c96f96419ef1aca9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_421_7b25c96f96419ef1aca9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2567c95e86ebf60e4f25e97026898fb424f9b7c2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_421_7b25c96f96419ef1aca9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message2.txt\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Thank you for your order, md-1242517! You have purchased 3.5g of Fresca indoor flower in the nan variety. Your order will be processed and shipped out shortly. Please note that delivery times may vary depending on your location. Thank you for choosing BOBBI HYLL!\n", "gpt-3.5-turbo-0301", "2023-06-26T12:35:42", "2023-06-26T12:35:44.400862", "chatcmpl-7VmHuKCSyLrTaoAbzGqQGBSKkuvXi", "openai", "rbtf91s6", 2.4008624270009022, 54, 62, 116]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_42_dceba7ea9ba187828802.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_42_dceba7ea9ba187828802.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d015782f990e00efd52c8bb063cd19079eea122b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_42_dceba7ea9ba187828802.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Packed Bud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T11:49:58", "2023-06-26T11:49:59.890369", "chatcmpl-7VlZeuwvzcRWvarKL0qSkDaBxMVqT", "openai", "rbtf91s6", 1.8903691030000118, 197, 16, 213]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_43_197aa3069b109fcfe39c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_43_197aa3069b109fcfe39c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2baed08351fca6d4ab0fbbcbad0c43a2d25c1141 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_43_197aa3069b109fcfe39c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T11:50:01", "2023-06-26T11:50:02.553346", "chatcmpl-7VlZhi5EtiMRXNYZTrZRjYwmMxf6l", "openai", "rbtf91s6", 1.5533455899994806, 175, 13, 188]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_44_086185439c11047dacb7.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_44_086185439c11047dacb7.table.json new file mode 100644 index 0000000000000000000000000000000000000000..57fe361d774c60475acab1ce86a77032243d98c7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_44_086185439c11047dacb7.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,nan\n", "gpt-4-0314", "2023-06-26T11:50:03", "2023-06-26T11:50:06.233160", "chatcmpl-7VlZjlw5OsQ1Ou4lHpWbuZa57yvRp", "openai", "rbtf91s6", 3.2331600650004475, 185, 23, 208]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_45_4d3575ad248bc49f454a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_45_4d3575ad248bc49f454a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee6eabeb3dcf9b3dfed8396c6cc4eeacf18ea33 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_45_4d3575ad248bc49f454a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0\n", "gpt-4-0314", "2023-06-26T11:50:06", "2023-06-26T11:50:08.165196", "chatcmpl-7VlZmncx08hMWhrU3PxRGAyoHOdUJ", "openai", "rbtf91s6", 2.165196214000389, 180, 17, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_46_916300e39f1b2459afd8.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_46_916300e39f1b2459afd8.table.json new file mode 100644 index 0000000000000000000000000000000000000000..0002e4e9c2ab9873c5a4ac2ac16159ac9f54f9b5 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_46_916300e39f1b2459afd8.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T11:50:09", "2023-06-26T11:50:11.788197", "chatcmpl-7VlZpuciECauTTbWeYaBSRaDEK656", "openai", "rbtf91s6", 2.788196570000764, 185, 17, 202]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_47_5818780dda234b33b15d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_47_5818780dda234b33b15d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6cd449db4f21bb2c046f1e7d25c5e7dd2879033d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_47_5818780dda234b33b15d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T11:50:12", "2023-06-26T11:50:14.619040", "chatcmpl-7VlZsGVi2Wvno8tHn7jBYwBcOJ7gW", "openai", "rbtf91s6", 2.6190403709997554, 192, 19, 211]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_48_1f794cef6b0f73a70184.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_48_1f794cef6b0f73a70184.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ab28e6d995d0ae19ba42213b0bb3180d57a432de --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_48_1f794cef6b0f73a70184.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1.0\n", "gpt-4-0314", "2023-06-26T11:50:15", "2023-06-26T11:50:16.821553", "chatcmpl-7VlZvgtRCWcNFgeBljmZUqX9FRUFC", "openai", "rbtf91s6", 1.8215528629998516, 191, 16, 207]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_49_0e0ece02741596c61f1e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_49_0e0ece02741596c61f1e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d2efef2b5f0ec86155e3af896dd572b4c8ed32ba --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_49_0e0ece02741596c61f1e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pen,Pod,Birthday Cake,1.0\n", "gpt-4-0314", "2023-06-26T11:50:18", "2023-06-26T11:50:19.922594", "chatcmpl-7VlZyjC9GLKDVzWLZWcwnoirt2HcG", "openai", "rbtf91s6", 1.9225935219992607, 180, 16, 196]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_4_144fd83f781dfb9c51ca.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_4_144fd83f781dfb9c51ca.table.json new file mode 100644 index 0000000000000000000000000000000000000000..498935c5c7d19fdf965f6fa2d9305e5433f7ba81 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_4_144fd83f781dfb9c51ca.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard.\n", "gpt-4-0314", "2023-06-26T11:44:42", "2023-06-26T11:44:49.243765", "chatcmpl-7VlUYvcad2wahIMHavhDEkYrgvjpw", "openai", "rbtf91s6", 7.243764838999596, 59, 72, 131]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_50_c0013a2aeabf9d9e9cfe.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_50_c0013a2aeabf9d9e9cfe.table.json new file mode 100644 index 0000000000000000000000000000000000000000..87f2227700372db5105ea7e68951bae58126493d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_50_c0013a2aeabf9d9e9cfe.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1\n", "gpt-4-0314", "2023-06-26T11:50:20", "2023-06-26T11:50:22.090183", "chatcmpl-7Vla05TbMcsebkvriwSHTfarr20Rt", "openai", "rbtf91s6", 2.090182463000019, 182, 19, 201]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_51_ad02b1c73a9f46d099b5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_51_ad02b1c73a9f46d099b5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e850ac2f1586dfe10de7229bf0babca8a79a3c80 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_51_ad02b1c73a9f46d099b5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Gummies,Edibles,Blood Orange Bliss Indica,100mg\n", "gpt-4-0314", "2023-06-26T11:50:23", "2023-06-26T11:50:24.832001", "chatcmpl-7Vla3vXnDxyy0Eoasio9Lw2ssvKDN", "openai", "rbtf91s6", 1.8320012459998907, 183, 17, 200]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_52_3093b3b77a685c12ea63.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_52_3093b3b77a685c12ea63.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b7285a8d8242e2809b54cba743f0f6f968301b9e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_52_3093b3b77a685c12ea63.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Indoor,Bobbi Hyll,3.5\n", "gpt-4-0314", "2023-06-26T11:50:25", "2023-06-26T11:50:26.963840", "chatcmpl-7Vla5dlWUeFzfIcKWgfNe8u1Dafga", "openai", "rbtf91s6", 1.9638397449998592, 177, 18, 195]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_53_cbd46adfe9a2e4aafd24.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_53_cbd46adfe9a2e4aafd24.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9dba24d7c09268aa476fb075443a6ab82f6ec7e9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_53_cbd46adfe9a2e4aafd24.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Blueberry Belts,100mg,1\n", "gpt-4-0314", "2023-06-26T11:50:29", "2023-06-26T11:50:32.965922", "chatcmpl-7Vla9wHjyPw1tRN8qet9FGRHN4yRP", "openai", "rbtf91s6", 3.9659217730004457, 177, 15, 192]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_54_43a55728e5beb3aa586c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_54_43a55728e5beb3aa586c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..188096b721e752f6fb238d1a1c828d6b476d1e58 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_54_43a55728e5beb3aa586c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape,Pod,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T11:50:32", "2023-06-26T11:50:34.384377", "chatcmpl-7VlaCm13URB0vPP2bYqJJCdUXPOLF", "openai", "rbtf91s6", 2.3843774850001864, 172, 14, 186]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_55_ed8f7a6d411b1b02e637.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_55_ed8f7a6d411b1b02e637.table.json new file mode 100644 index 0000000000000000000000000000000000000000..276233c75bfdd302909da413e106dd77f87e7061 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_55_ed8f7a6d411b1b02e637.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T11:50:34", "2023-06-26T11:50:36.642020", "chatcmpl-7VlaEv13ifkNEQDkxtjEMGcUp61aH", "openai", "rbtf91s6", 2.642019822000293, 179, 15, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_56_8d3872029a851b6e7d64.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_56_8d3872029a851b6e7d64.table.json new file mode 100644 index 0000000000000000000000000000000000000000..524850519b57f28b58fe35aae23e23f1c3c16ef9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_56_8d3872029a851b6e7d64.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Indoor,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T11:50:38", "2023-06-26T11:50:39.974155", "chatcmpl-7VlaITX7YEtzcXC241EGCY8pT5DYv", "openai", "rbtf91s6", 1.974155163999967, 177, 17, 194]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_57_c1d57af51e313d9ce2f1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_57_c1d57af51e313d9ce2f1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a50b656044a41ddb0b1b8d727c15d79060b7a166 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_57_c1d57af51e313d9ce2f1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Shake,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T11:50:40", "2023-06-26T11:50:41.689482", "chatcmpl-7VlaKcpXG6M9nHsCFW0sW1YjZg2X3", "openai", "rbtf91s6", 1.689481995999813, 173, 13, 186]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_58_3623b2b0ddf0680d93f9.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_58_3623b2b0ddf0680d93f9.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cb5c02896428c92ec02c0e41279a7e500ee17a5e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_58_3623b2b0ddf0680d93f9.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5\n", "gpt-4-0314", "2023-06-26T11:50:42", "2023-06-26T11:50:45.287731", "chatcmpl-7VlaMZfFqc7DczRXTTPrQlrlvDXVB", "openai", "rbtf91s6", 3.287731273000645, 187, 24, 211]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_59_f8c856482e9178f0511e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_59_f8c856482e9178f0511e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..79d58d5faedf6bcb5a75e1d3fcbda95f90c15c88 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_59_f8c856482e9178f0511e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummy,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T11:50:46", "2023-06-26T11:50:48.689571", "chatcmpl-7VlaQ5U5ph304FEdvEEs4bYAh15VS", "openai", "rbtf91s6", 2.6895705769993583, 183, 14, 197]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_5_5a45823298ba9e304423.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_5_5a45823298ba9e304423.table.json new file mode 100644 index 0000000000000000000000000000000000000000..573d4a5f7bd03ac20700f0ea6a064d53ce21b596 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_5_5a45823298ba9e304423.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Product: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0g\n\nDescription: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses.\n", "gpt-4-0314", "2023-06-26T11:44:50", "2023-06-26T11:45:00.678751", "chatcmpl-7VlUgs08gPqBY8QkkRbpnAF5L3HNW", "openai", "rbtf91s6", 10.67875084699972, 54, 116, 170]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_60_6d2e250a10c957bbc8d1.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_60_6d2e250a10c957bbc8d1.table.json new file mode 100644 index 0000000000000000000000000000000000000000..05d22b5f482f3868769e69d41ffb48b71d35cf1b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_60_6d2e250a10c957bbc8d1.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Syrup,Edible,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T11:50:51", "2023-06-26T11:50:54.415971", "chatcmpl-7VlaV4buGanWuL5AlcGEJXuz0Ipg7", "openai", "rbtf91s6", 3.4159711759994025, 259, 16, 275]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_61_8bc9aa3c875dda6aac03.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_61_8bc9aa3c875dda6aac03.table.json new file mode 100644 index 0000000000000000000000000000000000000000..ef968a04a40185ed5bc52bf75c09c31578634509 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_61_8bc9aa3c875dda6aac03.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T11:50:53", "2023-06-26T11:50:55.280634", "chatcmpl-7VlaXrGagcskubdLOdmqS1Xug0tOX", "openai", "rbtf91s6", 2.280633647000286, 256, 14, 270]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_62_4ad9a853d1db3a3d274e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_62_4ad9a853d1db3a3d274e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..b5499c8a2c608f0b6b0e0f242691c3bdd52794f3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_62_4ad9a853d1db3a3d274e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Bud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T11:50:56", "2023-06-26T11:50:59.261070", "chatcmpl-7VlaaeW5FgOLypxs09eKFOR070zHd", "openai", "rbtf91s6", 3.261070049999944, 276, 15, 291]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_63_8fe740132ca8c5b44f24.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_63_8fe740132ca8c5b44f24.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d75a195aca845637af3d7a66db601aa859a5f41e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_63_8fe740132ca8c5b44f24.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T11:51:01", "2023-06-26T11:51:03.557277", "chatcmpl-7VlafV2fhl2SFJI4tFGf45j4lslHW", "openai", "rbtf91s6", 2.557277558000351, 254, 13, 267]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_64_f9c677fc8192b7144137.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_64_f9c677fc8192b7144137.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bd1455c8fc22b1eceabe6d414405772cb71dcf6f --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_64_f9c677fc8192b7144137.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000 mg\n", "gpt-4-0314", "2023-06-26T11:51:03", "2023-06-26T11:51:05.343346", "chatcmpl-7VlahqwP0W2VTfsiNwl0TouI7iDb4", "openai", "rbtf91s6", 2.343345881999994, 264, 21, 285]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_65_d21d388e9e7900f148ac.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_65_d21d388e9e7900f148ac.table.json new file mode 100644 index 0000000000000000000000000000000000000000..4edc27b13cbb53281941bb11dcdfa3b9577b1191 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_65_d21d388e9e7900f148ac.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1\n", "gpt-4-0314", "2023-06-26T11:51:06", "2023-06-26T11:51:09.970911", "chatcmpl-7VlakGaAenEFRX1DfuRxidf8oi3Mj", "openai", "rbtf91s6", 3.970910533999813, 259, 16, 275]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_66_50ac79403584175bb55e.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_66_50ac79403584175bb55e.table.json new file mode 100644 index 0000000000000000000000000000000000000000..c422d9514b947caae87e9b802c93c4b5d1937e3e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_66_50ac79403584175bb55e.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T11:51:10", "2023-06-26T11:51:12.545202", "chatcmpl-7VlaoI61LVczmWOchaB8PRAh0q0Wy", "openai", "rbtf91s6", 2.545202500999949, 264, 17, 281]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_67_53de95041b93c2f8f393.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_67_53de95041b93c2f8f393.table.json new file mode 100644 index 0000000000000000000000000000000000000000..229ee7c45ba32052fb8bf780a443189991cd49f4 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_67_53de95041b93c2f8f393.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T11:51:13", "2023-06-26T11:51:17.756628", "chatcmpl-7Vlar8ZDcBe3OO49heb7h09xcMWne", "openai", "rbtf91s6", 4.756627619999563, 271, 19, 290]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_68_4f8fde812569e44f5c23.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_68_4f8fde812569e44f5c23.table.json new file mode 100644 index 0000000000000000000000000000000000000000..26a78b93f60540a2bfb9829ffef48af9f8be6311 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_68_4f8fde812569e44f5c23.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-4-0314", "2023-06-26T11:51:18", "2023-06-26T11:51:20.704549", "chatcmpl-7VlawfOZy4p3plt6P8HfPXUhsSKFi", "openai", "rbtf91s6", 2.704549428000064, 270, 14, 284]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_69_1b0fa3c3411dbda92ca4.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_69_1b0fa3c3411dbda92ca4.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9290a446bbef86df7128ec694c6f306caa5acf81 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_69_1b0fa3c3411dbda92ca4.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Pod,Birthday Cake,1g\n", "gpt-4-0314", "2023-06-26T11:51:22", "2023-06-26T11:51:23.384063", "chatcmpl-7Vlb02fRZ23PytFFbg0nxK3MV05RQ", "openai", "rbtf91s6", 1.384062461999747, 259, 13, 272]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_6_54b19572edb5b1b6c020.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_6_54b19572edb5b1b6c020.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a941c8aaf3d1cc19b4b250078640fc3c58f0ddd7 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_6_54b19572edb5b1b6c020.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided:\n\nProduct ID: md-1159983\nProduct Name: Baby Jeeter Peaches\nBrand: Jeeter\nType: Infused Prerolls\nQuantity: 5 prerolls\nTotal Weight: 2.5 grams\n\nPlease let me know if there's any additional information you'd like to share or if you have any questions about this product.\n", "gpt-4-0314", "2023-06-26T11:45:01", "2023-06-26T11:45:11.959247", "chatcmpl-7VlUrmmRo76QdZNoIlB618WR8Fihv", "openai", "rbtf91s6", 10.959246870999777, 59, 101, 160]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_70_e38721f80d75af768343.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_70_e38721f80d75af768343.table.json new file mode 100644 index 0000000000000000000000000000000000000000..e06b1079f7f8217f86487f09f32845f055151ca0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_70_e38721f80d75af768343.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1\n", "gpt-4-0314", "2023-06-26T11:51:24", "2023-06-26T11:51:26.188653", "chatcmpl-7Vlb2Patjt6P7afvUrjGNXE0EKKcC", "openai", "rbtf91s6", 2.188652763999926, 261, 19, 280]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_71_bc02379fb4192e4456a0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_71_bc02379fb4192e4456a0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..cdab7f0849b33cd9d7397c3b4cf0e5a66aeebbff --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_71_bc02379fb4192e4456a0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg\n", "gpt-4-0314", "2023-06-26T11:51:26", "2023-06-26T11:51:28.808939", "chatcmpl-7Vlb4ursPn6c9RMaifQxWE2NuJsv2", "openai", "rbtf91s6", 2.8089390499999354, 262, 17, 279]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_72_a79a07e289c16d72d31a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_72_a79a07e289c16d72d31a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..05a3126cf6b2d328bcf329a1b721f5a2525dd387 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_72_a79a07e289c16d72d31a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Bud,Indoor,3.5\n", "gpt-4-0314", "2023-06-26T11:51:29", "2023-06-26T11:51:30.604660", "chatcmpl-7Vlb7wQcJzCYB7P1IO55fPD7X2Thw", "openai", "rbtf91s6", 1.604659475000517, 256, 15, 271]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_73_2abccfce42cd49c07a36.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_73_2abccfce42cd49c07a36.table.json new file mode 100644 index 0000000000000000000000000000000000000000..d1735c69ec7654d7c5fa4f2d7a0bb8bda11fa262 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_73_2abccfce42cd49c07a36.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummy,Blueberry Belts,100mg\n", "gpt-4-0314", "2023-06-26T11:51:31", "2023-06-26T11:51:33.160393", "chatcmpl-7Vlb9Q6e5Ov7PC29lQmdIGbbFM5xb", "openai", "rbtf91s6", 2.1603932770003667, 256, 15, 271]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_74_d5346cc9ad05c3c446d5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_74_d5346cc9ad05c3c446d5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..81a995017a1107a203a142ecb8757ab2a56b92bc --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_74_d5346cc9ad05c3c446d5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape,Pod,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T11:51:34", "2023-06-26T11:51:35.742418", "chatcmpl-7VlbC2AwqZ0LJGzN8m3rWekpkrNo2", "openai", "rbtf91s6", 1.7424175490004927, 251, 14, 265]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_75_59ba3dd2b4444540b750.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_75_59ba3dd2b4444540b750.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5fcc7dcef7c121fb185cecd34e71b00621fef4f2 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_75_59ba3dd2b4444540b750.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T11:51:36", "2023-06-26T11:51:37.599899", "chatcmpl-7VlbExv1hzqFhR7OeRO9VnyKQAng8", "openai", "rbtf91s6", 1.599898631000542, 258, 15, 273]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_76_3a66ece7563ee52c2ad6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_76_3a66ece7563ee52c2ad6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..85fef80eff18d95a8fff9b3234b4f7bb444d001c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_76_3a66ece7563ee52c2ad6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Bud,Double Down Indoor,3.5\n", "gpt-4-0314", "2023-06-26T11:51:38", "2023-06-26T11:51:39.625021", "chatcmpl-7VlbGDdnOWPUTjd2Xf8zXfdchsvVG", "openai", "rbtf91s6", 1.6250215519994526, 256, 17, 273]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_77_c5d76765d3a8f98d4787.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_77_c5d76765d3a8f98d4787.table.json new file mode 100644 index 0000000000000000000000000000000000000000..aa6db3f1e8b03c7fe4e189c6ca2de9a6ba001ad3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_77_c5d76765d3a8f98d4787.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Shake,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T11:51:40", "2023-06-26T11:51:41.902344", "chatcmpl-7VlbIrZARlZnOrPB2qheN1MsyjQDW", "openai", "rbtf91s6", 1.9023438599997462, 252, 13, 265]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_78_af05611f4d0614d5892c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_78_af05611f4d0614d5892c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..13a079334b6e336d3a1ac1c71fe38f81f0e207ab --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_78_af05611f4d0614d5892c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,5pk,2.5\n", "gpt-4-0314", "2023-06-26T11:51:43", "2023-06-26T11:51:45.684294", "chatcmpl-7VlbLXH2MXBvee634I2k83HZcIvvx", "openai", "rbtf91s6", 2.6842938469999353, 266, 23, 289]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_79_5cf9c4d44c1544d30c64.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_79_5cf9c4d44c1544d30c64.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5f907c1e8cb7898b2a52ce18b1e5bd197a851f6b --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_79_5cf9c4d44c1544d30c64.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummy,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T11:51:46", "2023-06-26T11:51:48.957829", "chatcmpl-7VlbOkq2Wk1OYPz1v5Mb9eByaFyKf", "openai", "rbtf91s6", 2.9578291280004123, 262, 14, 276]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_7_55510ad49666d3d526d6.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_7_55510ad49666d3d526d6.table.json new file mode 100644 index 0000000000000000000000000000000000000000..68b8d53c3b566b0a3eae40e65b42a28707cbb1a0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_7_55510ad49666d3d526d6.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). \n\nUnfortunately, the information provided is limited, but I'll do my best to help.\n\nOcean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them.\n\nIn this case, \"Indoor\" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a \"Blunt,\" which is a slang term for a cigar hollowed out and filled with cannabis. The \"1g\" indicates that this blunt contains 1 gram of cannabis.\n\nHowever, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product.\n\nKindly note to use cannabis products responsibly and according to your local laws and regulations.\n", "gpt-4-0314", "2023-06-26T11:45:12", "2023-06-26T11:45:35.100466", "chatcmpl-7VlV2YraXRUzrQ66NiVDKF3QzAJcP", "openai", "rbtf91s6", 23.100466433999827, 66, 220, 286]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_80_8618137ad07c601b16a5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_80_8618137ad07c601b16a5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..067e1fc036c8669d2ecb49a660c949b36413969c --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_80_8618137ad07c601b16a5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan\n", "\n\n**assistant**: Chill Medicated,Edible,Syrup,Watermelon,250mg\n", "gpt-4-0314", "2023-06-26T11:51:49", "2023-06-26T11:51:51.498410", "chatcmpl-7VlbR0Fw3tAT28qPZSgcPjDdWPdPs", "openai", "rbtf91s6", 2.498410554999282, 376, 16, 392]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_81_52e31f0eedd6adc1741a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_81_52e31f0eedd6adc1741a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..52b560941ab99c6ad7116c1190ec8629eaf00b02 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_81_52e31f0eedd6adc1741a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan\n", "\n\n**assistant**: Feelz,Flower,Bud,Space Cowboy,3.5\n", "gpt-4-0314", "2023-06-26T11:51:52", "2023-06-26T11:51:54.331653", "chatcmpl-7VlbUJnbgXbMB9kX96PUYmHzALFc0", "openai", "rbtf91s6", 2.331652847999976, 373, 14, 387]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_82_9d23f76b28111323dd0f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_82_9d23f76b28111323dd0f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..9d17b861d21d928cdf80f8c2d35b48ba54f12ce0 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_82_9d23f76b28111323dd0f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5\n", "\n\n**assistant**: Champelli,Flower,Bud,Xclusivo,3.5\n", "gpt-4-0314", "2023-06-26T11:51:55", "2023-06-26T11:51:56.935821", "chatcmpl-7VlbXX2rLIZecaI2CrTvqBQZBfLHV", "openai", "rbtf91s6", 1.9358209860001807, 393, 15, 408]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_83_7e31f0c3316e8790a5aa.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_83_7e31f0c3316e8790a5aa.table.json new file mode 100644 index 0000000000000000000000000000000000000000..32e0bc796da0062714cb62982e62733d987f9369 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_83_7e31f0c3316e8790a5aa.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan\n", "\n\n**assistant**: CAM,Flower,Bud,Mellowz #7,7\n", "gpt-4-0314", "2023-06-26T11:51:58", "2023-06-26T11:52:00.193820", "chatcmpl-7VlbaYfNXVBU7N7FgIem74U9CvCpa", "openai", "rbtf91s6", 2.193819883999822, 371, 13, 384]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_84_ebfd78c50ee5b2e56b7f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_84_ebfd78c50ee5b2e56b7f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..62ee570b077edf978455f23bb9d839b253b4d819 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_84_ebfd78c50ee5b2e56b7f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan\n", "\n\n**assistant**: Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000,nan\n", "gpt-4-0314", "2023-06-26T11:52:00", "2023-06-26T11:52:02.906778", "chatcmpl-7Vlbcz21om7wf2g2HzLs7MoPJSwF4", "openai", "rbtf91s6", 2.9067778470007397, 381, 22, 403]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_85_72125ad6c75f6478ca0c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_85_72125ad6c75f6478ca0c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..65cdc83995168ce1efcb590bac7c7cc577c9dff3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_85_72125ad6c75f6478ca0c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\n", "\n\n**assistant**: Raw Garden,Concentrate,Diamonds,Pink Lemonade,1\n", "gpt-4-0314", "2023-06-26T11:52:04", "2023-06-26T11:52:06.877492", "chatcmpl-7VlbgSgiQr2qPgepBIJGXANBegpdH", "openai", "rbtf91s6", 2.8774917720002122, 376, 15, 391]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_86_6aa27a5a9c9b64c3f9d5.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_86_6aa27a5a9c9b64c3f9d5.table.json new file mode 100644 index 0000000000000000000000000000000000000000..773778d54188ae4d8c73d0c6bb2ec602ab4fe218 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_86_6aa27a5a9c9b64c3f9d5.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n", "\n\n**assistant**: Jeeter,Preroll,Infused Joint,Peaches,12.5\n", "gpt-4-0314", "2023-06-26T11:52:07", "2023-06-26T11:52:09.321592", "chatcmpl-7Vlbj5lUdOSTxQ7SymeUb9jTDcNAR", "openai", "rbtf91s6", 2.3215915829996447, 381, 17, 398]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_87_b737414cb38c4862ca4f.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_87_b737414cb38c4862ca4f.table.json new file mode 100644 index 0000000000000000000000000000000000000000..f33441eedc7e18016d96d87929b5f5b69a4e0894 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_87_b737414cb38c4862ca4f.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan\n", "\n\n**assistant**: Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1\n", "gpt-4-0314", "2023-06-26T11:52:10", "2023-06-26T11:52:13.648396", "chatcmpl-7VlbmUXfjtlHs2y29sxI4yNYiqmTC", "openai", "rbtf91s6", 3.648395535000418, 388, 19, 407]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_88_1f5197f3db771290f530.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_88_1f5197f3db771290f530.table.json new file mode 100644 index 0000000000000000000000000000000000000000..95730e7bd7b2ae56ea26ed82d073853a3128d772 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_88_1f5197f3db771290f530.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: Cookies,Preroll,Joint,Triple Scoop,1\n", "gpt-4-0314", "2023-06-26T11:52:14", "2023-06-26T11:52:16.130730", "chatcmpl-7VlbqAuC3CcsU8UdA7DtTCKwdIFqJ", "openai", "rbtf91s6", 2.130730295999456, 387, 14, 401]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_89_f666351017aa9b11515a.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_89_f666351017aa9b11515a.table.json new file mode 100644 index 0000000000000000000000000000000000000000..83b78019ee4df5d1d34bbf2f80e06da4190c5e85 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_89_f666351017aa9b11515a.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: STIIIZY,Vape Cartridge,Birthday Cake,1g,1\n", "gpt-4-0314", "2023-06-26T11:52:17", "2023-06-26T11:52:19.260841", "chatcmpl-7Vlbtr5OucD5nTOVEtAy05w3eyJNm", "openai", "rbtf91s6", 2.2608410269995147, 376, 16, 392]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_8_9289e2b047b158f0598c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_8_9289e2b047b158f0598c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..76c1473004240ddf1e6aafbcdb9ccdf9cd326e98 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_8_9289e2b047b158f0598c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0\n", "\n\n**assistant**: It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis.\n\nCookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts.\n\nIs there any further information or assistance you need regarding this product or cannabis in general?\n", "gpt-4-0314", "2023-06-26T11:45:36", "2023-06-26T11:45:46.518497", "chatcmpl-7VlVQ3QjUDb0ufNTM4rOrlTtcH6dw", "openai", "rbtf91s6", 10.518497519999983, 65, 115, 180]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_90_9f46eb90f6979846438d.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_90_9f46eb90f6979846438d.table.json new file mode 100644 index 0000000000000000000000000000000000000000..bf48baecb44780c8d3eb242feeb8593939e6d5b8 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_90_9f46eb90f6979846438d.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan\n", "\n\n**assistant**: Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1\n", "gpt-4-0314", "2023-06-26T11:52:19", "2023-06-26T11:52:21.015370", "chatcmpl-7VlbvK2t2S5vLbXufUmrzNwoP2uI7", "openai", "rbtf91s6", 2.0153704060003292, 378, 20, 398]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_91_e0f6ac1997a78e4f4d71.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_91_e0f6ac1997a78e4f4d71.table.json new file mode 100644 index 0000000000000000000000000000000000000000..2602abe66901d594e78d02bee2d656c3f0ae0732 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_91_e0f6ac1997a78e4f4d71.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan\n", "\n\n**assistant**: Kanha,Edible,Gummies,Blood Orange Bliss,100mg\n", "gpt-4-0314", "2023-06-26T11:52:22", "2023-06-26T11:52:23.660919", "chatcmpl-7Vlby8sCiL7SScOwosffNmeS9SCo3", "openai", "rbtf91s6", 1.6609191699999428, 379, 15, 394]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_92_5b2443cf626897498c9c.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_92_5b2443cf626897498c9c.table.json new file mode 100644 index 0000000000000000000000000000000000000000..14e675f9b312397772f870c2f5ae99437c938e09 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_92_5b2443cf626897498c9c.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5\n", "\n\n**assistant**: Fresca,Flower,Bud,Indoor,3.5\n", "gpt-4-0314", "2023-06-26T11:52:24", "2023-06-26T11:52:26.220389", "chatcmpl-7Vlc0UV6tKOwSajk0XNgBBAYEv1hn", "openai", "rbtf91s6", 2.220388740999624, 373, 15, 388]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_93_b80a27425f8205b54832.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_93_b80a27425f8205b54832.table.json new file mode 100644 index 0000000000000000000000000000000000000000..8251c9302f7adc53024e433f2eb23e457477ae74 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_93_b80a27425f8205b54832.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan\n", "\n\n**assistant**: Flav,Edible,Gummies,Blueberry Belts,5\n", "gpt-4-0314", "2023-06-26T11:52:27", "2023-06-26T11:52:30.115522", "chatcmpl-7Vlc3gyV8ktjZmUXLzjS0D5KJxWdt", "openai", "rbtf91s6", 3.115522415000669, 373, 14, 387]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_94_afe04ce2e9cbc8725f92.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_94_afe04ce2e9cbc8725f92.table.json new file mode 100644 index 0000000000000000000000000000000000000000..14e48d36f5fb372b6a1353857d5c269354b2873e --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_94_afe04ce2e9cbc8725f92.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan\n", "\n\n**assistant**: Left Coast Extracts,Vape Cartridge,Pod,Cherry Pie,1\n", "gpt-4-0314", "2023-06-26T11:52:31", "2023-06-26T11:52:32.986167", "chatcmpl-7Vlc7HKhyWt6UElO5UxwID2olXG8u", "openai", "rbtf91s6", 1.9861674730000232, 368, 16, 384]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_95_27ab120a1a1e856769ed.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_95_27ab120a1a1e856769ed.table.json new file mode 100644 index 0000000000000000000000000000000000000000..6d9eca7bd77a72cef95832eb44ee34636da31a8d --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_95_27ab120a1a1e856769ed.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan\n", "\n\n**assistant**: Minntz,Preroll,Joint,Emerald Cut,1\n", "gpt-4-0314", "2023-06-26T11:52:33", "2023-06-26T11:52:34.698884", "chatcmpl-7Vlc9CmFOowYKcw32LHlwoqSIJawL", "openai", "rbtf91s6", 1.698883799000214, 375, 15, 390]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_96_3e1bc3b96046dc740e19.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_96_3e1bc3b96046dc740e19.table.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad63c9ae6a56bbdb91df00098b1207e3608c745 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_96_3e1bc3b96046dc740e19.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Growers Circle,Flower,Bud,Double Down,3.5\n", "gpt-4-0314", "2023-06-26T11:52:35", "2023-06-26T11:52:37.764992", "chatcmpl-7VlcBqedRBh2CbDOk7IUHbp9IWKrC", "openai", "rbtf91s6", 2.764992067000094, 373, 16, 389]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_97_0005a9833539ed472eda.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_97_0005a9833539ed472eda.table.json new file mode 100644 index 0000000000000000000000000000000000000000..a555865f723bd5cb68a194f38065febaa0f5c245 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_97_0005a9833539ed472eda.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan\n", "\n\n**assistant**: Pacific Stone,Flower,Bud,Blue Dream,14\n", "gpt-4-0314", "2023-06-26T11:52:38", "2023-06-26T11:52:39.621586", "chatcmpl-7VlcEIfJbmVHoTZEjLEcwbXrk65aW", "openai", "rbtf91s6", 1.6215855979999105, 369, 12, 381]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_98_c05ca791c7fa7c18aefe.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_98_c05ca791c7fa7c18aefe.table.json new file mode 100644 index 0000000000000000000000000000000000000000..05e35bdf4ba6e9dd6481f43d817a45384d438624 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_98_c05ca791c7fa7c18aefe.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan\n", "\n\n**assistant**: The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5\n", "gpt-4-0314", "2023-06-26T11:52:40", "2023-06-26T11:52:42.382243", "chatcmpl-7VlcGKnzU578noSdrSoiogReualEE", "openai", "rbtf91s6", 2.3822429400006513, 383, 23, 406]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_99_c782fce36af5926b83f0.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_99_c782fce36af5926b83f0.table.json new file mode 100644 index 0000000000000000000000000000000000000000..1efaddb3ca357cab5d9e1214e39912e206374235 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_99_c782fce36af5926b83f0.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan\n\n\n**assistant**: Jeeter,Preroll,Infused Joint,Maui Wowie,12.5\n\n\n**user**: bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5\n\n\n**assistant**: Feelz,Flower,Bud,Guava Gelato,3.5\n\n\n**user**: fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0\n\n\n**assistant**: Khalifa Kush,Preroll,Joint,Khalifa Mints,1\n\n\n**user**: bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan\n\n\n**assistant**: GRIZZLY PEAK,Preroll,Joint,nan,3.5\n\n\n**user**: fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan\n\n\n**assistant**: Drops,Edible,Gummies,nan,nan\n\n\n**user**: co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan\n", "\n\n**assistant**: Flight Bites,Edible,Gummies,S'mores,100mg\n", "gpt-4-0314", "2023-06-26T11:52:43", "2023-06-26T11:52:44.440487", "chatcmpl-7VlcJD68jeEm1guHPU7VYJoWjLr7D", "openai", "rbtf91s6", 1.4404872839995733, 379, 14, 393]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_9_3019586a26a3f7f179db.table.json b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_9_3019586a26a3f7f179db.table.json new file mode 100644 index 0000000000000000000000000000000000000000..59b3062354e33a3d936efd6cd8bfd3d4538d15c9 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/media/table/stats_9_3019586a26a3f7f179db.table.json @@ -0,0 +1 @@ +{"columns": ["request", "response", "model", "start_time", "end_time", "request_id", "api_type", "session_id", "elapsed_time", "prompt_tokens", "completion_tokens", "total_tokens"], "data": [["\n\n**system**: ../prompts/gpt4-system-message.txt\n\n\n**user**: bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0\n", "\n\n**assistant**: Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product:\n\n1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress.\n\n2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience.\n\n3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels.\n\n4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects.\n\nPlease note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g.\n", "gpt-4-0314", "2023-06-26T11:45:47", "2023-06-26T11:46:17.388578", "chatcmpl-7VlVbmPZJGx99GvShDFh7LmpbQJyo", "openai", "rbtf91s6", 30.388577845000327, 54, 297, 351]]} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/requirements.txt b/app/wandb/run-20230626_114056-rbtf91s6/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab2dc2b7f048104f047e7571395426b4703fa314 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/requirements.txt @@ -0,0 +1,82 @@ +aiohttp==3.8.4 +aiosignal==1.3.1 +appdirs==1.4.4 +asttokens==2.2.1 +async-timeout==4.0.2 +attrs==23.1.0 +backcall==0.2.0 +backports.functools-lru-cache==1.6.4 +certifi==2023.5.7 +charset-normalizer==3.1.0 +click==8.1.3 +datasets==2.13.1 +debugpy==1.5.1 +decorator==5.1.1 +dill==0.3.6 +docker-pycreds==0.4.0 +docopt==0.6.2 +entrypoints==0.4 +executing==1.2.0 +filelock==3.12.2 +frozenlist==1.3.3 +fsspec==2023.6.0 +gitdb==4.0.10 +gitpython==3.1.31 +huggingface-hub==0.15.1 +idna==3.4 +ipykernel==6.15.0 +ipython==8.14.0 +jedi==0.18.2 +joblib==1.2.0 +jupyter-client==7.3.4 +jupyter-core==5.3.1 +matplotlib-inline==0.1.6 +multidict==6.0.4 +multiprocess==0.70.14 +nest-asyncio==1.5.6 +numpy==1.24.3 +openai==0.27.8 +packaging==23.1 +pandas==2.0.2 +parso==0.8.3 +pathtools==0.1.2 +pexpect==4.8.0 +pickleshare==0.7.5 +pip==23.1.2 +pipreqs==0.4.13 +platformdirs==3.5.3 +prompt-toolkit==3.0.38 +protobuf==4.23.3 +psutil==5.9.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +pyarrow==12.0.1 +pygments==2.15.1 +python-dateutil==2.8.2 +python-dotenv==1.0.0 +pytz==2023.3 +pyyaml==6.0 +pyzmq==25.1.0 +requests==2.31.0 +scikit-learn==1.2.2 +scipy==1.10.1 +sentry-sdk==1.25.1 +setproctitle==1.3.2 +setuptools==67.8.0 +six==1.16.0 +smmap==5.0.0 +stack-data==0.6.2 +tenacity==8.2.2 +threadpoolctl==3.1.0 +tornado==6.1 +tqdm==4.65.0 +traitlets==5.9.0 +typing-extensions==4.6.3 +tzdata==2023.3 +urllib3==2.0.3 +wandb==0.15.4 +wcwidth==0.2.6 +wheel==0.38.4 +xxhash==3.2.0 +yarg==0.1.9 +yarl==1.9.2 \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-metadata.json b/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..b20f529dc05003cd6f4aabc905d9b73baf3017ca --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-metadata.json @@ -0,0 +1,76 @@ +{ + "os": "Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.31", + "python": "3.10.11", + "heartbeatAt": "2023-06-26T18:40:58.302140", + "startedAt": "2023-06-26T18:40:56.999152", + "docker": null, + "cuda": null, + "args": null, + "state": "running", + "program": "", + "git": { + "remote": "git@github.com:greendata-ai/llm-data-cleaner.git", + "commit": "44f071592219263ae77b1fe59b9a956a07bcb9ee" + }, + "email": "cmagganas@gmail.com", + "root": "/home/cmagganas/kaleidoscope/llm_data_cleaner", + "host": "DESKTOP-HQ994U7", + "username": "cmagganas", + "executable": "/home/cmagganas/anaconda3/envs/kd-llm-dc/bin/python", + "cpu_count": 4, + "cpu_count_logical": 8, + "cpu_freq": { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + "cpu_freq_per_core": [ + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + }, + { + "current": 2112.006, + "min": 0.0, + "max": 0.0 + } + ], + "disk": { + "total": 250.92389297485352, + "used": 89.98526763916016 + }, + "memory": { + "total": 7.67767333984375 + } +} diff --git a/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-summary.json b/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d3e25a5024e58f52c09f60fa0b5e923b3224bb --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/files/wandb-summary.json @@ -0,0 +1 @@ +{"stats": {"_type": "table-file", "sha256": "7b25c96f96419ef1aca961b9d2e9d3360e9616c602989d95246126ec948c22c7", "size": 785, "artifact_path": "wandb-client-artifact://oqpnrd1lcx0iskhjumz6i8dn29wndkkcrq8kgtiy5xdgb0qdrrtw5kcrjkf3uh85ac0ajryugs1b0611x2837ypt0n2kftmbselsvq8kl8sg2cujuzsqix35pi8hn73f:latest/stats.table.json", "_latest_artifact_path": "wandb-client-artifact://oqpnrd1lcx0iskhjumz6i8dn29wndkkcrq8kgtiy5xdgb0qdrrtw5kcrjkf3uh85ac0ajryugs1b0611x2837ypt0n2kftmbselsvq8kl8sg2cujuzsqix35pi8hn73f:latest/stats.table.json", "path": "media/table/stats_421_7b25c96f96419ef1aca9.table.json", "ncols": 12, "nrows": 1}, "usage/elapsed_time": 2.4008624270009022, "usage/prompt_tokens": 54, "usage/completion_tokens": 62, "usage/total_tokens": 116, "_timestamp": 1687808147.3762307, "_runtime": 3290.346539735794, "_step": 421, "_wandb": {"runtime": 2790}} \ No newline at end of file diff --git a/app/wandb/run-20230626_114056-rbtf91s6/run-rbtf91s6.wandb b/app/wandb/run-20230626_114056-rbtf91s6/run-rbtf91s6.wandb new file mode 100644 index 0000000000000000000000000000000000000000..b2d909b372418eda8d93375b87a8cf8c73d8fdf3 --- /dev/null +++ b/app/wandb/run-20230626_114056-rbtf91s6/run-rbtf91s6.wandb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b637d0276253d854ddcf419165f39920c965119a08affcc77aa9c2eb42f76239 +size 7963699 diff --git a/data/Cookies-AI-Gold-Standard - Cookies-AI-Gold-Standard.csv b/data/Cookies-AI-Gold-Standard - Cookies-AI-Gold-Standard.csv new file mode 100644 index 0000000000000000000000000000000000000000..ba63c6f93c4690bc3cf2bc868c4742aede6a9c47 --- /dev/null +++ b/data/Cookies-AI-Gold-Standard - Cookies-AI-Gold-Standard.csv @@ -0,0 +1,101 @@ +sku,product_name (pos),brand (pos),product_category (pos),strain_name (pos),product_weight_grams (pos),brand (manual review),product_category (manual review),sub_product_category (manual review),strain_name (manual review),product_weight_grams (manual review) +bl-842922110296,STIIIZY - Birthday Cake Pod 1g,,VAPE PENS 1G,,1,STIIIZY,Vape,Vape,Birthday Cake,1 +co-6ARLLX12,SMASH Hits - Hippie Slayer - Indoor - 1g,SMASH Hits,,Hippie Slayer,,SMASH Hits,Preroll,Joint,Hippie Slayer,1 +bl-090035986141,Eighth Brothers - Black Jack 1g Preroll,,PREROLLS,,,Eighth Brothers,Preroll,Joint,Black Jack,1 +bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,,PREROLL PACKS,,,GRIZZLY PEAK,Preroll,Joint,N/A,3.5 +co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,,Emerald Cut,,Minntz,Preroll,Joint,Emerald Cut,1 +co-6RVJZ5HK,Cookies - Heavy Eye - Indoor - Joint - 1g,Cookies,,Heavy Eye,,Cookies,Preroll,Joint,Heavy Eye,1 +co-0WF3BFBA,Happy Valley - Jacks Peaches #3 - Indoor - Joint - 1g,Happy Valley,,Jacks Peaches #3,,Happy Valley,Preroll,Joint,Jacks Peaches #3,1 +fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1,Khalifa Kush,Preroll,Joint,Khalifa Mints,1 +co-1H7KPNQE,Green Life - Baby J - Miss X - Indoor - Multi Joint - 6pk - 1.8g,Green Life,,Miss X,,Green Life,Preroll,Joint,Miss X,10.8 +fl-dqyA6Qfkce,(Review Promo) | CannaKings | King Louis Preroll 1g | Joints,CannaKings,Joint,(Review Promo) | CannaKings | King Louis Preroll 1g,1,CannaKings,Preroll,Joint,N/A,1 +fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1,Cookies,Preroll,Joint,Triple Scoop,1 +co-4DCQP2GH,LP Exotics - Mac 1 - Indoor - Joint - 1g,LP Exotic,,,,LP Exotic,Preroll,Joint,Mac 1,1 +co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,,,,,The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5 +co-AAGHHPTQ,The Grower Circle - Family Secret - Indoor - Joint - 1g,,,,,The Growers Circle,Preroll,Joint,Family Secret,1 +co-ABCKN1GR,Happy Valley - Super Lemon Haze - Indoor - Joint - 1g,,,,,Happy Valley,Preroll,Joint,Super Lemon Haze,1 +co-AC1H3560,The Grower Circle - Double Down - Indoor - Joint - 1g,,,,,The Growers Circle,Preroll,Joint,Double Down,1 +bl-850002822014,GRIZZLY PEAK - Sativa Bone Infused Pre-roll 1G,,INFUSED PREROLLS,,1,GRIZZLY PEAK,Preroll,Infused Joint,N/A,1 +md-1230938,Horchata | Infused Preroll - 1g,Jeeter,Infused Prerolls,,,Jeeter,Preroll,Infused Joint,Horchata,1 +co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,,,,,Cookies,Preroll,Infused Joint,TangEray,1 +co-836V18HP,Kingroll - Gorilla Cookies x Zookies - Indoor - Infused Joint - 1.3g,Kingroll,,,,Kingroll,Preroll,Infused Joint,Gorilla Cookies x Zookies,1.3 +fl-EL7QdiF374,Baby Jeeter | Strawberry Shortcake Infused Prerolls 5pk,Jeeter,Concentrate,,,Jeeter,Preroll,Infused Joint,Strawberry Shortcake,unknown +fl-FiZNoFDxST,Raw Garden | Slurm Fuel Diamond Infused Prerolls 3pk,Raw Garden,Concentrate,,,Raw Garden,Preroll,Infused Joint,Slurm Fuel,unknown +md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,,,Jeeter,Preroll,Infused Joint,Peaches,12.5 +md-1191207,Baby Jeeter Apple Fritter 0.5g x 5,Jeeter,Joints,,,Jeeter,Preroll,Infused Joint,Apple Fritter,2.5 +md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,,,Jeeter,Preroll,Infused Joint,Maui Wowie,12.5 +bl-688201996942,Dee - Jackfruit Rosin Gummies 100mg,,GUMMIES,,,Dee,Edible,Gummies,, +bl-090035986745,Eighth Brother - Assorted Holiday Gummies 100mg,,GUMMIES,,,Eighth Brother,Edible,Gummies,, +md-1047899,Pear THC 1:1 CBG 10pk | Gummies - 100mg/100mg,Wyld,Edible,,,Wyld,Edible,Gummies,, +md-1045944,Pear CBG Gummy,WYLD,Edible,,,WYLD,Edible,Gummies,, +co-6GRD3V4E,Kanha - Nano - Fruit Punch Fusion - Gummy - 10ct - 100mg,Kanha,,,,Kanha,Edible,Gummies,, +co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,,,,Kanha,Edible,Gummies,, +co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,,,,Flight Bites,Edible,Gummies,, +co-8JKLGM53,Kushy Punch - Watermelon - Gummy - 100mg,Kushy Punch,,,,Kushy Punch,Edible,Gummies,, +fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,,,Flav,Edible,Gummies,, +fl-cuTkYs5htS,Wyld | Peach 2:1 CBD Gummies 100mg,Wyld,Edible,,,Wyld,Edible,Gummies,, +fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,,,Drops,Edible,Gummies,, +bl-816716026056,Cosmic Fog - Disposable Pen 1.0g Indica Apple Butter Gelato,,DISPOSABLE VAPE PENS,,1,Cosmic Fog,Vape,Disposable,Apple Butter Gelato,1 +bl-816716026209,Cosmic Fog - Disposable Pen 1.0g Sativa Galactic Orange Crack,,DISPOSABLE VAPE PENS,,1,Cosmic Fog,Vape,Disposable,Galactic Orange Crack,1 +fl-8fvKPJtM7M,Imperial Extracts | Animal Mintz Diamond Sauce 1g,Imperial Extracts,Concentrate,Animal Mintz,1,Imperial Extracts,Concentrate,Diamonds and Sauce,Animal Mintz,1 +fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,,1,Raw Garden,Concentrate,Diamonds,Pink Lemonade,1 +bl-840071901284,Cookies - Mint Chocolate Chip 10pk Cookies 100mg,Cookies,EDIBLES,,,Cookies,Edible,Cookies,, +md-1037823,Pecan Shortbread Cookies,Dr. Norms,Edibles,,,Dr. Norms,Edible,Cookies,, +fl-4i92XvAPc7,Cookies | Cookies & Cream Cookies 100mg,Cookies,Edible,,,Cookies,Edible,Cookies,, +fl-cSx36EvqrK,Backpack Boyz | Black Cherry Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,,,Backpack Boyz,Edible,CBD Tincture/Caps/etc,, +fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,,,Backpack Boyz,Edible,CBD Tincture/Caps/etc,, +bl-073133213364,CAM - Mellowz #7 7g,,FLOWERS 7G,,,CAM,Flower,Bud,Mellowz #7,7 +bl-603365888759,CAM - La Paleta 7g,,FLOWERS 7G,,,CAM,Flower,Bud,La Paleta,7 +bl-757540324072,CAM - Dosi Kush 7g,,FLOWERS 7G,,,CAM,Flower,Bud,Dosi Kush,7 +bl-090035985779,Eighth Brother - Stardust OG 3.5g,,FLOWERS 3.5G,,3.5,Eighth Brother,Flower,Bud,Stardust OG,3.5 +bl-090035985823,Eighth Brother - Ice Cream Cake 3.5g,,FLOWERS 3.5G,,3.5,Eighth Brother,Flower,Bud,Ice Cream Cake,3.5 +bl-090035986004,Eighth Brother - Ice Cream Cake 1Oz,,FLOWERS 28G,,,Eighth Brother,Flower,Bud,Ice Cream Cake,28 +bl-090035986851,Eighth Brother - Blueberry Cookies 3.5g,,FLOWERS 3.5G,,3.5,Eighth Brother,Flower,Bud,Blueberry Cookies,3.5 +bl-090035986479,Eighth Brothers - Northern Lights 3.5g,,FLOWERS 3.5G,,3.5,Eighth Brothers,Flower,Bud,Northern Lights,3.5 +bl-111630024545,Feelz - Space Cowboy 3.5g,,FLOWERS 3.5G,,,Feelz,Flower,Bud,Space Cowboy,3.5 +bl-111630024590,Feelz - Papaya Paradise 3.5g,,FLOWERS 3.5G,,3.5,Feelz,Flower,Bud,Papaya Paradise,3.5 +bl-111630024873,Feelz - Guava Gelato 3.5g,,FLOWERS 3.5G,,3.5,Feelz,Flower,Bud,Guava Gelato,3.5 +bl-210000146985,Midzotics - Tigers Milk - 3.5g,,FLOWERS 3.5G,,3.5,Midzotics,Flower,Bud,Tigers Milk,3.5 +fl-dhLF5ePcRh,Flavors | Black Lime Gelato 3.5g | Eighths,,PackedBud,Flavors | Black Lime Gelato 3.5g,3.5,Flavors,Flower,Bud,Black Lime Gelato,3.5 +md-1195386,Blue Dream OZ,Pacific Stone,Flowers,,,Pacific Stone,Flower,Bud,Blue Dream,28 +fl-f8H7THHCYJ,Super Dope Brand | Cherry Popperz 3.5g | Eighths,Super Dope Brand,PackedBud,Super Dope Brand | Cherry Popperz 3.5g,3.5,Super Dope Brand,Flower,Bud,Cherry Popperz,3.5 +fl-eZCWCSx3Zk,Backpack Boyz | COCO-LATO 3.5g | Eighths,,PackedBud,Backpack Boyz | COCO-LATO 3.5g,3.5,Backpack Boyz,Flower,Bud,COCO-LATO,3.5 +fl-dkRsEniqyj,Backpack Boyz | Crypto Gelato 3.5g | Eighths,,PackedBud,Backpack Boyz | Crypto Gelato 3.5g,3.5,Backpack Boyz,Flower,Bud,Crypto Gelato,3.5 +co-2TDRRWMX,Root and Bloom - Ghost Dawg - Indoor - 3.5g,Root and Bloom,,Ghost Dawg,,Root and Bloom,Flower,Bud,Ghost Dawg,3.5 +md-1151648,Hawaiian Rain | Indoor - 3.5g,Cookies,Flower,,3.5,Cookies,Flower,Bud,Hawaiian Rain,3.5 +co-1A0MMZJJ,Custom - Lilac - Indoor - 3.5g,Custom,,Lilac,,Custom,Flower,Bud,Lilac,3.5 +fl-DQhTmYAJmp,Rollup | Medical | Lilac Cookies,Rollup,BulkBud,Rollup | Medical | Lilac Cookies,7,Rollup,Flower,Bud,Lilac Cookies,7 +fl-CkJ56JCfAJ,LA Traffic x Gramercy | Loganberry Zlushie 3.5g | Eighths,LA Traffic x Gramercy,PackedBud,LA Traffic x Gramercy | Loganberry Zlushie 3.5g,3.5,LA Traffic x Gramercy,Flower,Bud,Loganberry Zlushie,3.5 +fl-GA9f4qAp47,Big Gas | ProPain 3.5g | Eighths,Big Gas,PackedBud,Big Gas | ProPain 3.5g,3.5,Big Gas,Flower,Bud,ProPain,3.5 +co-A56PJJB3,Custom - Space Guava - Indoor - 3.5g,Custom,,Space Guava,,Custom,Flower,Bud,Space Guava,3.5 +md-1151653,White Russian | Indoor 3.5g,Cookies,Flower,,3.5,Cookies,Flower,Bud,White Russian,3.5 +fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5,Champelli,Flower,Bud,Xclusivo,3.5 +md-1142742,White Cherry Gelato 3.5g,Backpack Boyz,Flower 3.5g,,3.5,Backpack Boyz,Flower,Bud,White Cherry Gelato,3.5 +md-1167117,Black Cherry Gelato 3.5g,Backpack Boyz,Flower 3.5g,,,Backpack Boyz,Flower,Bud,Black Cherry Gelato,3.5 +md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,,3.5,Fresca,Flower,Bud,BOBBI HYLL,3.5 +md-1271227,Oz Kush 3.5g,Alien Labs,Flower 3.5g,,,Alien Labs,Flower,Bud,Oz Kush,3.5 +co-444XJ7ZF,Nature's Chemistry - Miracle Mints - Indoor - 3.5g,,,,,Nature's Chemistry,Flower,Bud,Miracle Mints,3.5 +co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,,,,,The Growers Circle,Flower,Bud,Double Down,3.5 +md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,,,Pacific Stone,Flower,Bud,N/A,14 +md-1172100,Cereal Milk | Blunt - 2g,Cookies,Prerolls,,,Cookies,Preroll,Blunt,Cereal Milk,2 +co-1Y2DH5R0,Ocean Breeze Cultivators - Money Shot - Indoor - Blunt - 1g,Ocean Breeze Cultivators,,Money Shot,,Ocean Breeze Cultivators,Preroll,Blunt,Money Shot,1 +co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,,Truffle Pupil,,Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1 +bl-628634142004,Green Monke - Tropical Citrus 120z can 3mg THC/ 6mg CBD,,DRINKS,,,Green Monke,Edible,Beverage,, +bl-628634142196,Green Monke - Orange Passionfruit 120z Can 3mg THC/ 6mg CBD,,DRINKS,,,Green Monke,Edible,Beverage,, +co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,,,,Chill Medicated,Edible,Beverage,, +fl-FPbxdQkyXR,Dripp | Sour Berry Badder 1g,Dripp,Concentrate,Sour Berry,1,Dripp,Concentrate,Badder,Sour Berry,1 +md-1139856,That Juice 1g Cartridge,Plug N Play,Cartridge,,,Plug N Play,Concentrate,510 cart,That Juice,1 +fl-FCwFzjNh9J,"Harmony | Granddaddy Pluto | Natural Terp Cartridge, 500mg",Harmony,Concentrate,,0.5,Harmony,Vape,510 cart,Granddaddy Pluto,0.5 +md-1126441,1g Strawberry Cheesecake Jeeter Juice,Jeeter,Vape,,,Jeeter,Vape,510 cart,Strawberry Cheesecake,1 +md-1324761,White Raspberry Cartridge 1g,Stiiizy,Vape,,,Stiiizy,Vape,510 cart,White Raspberry,1 +md-1347269,Full Gram Superman,Left Coast Extracts,Vape,,,Left Coast Extracts,Vape,510 cart,Superman,1 +md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,,,Left Coast Extracts,Vape,510 cart,Cherry Pie,1 +md-1347510,Full Gram Trainwreck,Left Coast Extracts,Vape,,,Left Coast Extracts,Vape,510 cart,Trainwreck,1 +bl-814725024544,Vibes - King Size Slim Hemp,,ACCESSORIES,,,Vibes,Accessory,,, +co-7FCAHUUQ,Eyce - Spoon - Silicone - Pipe - Assorted,Eyce,,,,Eyce,Accessory,,, +fl-5ez5baEM68,Exit Bag,Cookies,Accessory,,1,Cookies,Accessory,,, +fl-8100247708301,Cookies Battery,Cookies,Accessory,,1,Cookies,Accessory,,, +md-1275397,Green Cheese Tank w/Battery 1g,Napalm,Vape,,,Napalm,Concentrate,,Green Cheese,1 +bl-686751390708,Heavenly Sweets - Classic Treat 100mg,,EDIBLES,,,Heavenly Sweets,Edible,,, +md-1346646,BLACK OUT Guavalicious,Product of Los Angeles,Edibles,,,Product of Los Angeles,Edible,,, +md-1349647,Cherry Pie,Froot,Edibles,,,Froot,Edible,,, \ No newline at end of file diff --git a/data/cookies_llm_eval_predictions.csv b/data/cookies_llm_eval_predictions.csv new file mode 100644 index 0000000000000000000000000000000000000000..09bfe7cb61341e5be2ae261703f8d1dc97f53fa3 --- /dev/null +++ b/data/cookies_llm_eval_predictions.csv @@ -0,0 +1,5203 @@ +model,system_message,n_shot,prompt,completion,id,object,created,openai_model,choices,usage,prediction +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlTkjAqXNRWfltMPpr5v37uBJIsg,chat.completion,1687805032.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product.\n\nHowever, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 76, + ""total_tokens"": 130 +}","Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product. + +However, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs." +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlTtGF3RGsngfKB1BXufxoTixX2v,chat.completion,1687805041.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are referring to a product called \""Feelz - Space Cowboy 3.5g.\"" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of \""FLOWERS 3.5G\"".\n\nPlease note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question.\n\nIf you have any other questions or need assistance with a different topic, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 117, + ""total_tokens"": 168 +}","Hello! It seems like you are referring to a product called ""Feelz - Space Cowboy 3.5g."" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of ""FLOWERS 3.5G"". + +Please note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question. + +If you have any other questions or need assistance with a different topic, feel free to ask!" +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlU80b0m00VaiGymtj9dbqOggTgR,chat.completion,1687805056.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers.\n\nFor more information on the product or strain specifics, or if you have any other questions, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 71, + ""completion_tokens"": 91, + ""total_tokens"": 162 +}","Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers. + +For more information on the product or strain specifics, or if you have any other questions, feel free to ask." +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlUHqbsG2kpFHDxAWfsryh6pHmC9,chat.completion,1687805065.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. \n\nIf you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects.\n\nSativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects.\n\nPlease keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 171, + ""total_tokens"": 220 +}","It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. + +If you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects. + +Sativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects. + +Please keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help." +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlUYvcad2wahIMHavhDEkYrgvjpw,chat.completion,1687805082.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 72, + ""total_tokens"": 131 +}","Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard." +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlUgs08gPqBY8QkkRbpnAF5L3HNW,chat.completion,1687805090.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0g\n\nDescription: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 116, + ""total_tokens"": 170 +}","Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0g + +Description: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses." +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlUrmmRo76QdZNoIlB618WR8Fihv,chat.completion,1687805101.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided:\n\nProduct ID: md-1159983\nProduct Name: Baby Jeeter Peaches\nBrand: Jeeter\nType: Infused Prerolls\nQuantity: 5 prerolls\nTotal Weight: 2.5 grams\n\nPlease let me know if there's any additional information you'd like to share or if you have any questions about this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 101, + ""total_tokens"": 160 +}","It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided: + +Product ID: md-1159983 +Product Name: Baby Jeeter Peaches +Brand: Jeeter +Type: Infused Prerolls +Quantity: 5 prerolls +Total Weight: 2.5 grams + +Please let me know if there's any additional information you'd like to share or if you have any questions about this product." +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlV2YraXRUzrQ66NiVDKF3QzAJcP,chat.completion,1687805112.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). \n\nUnfortunately, the information provided is limited, but I'll do my best to help.\n\nOcean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them.\n\nIn this case, \""Indoor\"" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a \""Blunt,\"" which is a slang term for a cigar hollowed out and filled with cannabis. The \""1g\"" indicates that this blunt contains 1 gram of cannabis.\n\nHowever, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product.\n\nKindly note to use cannabis products responsibly and according to your local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 220, + ""total_tokens"": 286 +}","Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). + +Unfortunately, the information provided is limited, but I'll do my best to help. + +Ocean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them. + +In this case, ""Indoor"" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a ""Blunt,"" which is a slang term for a cigar hollowed out and filled with cannabis. The ""1g"" indicates that this blunt contains 1 gram of cannabis. + +However, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product. + +Kindly note to use cannabis products responsibly and according to your local laws and regulations." +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlVQ3QjUDb0ufNTM4rOrlTtcH6dw,chat.completion,1687805136.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis.\n\nCookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts.\n\nIs there any further information or assistance you need regarding this product or cannabis in general?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 65, + ""completion_tokens"": 115, + ""total_tokens"": 180 +}","It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis. + +Cookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts. + +Is there any further information or assistance you need regarding this product or cannabis in general?" +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlVbmPZJGx99GvShDFh7LmpbQJyo,chat.completion,1687805147.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product:\n\n1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress.\n\n2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience.\n\n3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels.\n\n4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects.\n\nPlease note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 297, + ""total_tokens"": 351 +}","Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product: + +1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress. + +2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience. + +3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels. + +4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects. + +Please note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g." +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlW67EpfYEde31aEs26p9iJEecyh,chat.completion,1687805178.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 82, + ""total_tokens"": 138 +}","It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help." +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlWFykUwxOhi8CMqDxjakijjrrRj,chat.completion,1687805187.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream.\n\nKanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience.\n\nPlease keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed.\n\nNote: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 172, + ""total_tokens"": 229 +}","Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream. + +Kanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience. + +Please keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed. + +Note: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations." +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlWfotzgSyf5AuaAuhvkLIpnJLkn,chat.completion,1687805213.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query.\n\nPlease keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 102, + ""total_tokens"": 153 +}","Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query. + +Please keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask." +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlWtd8NCtmPk0H3IZrlBrZYCoPNu,chat.completion,1687805227.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC.\n\nPlease note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 168, + ""total_tokens"": 219 +}","Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC. + +Please note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues." +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlX8KXwc6wk9318ToBIcIM4ojV5N,chat.completion,1687805242.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given.\n\nCherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain.\n\nLeft Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices.\n\nNote that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 46, + ""completion_tokens"": 200, + ""total_tokens"": 246 +}","It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given. + +Cherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain. + +Left Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices. + +Note that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption." +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlXXkro3sjQ0GB7HZyiISgMALe12,chat.completion,1687805267.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're referring to a product called \""Emerald Cut\"" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 70, + ""total_tokens"": 123 +}","Hello! It looks like you're referring to a product called ""Emerald Cut"" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!" +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlXftcrR17dE2oYMfQ4uXdur9c0L,chat.completion,1687805275.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. \n\nTo better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing)."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 103, + ""total_tokens"": 154 +}","Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. + +To better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing)." +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlXr7crz27aAVL4K1s8oCsKJECTF,chat.completion,1687805287.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 123, + ""total_tokens"": 170 +}","Product: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages." +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlY4RqaZM2pR5Ef98RaucGy4ronu,chat.completion,1687805300.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in \""The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g.\"" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts.\n\nPlease make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 139, + ""total_tokens"": 200 +}","Hello! It seems like you are interested in ""The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g."" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts. + +Please make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age." +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlYJNqDbwyZeHGVFfVdvfr1synGQ,chat.completion,1687805315.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview:\n\nProduct: Flight Bites - S'mores Gummy\nQuantity: 10 count\nTotal THC content: 100mg\n\nUnfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 92, + ""total_tokens"": 149 +}","Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview: + +Product: Flight Bites - S'mores Gummy +Quantity: 10 count +Total THC content: 100mg + +Unfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask." +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlcLAoSfGbbqW9UIGm5QMc7eah9L,chat.completion,1687805565.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes.\n\nPlease note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 103, + ""total_tokens"": 158 +}","It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes. + +Please note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes." +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlcVcxS9IegeWVDkFy2z8aCcqBs7,chat.completion,1687805575.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information regarding a product called \""Feelz - Space Cowboy 3.5g\"" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 62, + ""total_tokens"": 114 +}","Hello! It seems like you are looking for information regarding a product called ""Feelz - Space Cowboy 3.5g"" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help." +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlceM4xLntrlxlinLnUJd4Km8vMl,chat.completion,1687805584.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. \n\nChampelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis.\n\nTo learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area.\n\nPlease note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location.\n\nIf you have any other questions or need further assistance, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 72, + ""completion_tokens"": 185, + ""total_tokens"": 257 +}","Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. + +Champelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis. + +To learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area. + +Please note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location. + +If you have any other questions or need further assistance, feel free to ask!" +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlcvsyAP6UCMxGoViTeMJEorRV4P,chat.completion,1687805601.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about the product \""CAM - Mellowz #7,\"" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 50, + ""completion_tokens"": 79, + ""total_tokens"": 129 +}","Hello! It looks like you're inquiring about the product ""CAM - Mellowz #7,"" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!" +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vld3cnmYqFqj77789o1B403tNS6U,chat.completion,1687805609.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 48, + ""total_tokens"": 108 +}","Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product." +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vld89t8QYfwBULmGxBauA0r7P9gp,chat.completion,1687805614.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate.\n\nRaw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles.\n\nProduct: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0 gram\n\nPlease remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 134, + ""total_tokens"": 189 +}","Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate. + +Raw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles. + +Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0 gram + +Please remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage." +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VldLx6QUKkKfE5q9odEeZVJwYxhW,chat.completion,1687805627.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g)\nBrand: Jeeter\nCategory: Infused Prerolls\n\nThis pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 105, + ""total_tokens"": 165 +}","Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g) +Brand: Jeeter +Category: Infused Prerolls + +This pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke." +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VldYbCjPPC839qSooOjqtjTYyjo7,chat.completion,1687805640.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on a product called \""Truffle Pupil\"" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt.\n\nUnfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt.\n\nOcean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The \""Truffle Pupil\"" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages.\n\nWhen smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic.\n\nPlease let me know if you have any other questions or need information on any other topic. I'm here to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 253, + ""total_tokens"": 320 +}","Hello! It seems like you're looking for information on a product called ""Truffle Pupil"" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt. + +Unfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt. + +Ocean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The ""Truffle Pupil"" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages. + +When smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic. + +Please let me know if you have any other questions or need information on any other topic. I'm here to help!" +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vle7ITXk2D9234jwInXFdgwcaSoY,chat.completion,1687805675.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users.\n\nProduct: Cookies Triple Scoop Preroll\nType: Joint\nWeight: 1 gram\nBrand: Cookies\n\nPlease let me know if you need any more information or have any questions about this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 124, + ""total_tokens"": 190 +}","It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users. + +Product: Cookies Triple Scoop Preroll +Type: Joint +Weight: 1 gram +Brand: Cookies + +Please let me know if you need any more information or have any questions about this product." +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VleQ2KysWpsoPwcl3ZI91oM1KAJ7,chat.completion,1687805694.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 80, + ""total_tokens"": 135 +}","Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!" +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VleaFAnv4qWX3G29gNiEAsR4IKVh,chat.completion,1687805704.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience.\n\nUnfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved:\n\nInfused Joints: \nInfused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the \""infused\"" label and can offer a stronger, more potent high compared to regular joints.\n\nCookies:\nCookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products.\n\nThe Grower Circle:\nThe Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products.\n\nAs for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 300, + ""total_tokens"": 357 +}","It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience. + +Unfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved: + +Infused Joints: +Infused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the ""infused"" label and can offer a stronger, more potent high compared to regular joints. + +Cookies: +Cookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products. + +The Grower Circle: +The Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products. + +As for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region." +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlf3CbhKfGocBHh6oW4nUTbu69rd,chat.completion,1687805733.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product:\n\n- Brand: Kanha\n- Type: Indica Gummy\n- Flavor: Blood Orange Bliss\n- Serving Size: 10 gummies per pack\n- Total THC Content: 100mg\n- THC per gummy: 10mg\n- Key Feature: Nanomolecular Technology for faster, more efficient absorption\n\nKanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience.\n\nPlease note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 266, + ""total_tokens"": 324 +}","Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product: + +- Brand: Kanha +- Type: Indica Gummy +- Flavor: Blood Orange Bliss +- Serving Size: 10 gummies per pack +- Total THC Content: 100mg +- THC per gummy: 10mg +- Key Feature: Nanomolecular Technology for faster, more efficient absorption + +Kanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience. + +Please note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children." +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlfehpIxe7ySnByC6Q9UGmf39tnm,chat.completion,1687805770.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower.\n\nBOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends.\n\nThe strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users.\n\nPlease note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions.\n\nEnjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 241, + ""total_tokens"": 293 +}","Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower. + +BOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends. + +The strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users. + +Please note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions. + +Enjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!" +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vlg8GQNsnCMuP12dlbfdh4tqdn0W,chat.completion,1687805800.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC.\n\nThese Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption.\n\nAs always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 184, + ""total_tokens"": 236 +}","It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC. + +These Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption. + +As always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed." +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlgMzsYnCHB41MM6ZSQPDDC2bHna,chat.completion,1687805814.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""You have selected the following product:\n\nProduct ID: md-1347497\nProduct: Cherry Pie - 1g - Pod\nBrand: Left Coast Extracts\nCategory: Vape\nTHC Content: Not specified\nCBD Content: Not specified\n\nThe Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes.\n\nHowever, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information.\n\nPlease consume responsibly and follow the recommended dosage instructions provided by the manufacturer."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 182, + ""total_tokens"": 229 +}","You have selected the following product: + +Product ID: md-1347497 +Product: Cherry Pie - 1g - Pod +Brand: Left Coast Extracts +Category: Vape +THC Content: Not specified +CBD Content: Not specified + +The Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes. + +However, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information. + +Please consume responsibly and follow the recommended dosage instructions provided by the manufacturer." +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlgdhgYBSUuMB38xQt4lYHeb481r,chat.completion,1687805831.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information.\n\nHowever, I can provide some general information about cannabis joints.\n\nA joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience.\n\nEmerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties.\n\nIf you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 256, + ""total_tokens"": 310 +}","Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information. + +However, I can provide some general information about cannabis joints. + +A joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience. + +Emerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties. + +If you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions." +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vlh2eeYsWzANKI3YBlblLl1uglVd,chat.completion,1687805856.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are looking for information on a cannabis product called \""The Growers Circle - Double Down - Indoor - 3.5g\"". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods.\n\nThe product you've mentioned, \""Double Down\"" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product.\n\nTo get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 167, + ""total_tokens"": 219 +}","Hello! It seems you are looking for information on a cannabis product called ""The Growers Circle - Double Down - Indoor - 3.5g"". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods. + +The product you've mentioned, ""Double Down"" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product. + +To get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details." +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlhOyEAazqJEGuWGg4g4APivkogx,chat.completion,1687805878.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nProduct Category: Flowers\nDescription:\nThe Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 164, + ""total_tokens"": 212 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Product Category: Flowers +Description: +The Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience." +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlhdjuABCp8pq7UA9hP1nNXE2Cv2,chat.completion,1687805893.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on the Grower Circle's \""Zoo Dawg x Cosa Nostra\"" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains.\n\n- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood.\n\n- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia.\n\nThis Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 250, + ""total_tokens"": 312 +}","Hello! It seems like you are looking for information on the Grower Circle's ""Zoo Dawg x Cosa Nostra"" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains. + +- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood. + +- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia. + +This Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes." +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vli0raZNlIIGBpBDSBD6dc0zK0bw,chat.completion,1687805916.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on a product called \""Flight Bites - S'mores - Gummy - 10ct - 100mg\"". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the \""100mg\"" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats.\n\nHowever, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 129, + ""total_tokens"": 187 +}","Hello! It seems like you're looking for information on a product called ""Flight Bites - S'mores - Gummy - 10ct - 100mg"". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the ""100mg"" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats. + +However, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!" +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vlm5umJjq0WJ5qnUkdRBaN312IXY,chat.completion,1687806169.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 40, + ""total_tokens"": 96 +}",System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed. +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vlm7LO4ZgWFziKdBu74JaNSA06lo,chat.completion,1687806171.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items:\n\n- Feelz - Space Cowboy 3.5g\n- FLOWERS 3.5G\n\nhas been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value.\n\nThank you for choosing our service and we hope you enjoy your order!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 104, + ""total_tokens"": 157 +}","Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items: + +- Feelz - Space Cowboy 3.5g +- FLOWERS 3.5G + +has been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value. + +Thank you for choosing our service and we hope you enjoy your order!" +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlmCRYn2rcbp0EHf4gZPaq4uk4tT,chat.completion,1687806176.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 73, + ""completion_tokens"": 54, + ""total_tokens"": 127 +}","Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!" +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlmFm6ns3D4AFQBOmLgbnKXRtMuO,chat.completion,1687806179.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 68, + ""total_tokens"": 119 +}","Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you." +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlmItMqgot4a4aR6UgIyoaSNVKT3,chat.completion,1687806182.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 73, + ""total_tokens"": 134 +}",Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase! +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlmMuXtNlIA8NjsvbBp6tWJpAIAh,chat.completion,1687806186.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 59, + ""total_tokens"": 115 +}",Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with? +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlmOmE6t0OYR6bym9CsCK2cjraFr,chat.completion,1687806188.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is \""Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\"" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 85, + ""total_tokens"": 146 +}","Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is ""Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g"" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know." +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlmSjG0BFMX3WALv9cMvlTXd82OO,chat.completion,1687806192.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 68, + ""completion_tokens"": 102, + ""total_tokens"": 170 +}","Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!" +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlmW0dOlFM8ui3k2w2vMaaPsVbYK,chat.completion,1687806196.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nYour order for \""Cookies | Triple Scoop Preroll 1g\"" has been processed. Your total cost is $1.0. Thank you for your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 39, + ""total_tokens"": 106 +}","System Message: + +Your order for ""Cookies | Triple Scoop Preroll 1g"" has been processed. Your total cost is $1.0. Thank you for your purchase!" +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlmZZ5areaCSM09tZwosrbp4U5ND,chat.completion,1687806199.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 46, + ""total_tokens"": 102 +}","Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly." +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlmbKevC2zLgKoWAAUH5XV3qwcKd,chat.completion,1687806201.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 61, + ""total_tokens"": 119 +}",Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service! +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlmeE2LGh1ipJTDjaYSUMomuapXJ,chat.completion,1687806204.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows:\n\n- Brand: Kanha\n- Product type: Gummy\n- Flavor: Nano Blood Orange Bliss Indica\n- Quantity: 10 pieces\n- THC Content: 100mg\n\nPlease note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 127, + ""total_tokens"": 186 +}","System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows: + +- Brand: Kanha +- Product type: Gummy +- Flavor: Nano Blood Orange Bliss Indica +- Quantity: 10 pieces +- THC Content: 100mg + +Please note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation." +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlmk27GWARL5207f7OY1PqccwPsf,chat.completion,1687806210.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your purchase, Bobbi Hyll!\n\nYour order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives.\n\nIf you have any questions or concerns about your order, please feel free to contact our customer service team.\n\nThank you for choosing our company for your cannabis needs. We hope you have a great day!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 96, + ""total_tokens"": 149 +}","Thank you for your purchase, Bobbi Hyll! + +Your order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives. + +If you have any questions or concerns about your order, please feel free to contact our customer service team. + +Thank you for choosing our company for your cannabis needs. We hope you have a great day!" +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlmoIhGHLU44ynBh54U7VnI5ZhoD,chat.completion,1687806214.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 69, + ""total_tokens"": 122 +}","Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!" +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlmrDdmppf7CuCSuR86UoXGgjM7F,chat.completion,1687806217.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 58, + ""total_tokens"": 106 +}",Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase! +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlmuoE6dfZHei0H5STxsQ7OcyqdA,chat.completion,1687806220.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 25, + ""total_tokens"": 80 +}","Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?" +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlmwJkKP3tRc0LklyblNXYj0Zd6B,chat.completion,1687806222.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 60, + ""total_tokens"": 113 +}","Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business." +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vlmy11bydW5rHcpNmzEIHYxJAOvl,chat.completion,1687806224.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 100, + ""total_tokens"": 149 +}","Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!" +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vln37UAAsFx4uhlRbaEZo3NSA2FO,chat.completion,1687806229.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. It seems like you are interested in purchasing \""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g\"". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 63, + ""completion_tokens"": 84, + ""total_tokens"": 147 +}","Hello! Thank you for your message. It seems like you are interested in purchasing ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g"". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you." +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vln7kifizjvC9ywsXWxSwu3PfvKN,chat.completion,1687806233.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 24, + ""total_tokens"": 83 +}",Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you? +gpt-4,1,1,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpgjSSdXaMIDvgl75m1eNyLupGAz,chat.completion,1687821213.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg of active ingredients. However, your question seems to be incomplete. Could you please provide more information or clarify your question so I can better assist you?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 52, + ""total_tokens"": 106 +}","Hello! It looks like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg of active ingredients. However, your question seems to be incomplete. Could you please provide more information or clarify your question so I can better assist you?" +gpt-4,1,1,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vpgm92nBW1sLVBzObN5RmmwE0BAB,chat.completion,1687821216.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information about Feelz - Space Cowboy 3.5g. This is a cannabis strain which usually comes in packages of 3.5 grams (also known as an eighth of an ounce). However, the given information is limited. If you have questions regarding the effects, taste, or any other topic related to this strain, feel free to ask and I'll do my best to provide you with more information."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 92, + ""total_tokens"": 143 +}","Hello! It seems like you are looking for information about Feelz - Space Cowboy 3.5g. This is a cannabis strain which usually comes in packages of 3.5 grams (also known as an eighth of an ounce). However, the given information is limited. If you have questions regarding the effects, taste, or any other topic related to this strain, feel free to ask and I'll do my best to provide you with more information." +gpt-4,1,1,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpgukExXOjNPu8rhWFwnhgOp10qd,chat.completion,1687821224.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Champelli's Xclusivo 3.5g Eighths.\n\nProduct: Champelli | Xclusivo 3.5g Eighths\nBrand: Champelli\nVendor: PackedBud\n\nThe Champelli Xclusivo 3.5g Eighths is a premium cannabis product offered by the reputable brand Champelli, known for high-quality marijuana strains. The product contains 3.5 grams of cannabis, which is typically referred to as an \""eighth\"" due to it being one-eighth of an ounce.\n\nPlease let me know if you need any more information or assistance."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 71, + ""completion_tokens"": 135, + ""total_tokens"": 206 +}","Hello! It seems like you are looking for information on Champelli's Xclusivo 3.5g Eighths. + +Product: Champelli | Xclusivo 3.5g Eighths +Brand: Champelli +Vendor: PackedBud + +The Champelli Xclusivo 3.5g Eighths is a premium cannabis product offered by the reputable brand Champelli, known for high-quality marijuana strains. The product contains 3.5 grams of cannabis, which is typically referred to as an ""eighth"" due to it being one-eighth of an ounce. + +Please let me know if you need any more information or assistance." +gpt-4,1,1,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vph4Kwc6TbV9VnSv2kGA7mSlE3wg,chat.completion,1687821234.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hi there! It seems like you are looking for information on the Mellowz #7 strain, in a 7 gram (FLOWERS 7G) package. However, some of the information you have provided is unclear or not complete (represented by \""nan\""). Please provide more specific details about what you are looking for, and I will try to help you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 74, + ""total_tokens"": 123 +}","Hi there! It seems like you are looking for information on the Mellowz #7 strain, in a 7 gram (FLOWERS 7G) package. However, some of the information you have provided is unclear or not complete (represented by ""nan""). Please provide more specific details about what you are looking for, and I will try to help you." +gpt-4,1,1,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VphAQLsbz5kBPZBDjeuJBA7LPOWh,chat.completion,1687821240.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It appears that you are inquiring about a product called Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg, which is a tincture made by Backpack Boyz. However, I am an AI language model and cannot provide you with specific information about where to buy the product or the legality of the product. To obtain detailed information and guidance, it is recommended to contact the manufacturer directly or to consult a qualified professional, such as a doctor, pharmacist, or a representative from a licensed dispensary. Remember to always be cautious when consuming or using new products and, if in doubt, seek advice from a professional."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 132, + ""total_tokens"": 191 +}","Hello! It appears that you are inquiring about a product called Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg, which is a tincture made by Backpack Boyz. However, I am an AI language model and cannot provide you with specific information about where to buy the product or the legality of the product. To obtain detailed information and guidance, it is recommended to contact the manufacturer directly or to consult a qualified professional, such as a doctor, pharmacist, or a representative from a licensed dispensary. Remember to always be cautious when consuming or using new products and, if in doubt, seek advice from a professional." +gpt-4,1,1,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VphTveHM2oYcbd3QzeH01xa4aCSF,chat.completion,1687821259.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds, a 1g concentrate product. Please let me know if you have any questions or need more information about this item. I'm here to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 49, + ""total_tokens"": 103 +}","Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds, a 1g concentrate product. Please let me know if you have any questions or need more information about this item. I'm here to help!" +gpt-4,1,1,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VphXUS82bM9Jxe9S9te8MLR0oEf4,chat.completion,1687821263.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""**Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\n\n**Brand:** Jeeter\n\n**Type:** Infused Prerolls\n\nEnjoy a flavorful and potent smoke session with Baby Jeeter Peaches infused prerolls! This pack contains five delicious prerolls with a total weight of 2.5 grams. Each Baby Jeeter Preroll combines top-quality cannabis strains and a fruity peach flavor for an unforgettable smoking experience. Ideal for relaxing solo sessions or sharing with friends, these infused prerolls offer a smooth burn and satisfying potency. Don't miss out on the unique combination of flavor and potency with Baby Jeeter Peaches infused prerolls."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 142, + ""total_tokens"": 201 +}","**Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g + +**Brand:** Jeeter + +**Type:** Infused Prerolls + +Enjoy a flavorful and potent smoke session with Baby Jeeter Peaches infused prerolls! This pack contains five delicious prerolls with a total weight of 2.5 grams. Each Baby Jeeter Preroll combines top-quality cannabis strains and a fruity peach flavor for an unforgettable smoking experience. Ideal for relaxing solo sessions or sharing with friends, these infused prerolls offer a smooth burn and satisfying potency. Don't miss out on the unique combination of flavor and potency with Baby Jeeter Peaches infused prerolls." +gpt-4,1,1,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VphmF9Dk4Tg8hfPBIG4lIJSIzwek,chat.completion,1687821278.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello,\n\nIt seems like you are mentioning a product: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g.\n\nOcean Breeze Cultivators is the producer of this particular product, and \""Truffle Pupil\"" is the strain of cannabis used. It is grown indoors and the provided quantity is 1 gram. The product is intended to be consumed as a \""blunt,\"" which is a cigar that has been emptied of its tobacco and filled with cannabis.\n\nPlease note that I am an AI language model, and I cannot provide any advice on the usage, legality, or purchasing of this product. If you have any questions about this product, I would recommend reaching out to the manufacturer (Ocean Breeze Cultivators) or consulting local laws and regulations.\n\nLet me know if there is any other information you need or if you have any questions."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 180, + ""total_tokens"": 246 +}","Hello, + +It seems like you are mentioning a product: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g. + +Ocean Breeze Cultivators is the producer of this particular product, and ""Truffle Pupil"" is the strain of cannabis used. It is grown indoors and the provided quantity is 1 gram. The product is intended to be consumed as a ""blunt,"" which is a cigar that has been emptied of its tobacco and filled with cannabis. + +Please note that I am an AI language model, and I cannot provide any advice on the usage, legality, or purchasing of this product. If you have any questions about this product, I would recommend reaching out to the manufacturer (Ocean Breeze Cultivators) or consulting local laws and regulations. + +Let me know if there is any other information you need or if you have any questions." +gpt-4,1,1,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpi56X2ZAKHnQkKd0IIxpl7aiqUD,chat.completion,1687821297.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It appears that you are looking for information on the Triple Scoop Preroll 1g joint offered by the Cookies brand. Triple Scoop is a strain crossed between three popular strains: Gelato, Sorbet, and Blueberry, offering a combination of flavors and effects. This preroll contains 1 gram of cannabis and is a convenient option for those interested in trying this unique strain. Cookies is known for producing high-quality products, and the Triple Scoop Preroll 1g joint is no exception. These prerolls are an excellent choice when looking for something to relax and enjoy."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 65, + ""completion_tokens"": 120, + ""total_tokens"": 185 +}","It appears that you are looking for information on the Triple Scoop Preroll 1g joint offered by the Cookies brand. Triple Scoop is a strain crossed between three popular strains: Gelato, Sorbet, and Blueberry, offering a combination of flavors and effects. This preroll contains 1 gram of cannabis and is a convenient option for those interested in trying this unique strain. Cookies is known for producing high-quality products, and the Triple Scoop Preroll 1g joint is no exception. These prerolls are an excellent choice when looking for something to relax and enjoy." +gpt-4,1,1,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpiN8GkjLkix123uszn6H49Q38KM,chat.completion,1687821315.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems that you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a 1g vape pen cartridge that offers a delightful flavor reminiscent of a birthday cake, providing a smooth and enjoyable vaping experience. Unfortunately, some other information like the price is not available here. If you have any questions about this product or need further assistance, please feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 82, + ""total_tokens"": 136 +}","Hello! It seems that you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a 1g vape pen cartridge that offers a delightful flavor reminiscent of a birthday cake, providing a smooth and enjoyable vaping experience. Unfortunately, some other information like the price is not available here. If you have any questions about this product or need further assistance, please feel free to ask." +gpt-4,1,1,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpiXL0Zdikjo9q0JWvhj23DY43El,chat.completion,1687821325.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are inquiring about the product \""Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g.\"" This is a cannabis-infused joint that combines Cookies and TangEray strains, produced by The Grower Circle. This pre-roll is made for indoor use and contains 1 gram of cannabis.\n\nPlease note that I am an AI language model, and I do not have the ability to access current stock or prices of specific products. For more information about availability, pricing, or other details about the product, consider visiting the manufacturer's website, a local dispensary, or an online retailer that offers cannabis products. Remember to always check the laws and regulations on cannabis products in your area before making a purchase."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 153, + ""total_tokens"": 209 +}","It seems like you are inquiring about the product ""Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g."" This is a cannabis-infused joint that combines Cookies and TangEray strains, produced by The Grower Circle. This pre-roll is made for indoor use and contains 1 gram of cannabis. + +Please note that I am an AI language model, and I do not have the ability to access current stock or prices of specific products. For more information about availability, pricing, or other details about the product, consider visiting the manufacturer's website, a local dispensary, or an online retailer that offers cannabis products. Remember to always check the laws and regulations on cannabis products in your area before making a purchase." +gpt-4,1,1,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpipgxBxdbnnJzUJopqAt7cqtxC1,chat.completion,1687821343.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Kanha Nano Blood Orange Bliss Indica Gummy\nBrand: Kanha\nType: Indica Gummies\nQuantity: 10ct\nTotal Potency: 100mg\n\nKanha Nano Blood Orange Bliss Indica Gummies are a delicious and convenient way to enjoy the calming effects of indica cannabis. These gummies are infused with 100mg of THC, divided into ten 10mg servings. With a tasty blood orange flavor and fast-acting nano technology, you can experience relief and relaxation anytime and anywhere.\n\nKanha is a reputable brand known for their consistent, high-quality products and state-of-the-art nano-emulsifying technology, ensuring a rapid onset of effects. These gummies are perfect for those seeking a discreet, tasty, and easy-to-dose form of cannabis.\n\nPlease consume responsibly, starting with a low dose and increasing as needed. Always consult with a physician if you are new to cannabis or have specific concerns about its effects on your health. Keep out of reach of children and pets."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 208, + ""total_tokens"": 265 +}","Product: Kanha Nano Blood Orange Bliss Indica Gummy +Brand: Kanha +Type: Indica Gummies +Quantity: 10ct +Total Potency: 100mg + +Kanha Nano Blood Orange Bliss Indica Gummies are a delicious and convenient way to enjoy the calming effects of indica cannabis. These gummies are infused with 100mg of THC, divided into ten 10mg servings. With a tasty blood orange flavor and fast-acting nano technology, you can experience relief and relaxation anytime and anywhere. + +Kanha is a reputable brand known for their consistent, high-quality products and state-of-the-art nano-emulsifying technology, ensuring a rapid onset of effects. These gummies are perfect for those seeking a discreet, tasty, and easy-to-dose form of cannabis. + +Please consume responsibly, starting with a low dose and increasing as needed. Always consult with a physician if you are new to cannabis or have specific concerns about its effects on your health. Keep out of reach of children and pets." +gpt-4,1,1,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpjEOYTFGYhDoh2c0aFOvfIuBVkT,chat.completion,1687821368.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on \""BOBBI HYLL\"" Indoor Cannabis Flower with 3.5g weight and the strain being \""Fresca.\"" \n\nBOBBI HYLL is a cannabis brand offering indoor-grown cannabis flower products. The Fresca strain is a flower known for its unique aroma and flavor profile, which typically includes notes of citrus and fruity undertones. This cannabis product is sold in a 3.5g quantity, which is a standard amount for personal consumption.\n\nPlease note that the effects, potency, and user experience can vary depending on various factors such as the individual's tolerance, cannabinoid, and terpene profiles. Therefore, it is essential to start with a small dose and gradually increase to find the optimal experience.\n\nKeep in mind that the consumption of cannabis is subject to local laws and regulations. Please consume responsibly and consult a healthcare professional if you have any concerns or questions.\n\nIf you need more information or have any specific questions, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 206, + ""total_tokens"": 257 +}","Hello! It seems like you are looking for information on ""BOBBI HYLL"" Indoor Cannabis Flower with 3.5g weight and the strain being ""Fresca."" + +BOBBI HYLL is a cannabis brand offering indoor-grown cannabis flower products. The Fresca strain is a flower known for its unique aroma and flavor profile, which typically includes notes of citrus and fruity undertones. This cannabis product is sold in a 3.5g quantity, which is a standard amount for personal consumption. + +Please note that the effects, potency, and user experience can vary depending on various factors such as the individual's tolerance, cannabinoid, and terpene profiles. Therefore, it is essential to start with a small dose and gradually increase to find the optimal experience. + +Keep in mind that the consumption of cannabis is subject to local laws and regulations. Please consume responsibly and consult a healthcare professional if you have any concerns or questions. + +If you need more information or have any specific questions, feel free to ask!" +gpt-4,1,1,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpjYz6gPbuVTFxx3HqUGkix6iZyW,chat.completion,1687821388.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Flav's Blueberry Belts 100mg edible. Flav is a company that specializes in creating high-quality cannabis-infused products, and their Blueberry Belts edibles offer a delicious way to enjoy the benefits of cannabis.\n\nProduct: Blueberry Belts 100mg\nBrand: Flav\nType: Edible\nFlavor: Blueberry\n\nThese Blueberry Belts have a sweet blueberry flavor, and each belt contains a 10mg dose of cannabis, totaling 100mg per package. This allows you to conveniently control your dosage according to your personal preferences and tolerance level. \n\nTo consume, simply choose the number of belts corresponding to your desired dosage, keeping in mind that it can take anywhere between 30 minutes to 2 hours for the effects to fully set in. As always, it's recommended to start with a lower dose and adjust accordingly to ensure a positive and enjoyable experience.\n\nPlease remember to keep these edibles away from children and pets, and store them in a cool, dry place. Always consume edibles responsibly and enjoy the delicious taste of Flav's Blueberry Belts!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 235, + ""total_tokens"": 286 +}","Hello! It looks like you're interested in Flav's Blueberry Belts 100mg edible. Flav is a company that specializes in creating high-quality cannabis-infused products, and their Blueberry Belts edibles offer a delicious way to enjoy the benefits of cannabis. + +Product: Blueberry Belts 100mg +Brand: Flav +Type: Edible +Flavor: Blueberry + +These Blueberry Belts have a sweet blueberry flavor, and each belt contains a 10mg dose of cannabis, totaling 100mg per package. This allows you to conveniently control your dosage according to your personal preferences and tolerance level. + +To consume, simply choose the number of belts corresponding to your desired dosage, keeping in mind that it can take anywhere between 30 minutes to 2 hours for the effects to fully set in. As always, it's recommended to start with a lower dose and adjust accordingly to ensure a positive and enjoyable experience. + +Please remember to keep these edibles away from children and pets, and store them in a cool, dry place. Always consume edibles responsibly and enjoy the delicious taste of Flav's Blueberry Belts!" +gpt-4,1,1,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vpjx9QcD20QLrXQwcp39g3yVFbwG,chat.completion,1687821413.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It appears you're referring to the Cherry Pie 1g Pod by Left Coast Extracts, which is a vape product. However, as an AI language model, I cannot provide specific recommendations or endorse any products. If you're looking for information on vape products or strains, please consider researching reputable online sources or consulting with a medical professional!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 46, + ""completion_tokens"": 68, + ""total_tokens"": 114 +}","It appears you're referring to the Cherry Pie 1g Pod by Left Coast Extracts, which is a vape product. However, as an AI language model, I cannot provide specific recommendations or endorse any products. If you're looking for information on vape products or strains, please consider researching reputable online sources or consulting with a medical professional!" +gpt-4,1,1,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vpk5hrhNA5SgtPyB7Y5eAtOH0vV1,chat.completion,1687821421.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on an Emerald Cut - Indoor - Joint by Minntz, with a quantity of 1 gram. Unfortunately, I cannot provide any specific details as your message appears to be incomplete, and I am an AI language model not capable of directly accessing product inventories or databases.\n\nHowever, I can provide some general guidance on what Emerald Cut may refer to in cannabis context. Emerald Cut typically refers to a strain or type of cannabis product that has been grown and cultivated indoors. It might produce a specific set of effects in users, and its indoor cultivation may result in a higher quality, more controlled product. Joints are pre-rolled cannabis cigarettes that usually weigh around 1 gram and are a popular method of consumption.\n\nMinntz appears to be a brand or producer of this cannabis product. To find more information on this specific Emerald Cut - Indoor - Joint by Minntz, I recommend visiting their official website, contacting a local dispensary, or speaking to a representative who can provide accurate and up-to-date information. Remember to always consume cannabis responsibly and in accordance with local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 229, + ""total_tokens"": 282 +}","Hello! It seems like you are looking for information on an Emerald Cut - Indoor - Joint by Minntz, with a quantity of 1 gram. Unfortunately, I cannot provide any specific details as your message appears to be incomplete, and I am an AI language model not capable of directly accessing product inventories or databases. + +However, I can provide some general guidance on what Emerald Cut may refer to in cannabis context. Emerald Cut typically refers to a strain or type of cannabis product that has been grown and cultivated indoors. It might produce a specific set of effects in users, and its indoor cultivation may result in a higher quality, more controlled product. Joints are pre-rolled cannabis cigarettes that usually weigh around 1 gram and are a popular method of consumption. + +Minntz appears to be a brand or producer of this cannabis product. To find more information on this specific Emerald Cut - Indoor - Joint by Minntz, I recommend visiting their official website, contacting a local dispensary, or speaking to a representative who can provide accurate and up-to-date information. Remember to always consume cannabis responsibly and in accordance with local laws and regulations." +gpt-4,1,1,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpkRt3SvHr9ygdNwkMP8prgmlEQS,chat.completion,1687821443.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you're looking for information on The Growers Circle - Double Down - Indoor - 3.5g. Unfortunately, I cannot find any specific information on this strain or product as the input seems incomplete. However, I can provide you with some general information on indoor cannabis cultivation.\n\nGrowing cannabis indoors allows for year-round production and control over the environment, leading to high-quality flowers. Growers can monitor and adjust humidity, temperature, and light. Indoor plants typically produce dense buds with rich flavors and aromas.\n\nSome tips for successful indoor cannabis growing include:\n\n1. Choose the right strain: Select a strain that suits your personal preferences and environmental constraints. Some strains adapt better to indoor conditions.\n\n2. Provide proper lighting: Cannabis plants need plenty of light to grow and produce high-quality flowers. High-Intensity Discharge (HID) lights, LED lights, and Compact Fluorescent Lights (CFLs) are some of the most common choices for indoor cultivation.\n\n3. Maintain optimal temperature and humidity: Cannabis plants thrive in temperatures between 70\u00b0F and 85\u00b0F during the day and slightly cooler at night. Humidity levels should be kept lower during the flowering stage to prevent mold and mildew.\n\n4. Use good-quality soil: Ensure that your soil is well-draining and rich in nutrients. This will provide your plants with a healthy environment for growth.\n\n5. Water correctly: Do not overwater or underwater your plants, as this can lead to various issues. Keep the soil moist but not soaked.\n\n6. Prune and train your plants: Proper pruning and training techniques can help control plant height and shape, and improve overall yields.\n\n7. Monitor and control pests: Keep a close eye on your plants for signs of pests and diseases. Use organic or chemical treatments when necessary.\n\n8. Harvest at the right time: Check the trichomes on your buds to determine when they are ready for harvest. Harvesting at the optimal time will improve the cannabinoid profile and overall quality of the flowers.\n\nIf you need more information about a specific product or strain, please provide more context or details, and I'd be happy to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 435, + ""total_tokens"": 486 +}","Hello! It seems you're looking for information on The Growers Circle - Double Down - Indoor - 3.5g. Unfortunately, I cannot find any specific information on this strain or product as the input seems incomplete. However, I can provide you with some general information on indoor cannabis cultivation. + +Growing cannabis indoors allows for year-round production and control over the environment, leading to high-quality flowers. Growers can monitor and adjust humidity, temperature, and light. Indoor plants typically produce dense buds with rich flavors and aromas. + +Some tips for successful indoor cannabis growing include: + +1. Choose the right strain: Select a strain that suits your personal preferences and environmental constraints. Some strains adapt better to indoor conditions. + +2. Provide proper lighting: Cannabis plants need plenty of light to grow and produce high-quality flowers. High-Intensity Discharge (HID) lights, LED lights, and Compact Fluorescent Lights (CFLs) are some of the most common choices for indoor cultivation. + +3. Maintain optimal temperature and humidity: Cannabis plants thrive in temperatures between 70Β°F and 85Β°F during the day and slightly cooler at night. Humidity levels should be kept lower during the flowering stage to prevent mold and mildew. + +4. Use good-quality soil: Ensure that your soil is well-draining and rich in nutrients. This will provide your plants with a healthy environment for growth. + +5. Water correctly: Do not overwater or underwater your plants, as this can lead to various issues. Keep the soil moist but not soaked. + +6. Prune and train your plants: Proper pruning and training techniques can help control plant height and shape, and improve overall yields. + +7. Monitor and control pests: Keep a close eye on your plants for signs of pests and diseases. Use organic or chemical treatments when necessary. + +8. Harvest at the right time: Check the trichomes on your buds to determine when they are ready for harvest. Harvesting at the optimal time will improve the cannabinoid profile and overall quality of the flowers. + +If you need more information about a specific product or strain, please provide more context or details, and I'd be happy to help." +gpt-4,1,1,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vpl76NvivW3n5ZkKBRejSPJhn9Xd,chat.completion,1687821485.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\nWeight: 14 grams\nDescription: \n\nThe Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a convenient and affordable option for those who enjoy rolling their own joints or using the shake for other cannabis-infused creations. This 14-gram bag contains high-quality Blue Dream strain sugar shake, which is a mixture of small buds, sugar leaves, and trichome-rich flower particles.\n\nBlue Dream, a popular sativa-dominant hybrid strain, is known for its balanced, full-body relaxation and gentle cerebral invigoration. With a sweet berry aroma inherited from its parent strain, Blueberry, it offers a smooth, satisfying smoke that cannabis novices and veterans alike can enjoy. This strain is perfect for those seeking relief from pain, depression, and nausea, as well as those looking for a creative boost during the day.\n\nMake sure to store this product in a cool, dry place to maintain freshness and potency. Remember to follow your local laws and regulations regarding cannabis consumption and be responsible when enjoying this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 229, + ""total_tokens"": 276 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers +Weight: 14 grams +Description: + +The Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a convenient and affordable option for those who enjoy rolling their own joints or using the shake for other cannabis-infused creations. This 14-gram bag contains high-quality Blue Dream strain sugar shake, which is a mixture of small buds, sugar leaves, and trichome-rich flower particles. + +Blue Dream, a popular sativa-dominant hybrid strain, is known for its balanced, full-body relaxation and gentle cerebral invigoration. With a sweet berry aroma inherited from its parent strain, Blueberry, it offers a smooth, satisfying smoke that cannabis novices and veterans alike can enjoy. This strain is perfect for those seeking relief from pain, depression, and nausea, as well as those looking for a creative boost during the day. + +Make sure to store this product in a cool, dry place to maintain freshness and potency. Remember to follow your local laws and regulations regarding cannabis consumption and be responsible when enjoying this product." +gpt-4,1,1,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VplQxol2URn4FzHmpZ0OUmgwDS90,chat.completion,1687821504.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the Grower Circle's product \""Zoo Dawg x Cosa Nostra - Multi Joint 5pk - 2.5g\"". Unfortunately, your message is missing some information that could help me understand your query better. Please provide more details or specific questions you have about this product, and I'll be happy to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 77, + ""total_tokens"": 138 +}","Hello! It seems like you are interested in the Grower Circle's product ""Zoo Dawg x Cosa Nostra - Multi Joint 5pk - 2.5g"". Unfortunately, your message is missing some information that could help me understand your query better. Please provide more details or specific questions you have about this product, and I'll be happy to assist you." +gpt-4,1,1,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VplWNPWoTexuNqyGvpIZpQruN4Yu,chat.completion,1687821510.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you want information on a product: Flight Bites - S'mores - Gummy - 10ct - 100mg by Flight Bites.\n\nUnfortunately, I cannot provide any detailed information on this specific product as my knowledge is limited and updated up to September 2021. However, I can provide some general information on cannabis edibles.\n\nEdibles like gummies can be infused with CBD, THC, or a combination of both, which are the two primary cannabinoids found in cannabis. They provide a convenient alternative to smoking or vaping cannabis and offer a tasty way to consume it. Typically, each gummy has an individually measured amount of cannabinoids, in this case, 100mg, which can help regulate dosage.\n\nKeep in mind, consuming edibles is different from smoking or vaping because the effects take longer to be felt and may last longer. The onset of the effects usually happens within 30 minutes to 2 hours after consumption, with the duration lasting anywhere from 4 to 8 hours. It's crucial to start with a low dosage and be patient to avoid overconsumption, especially if you're new to cannabis edibles.\n\nAlways be sure to consume such products responsibly and according to local laws and regulations. If you have any health concerns, it is always advisable to consult your doctor before trying cannabis edibles."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 271, + ""total_tokens"": 328 +}","Hello! It seems like you want information on a product: Flight Bites - S'mores - Gummy - 10ct - 100mg by Flight Bites. + +Unfortunately, I cannot provide any detailed information on this specific product as my knowledge is limited and updated up to September 2021. However, I can provide some general information on cannabis edibles. + +Edibles like gummies can be infused with CBD, THC, or a combination of both, which are the two primary cannabinoids found in cannabis. They provide a convenient alternative to smoking or vaping cannabis and offer a tasty way to consume it. Typically, each gummy has an individually measured amount of cannabinoids, in this case, 100mg, which can help regulate dosage. + +Keep in mind, consuming edibles is different from smoking or vaping because the effects take longer to be felt and may last longer. The onset of the effects usually happens within 30 minutes to 2 hours after consumption, with the duration lasting anywhere from 4 to 8 hours. It's crucial to start with a low dosage and be patient to avoid overconsumption, especially if you're new to cannabis edibles. + +Always be sure to consume such products responsibly and according to local laws and regulations. If you have any health concerns, it is always advisable to consult your doctor before trying cannabis edibles." +gpt-4,1,2,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VplszHp8lP7N3dG3ezkfMqgTrbnG,chat.completion,1687821532.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Edible,Watermelon Syrup,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 15, + ""total_tokens"": 136 +}","Chill Medicated,Edible,Watermelon Syrup,250mg" +gpt-4,1,2,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VplubiGL4Pq9k0elmDEjaSQiNYHT,chat.completion,1687821534.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Strain,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 15, + ""total_tokens"": 133 +}","Feelz,Flower,Strain,Space Cowboy,3.5" +gpt-4,1,2,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vplwccj7TRgM4HZEiKBXxsLWAmh5,chat.completion,1687821536.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Packed Bud,Eighths,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 138, + ""completion_tokens"": 16, + ""total_tokens"": 154 +}","Champelli,Packed Bud,Eighths,Xclusivo,3.5" +gpt-4,1,2,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VplyIDgjoeznmrtKpjDthFqr3Z8x,chat.completion,1687821538.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,FLOWERS,Hybrid,Mellowz #7,7g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 116, + ""completion_tokens"": 15, + ""total_tokens"": 131 +}","CAM,FLOWERS,Hybrid,Mellowz #7,7g" +gpt-4,1,2,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vplza8Hikd0KqtLJ1y0xRFE3x5pF,chat.completion,1687821539.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 21, + ""total_tokens"": 147 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg" +gpt-4,1,2,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vpm3jBoGNBR4lAdUgC1ISJGg1Qpw,chat.completion,1687821543.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 20, + ""total_tokens"": 141 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0" +gpt-4,1,2,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vpm5TYULZ2k5RwCeoWS28kO6jitA,chat.completion,1687821545.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 17, + ""total_tokens"": 143 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,1,2,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vpm7eD7TWhuZqYsLt8ZF9li1KRlA,chat.completion,1687821547.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 20, + ""total_tokens"": 153 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g" +gpt-4,1,2,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpm9AqBn7eWA27EhF49KYEshDKZY,chat.completion,1687821549.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 132, + ""completion_tokens"": 16, + ""total_tokens"": 148 +}","Cookies,Preroll,Joint,Triple Scoop,1.0" +gpt-4,1,2,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpmB7KeVqMjVKJEMPPbpnlK93jzp,chat.completion,1687821551.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape Pen,1g,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 19, + ""total_tokens"": 140 +}","STIIIZY,Birthday Cake,Pod,Vape Pen,1g,1.0" +gpt-4,1,2,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpmEDYtnsePcxWKEfHdnFbXGLhzU,chat.completion,1687821554.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Infused Joint,TangEray,Indoor,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 15, + ""total_tokens"": 138 +}","Cookies,Infused Joint,TangEray,Indoor,1g" +gpt-4,1,2,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpmG4GKmGJpldON6InVj8XJFJn3w,chat.completion,1687821556.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummy,Indica,Blood Orange Bliss,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 15, + ""total_tokens"": 139 +}","Kanha,Gummy,Indica,Blood Orange Bliss,100mg" +gpt-4,1,2,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpmHLgyWggeQDVQGCCvUW0h446hj,chat.completion,1687821557.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,Bobbi Hyll,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 18, + ""total_tokens"": 136 +}","Fresca,Flower,Indoor,Bobbi Hyll,3.5" +gpt-4,1,2,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpmJPzrxEF5SnUBvVyBNsnYqBfpP,chat.completion,1687821559.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 13, + ""total_tokens"": 131 +}","Flav,Edible,Blueberry Belts,100mg" +gpt-4,1,2,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpmLDoegzNrw90LDhtzy2KwQu500,chat.completion,1687821561.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Cherry Pie,1g,Pod"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 113, + ""completion_tokens"": 15, + ""total_tokens"": 128 +}","Left Coast Extracts,Vape,Cherry Pie,1g,Pod" +gpt-4,1,2,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpmNCgN7Mp3ycpTIOzGDDPgMr5aQ,chat.completion,1687821563.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Indoor Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 120, + ""completion_tokens"": 17, + ""total_tokens"": 137 +}","Minntz,Preroll,Indoor Joint,Emerald Cut,1" +gpt-4,1,2,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpmOa41ERVg6lR7M3Ve9zlc8s6HX,chat.completion,1687821564.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 17, + ""total_tokens"": 135 +}","The Growers Circle,Flower,Indoor,Double Down,3.5" +gpt-4,1,2,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpmQeXKF3l8a40zKoM8sN2X1fZim,chat.completion,1687821566.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 114, + ""completion_tokens"": 13, + ""total_tokens"": 127 +}","Pacific Stone,Flower,Shake,Blue Dream,14" +gpt-4,1,2,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpmSQRNaiBbG4J2qU2Y8zyCpONcf,chat.completion,1687821568.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 24, + ""total_tokens"": 152 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5" +gpt-4,1,2,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpmV1J8lssQnx9d7I15yRM79HSIO,chat.completion,1687821571.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores,100mg,10"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 13, + ""total_tokens"": 137 +}","Flight Bites,Gummy,S'mores,100mg,10" +gpt-4,1,3,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vpn7QPO07f5mGkT8wGrOjo7w54NV,chat.completion,1687821609.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 16, + ""total_tokens"": 275 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg" +gpt-4,1,3,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vpn9Dy1O9k0VhlnVmTCoHEtjxf9y,chat.completion,1687821611.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 14, + ""total_tokens"": 270 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-4,1,3,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpnBVnTkaxmHEyMLvzXyOTIYpTQa,chat.completion,1687821613.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 276, + ""completion_tokens"": 16, + ""total_tokens"": 292 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5" +gpt-4,1,3,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpnD1Ic2ptLBFGAF8cxmbJrhZI3o,chat.completion,1687821615.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 254, + ""completion_tokens"": 13, + ""total_tokens"": 267 +}","CAM,Flower,Bud,Mellowz #7,7" +gpt-4,1,3,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpnGBPD1htsGrTABpWz1XRNX5xdA,chat.completion,1687821618.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 22, + ""total_tokens"": 286 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-" +gpt-4,1,3,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpnJDswbo6rTME06ErXf5wYcqCB7,chat.completion,1687821621.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade Crush,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 16, + ""total_tokens"": 275 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade Crush,1" +gpt-4,1,3,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpnLgw6Le5FZOBhgySwWsvWZ9Rdf,chat.completion,1687821623.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 17, + ""total_tokens"": 281 +}","Jeeter,Preroll,Infused Joint,Peaches,2.5" +gpt-4,1,3,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpnNaaZcduy8hIYntC7iDlfJ5FFR,chat.completion,1687821625.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 19, + ""total_tokens"": 290 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1" +gpt-4,1,3,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VpnPS74OugSo0IQB2B9P54YmN69x,chat.completion,1687821627.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 14, + ""total_tokens"": 284 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-4,1,3,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpnRVbhgsZsVfhdLzyE8RRdf7elA,chat.completion,1687821629.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Pod,Birthday Cake,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 14, + ""total_tokens"": 273 +}","STIIIZY,Vape Pen,Pod,Birthday Cake,1" +gpt-4,1,3,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpnTlrOqhK5N3DwOt37vwVPZlsES,chat.completion,1687821631.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1\n"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 261, + ""completion_tokens"": 20, + ""total_tokens"": 281 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1 +" +gpt-4,1,3,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpnVmjGZG0vehouqjK78HF12aWFb,chat.completion,1687821633.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 17, + ""total_tokens"": 279 +}","Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg" +gpt-4,1,3,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpnXv9Tt52YOxqvfEvFcGEZqbnZ6,chat.completion,1687821635.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,BOBBI HYLL Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 19, + ""total_tokens"": 275 +}","Fresca,Flower,Bud,BOBBI HYLL Indoor,3.5" +gpt-4,1,3,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpnZxkoBHXjLiPqZyCGESdjU3EQk,chat.completion,1687821637.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 13, + ""total_tokens"": 269 +}","Flav,Edible,Blueberry Belts,100mg" +gpt-4,1,3,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpncWuphbN2KALV7PO2wiKetS89d,chat.completion,1687821640.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 251, + ""completion_tokens"": 14, + ""total_tokens"": 265 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1" +gpt-4,1,3,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpneTkjtKfDFHP4mhZ57IAgkqdtM,chat.completion,1687821642.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 258, + ""completion_tokens"": 15, + ""total_tokens"": 273 +}","Minntz,Preroll,Joint,Emerald Cut,1" +gpt-4,1,3,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpnfFTSZvR56FS0dTZ44jxZ8rDYx,chat.completion,1687821643.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 17, + ""total_tokens"": 273 +}","The Growers Circle,Flower,Indoor,Double Down,3.5" +gpt-4,1,3,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpnhynRGmQd9jVKP7WxergDeyJoI,chat.completion,1687821645.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 252, + ""completion_tokens"": 13, + ""total_tokens"": 265 +}","Pacific Stone,Flower,Shake,Blue Dream,14" +gpt-4,1,3,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vpnji3c3ucWkAY8btIsKRSO6RE5f,chat.completion,1687821647.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 266, + ""completion_tokens"": 23, + ""total_tokens"": 289 +}","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5" +gpt-4,1,3,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpnlqFIoOfj54Dhh1fUKkPYMwGrD,chat.completion,1687821649.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummy,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 14, + ""total_tokens"": 276 +}","Flight Bites,Edible,Gummy,S'mores,100mg" +gpt-4,1,5,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vpnmmu9jhiOtDYVhXWKR1sXxbu5G,chat.completion,1687821650.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Medicated Watermelon Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 20, + ""total_tokens"": 396 +}","Chill Medicated,Syrup,Medicated Watermelon Syrup,Watermelon,250mg" +gpt-4,1,5,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpnpxtByo1TjZVwGdGj6I3WcPvZ7,chat.completion,1687821653.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 14, + ""total_tokens"": 387 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-4,1,5,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpnrwuyJMNpSxdtZzL8ixJk1sAst,chat.completion,1687821655.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 15, + ""total_tokens"": 408 +}","Champelli,Flower,Bud,Xclusivo,3.5" +gpt-4,1,5,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vpnty6mbqcWpbSCEHeg1m543trjY,chat.completion,1687821657.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 371, + ""completion_tokens"": 13, + ""total_tokens"": 384 +}","CAM,Flower,Bud,Mellowz #7,7" +gpt-4,1,5,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vpnu0Ldrs1pdKNhW15h7jl3K1dm9,chat.completion,1687821658.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,nan"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 19, + ""total_tokens"": 400 +}","Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,nan" +gpt-4,1,5,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vpnxt56G6IBiYcUqpeyhBpK3sEub,chat.completion,1687821661.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 15, + ""total_tokens"": 391 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1" +gpt-4,1,5,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpnzDh9unNuy5wP1DxBTpq7lr4U2,chat.completion,1687821663.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 17, + ""total_tokens"": 398 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,1,5,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vpo2eBSIym0o1I0R9jLsRbCYEVVO,chat.completion,1687821666.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Blunt,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 19, + ""total_tokens"": 407 +}","Ocean Breeze Cultivators,Blunt,Blunt,Truffle Pupil,1" +gpt-4,1,5,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpo4KnwgvCnLU1daywo3yuiUC2v1,chat.completion,1687821668.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 387, + ""completion_tokens"": 14, + ""total_tokens"": 401 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-4,1,5,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vpo65VVwwNAh81gsQ5vSfWItmInX,chat.completion,1687821670.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Cartridge,Vape,Birthday Cake,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 14, + ""total_tokens"": 390 +}","STIIIZY,Cartridge,Vape,Birthday Cake,1" +gpt-4,1,5,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vpo84YcmLYKxmT0p4sOhNWhLXDph,chat.completion,1687821672.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 378, + ""completion_tokens"": 20, + ""total_tokens"": 398 +}","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1" +gpt-4,1,5,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpoA6OljEJSdpGEEVFGal8IyxEqo,chat.completion,1687821674.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 17, + ""total_tokens"": 396 +}","Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg" +gpt-4,1,5,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpoC8SChJmQzlPPgI4AIQmHCzBiH,chat.completion,1687821676.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 18, + ""total_tokens"": 391 +}","Fresca,Flower,Bud,BOBBI HYLL,3.5" +gpt-4,1,5,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpoDg7ehpD2rJYZ3MuXLso2k3hjv,chat.completion,1687821677.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 15, + ""total_tokens"": 388 +}","Flav,Edible,Gummies,Blueberry Belts,100mg" +gpt-4,1,5,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpoFwx9PrNN2rRwVAvowjzsIilD9,chat.completion,1687821679.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 368, + ""completion_tokens"": 14, + ""total_tokens"": 382 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1" +gpt-4,1,5,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpoHNs7qaACIAtvKv74aVPpJXvr1,chat.completion,1687821681.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 375, + ""completion_tokens"": 15, + ""total_tokens"": 390 +}","Minntz,Preroll,Joint,Emerald Cut,1" +gpt-4,1,5,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpoJhLzsR8xrnMH7mMR9CmW1tXHQ,chat.completion,1687821683.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Bud,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 16, + ""total_tokens"": 389 +}","The Growers Circle,Flower,Bud,Double Down,3.5" +gpt-4,1,5,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpoMtSbtZCkGK7QATms41J5m4v2m,chat.completion,1687821686.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 369, + ""completion_tokens"": 13, + ""total_tokens"": 382 +}","Pacific Stone,Flower,Shake,Blue Dream,14" +gpt-4,1,5,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpoOl3tMrZZq96yFrpFdPKyULL9U,chat.completion,1687821688.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 383, + ""completion_tokens"": 23, + ""total_tokens"": 406 +}","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5" +gpt-4,1,5,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpoPIzWESDCL3GmKuZu4cyzkj8kz,chat.completion,1687821689.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 14, + ""total_tokens"": 393 +}","Flight Bites,Edible,Gummies,S'mores,100mg" +gpt-4,2,2,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpoRALBI5MBSfUlpqEFIfnzCz7UE,chat.completion,1687821691.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 16, + ""total_tokens"": 138 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg" +gpt-4,2,2,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpoU0ayBBCHyH39u9o8Fwrmx9Nuu,chat.completion,1687821694.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Strain,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 15, + ""total_tokens"": 134 +}","Feelz,Flower,Strain,Space Cowboy,3.5" +gpt-4,2,2,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpoWYeQZD2te8YDRh639bkXPmhsz,chat.completion,1687821696.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Packed Bud,Eighths,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 139, + ""completion_tokens"": 16, + ""total_tokens"": 155 +}","Champelli,Packed Bud,Eighths,Xclusivo,3.5" +gpt-4,2,2,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpoXgAAgdjhaSeOu5RyseWawdccK,chat.completion,1687821697.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Mellowz #7,7g,35"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 117, + ""completion_tokens"": 14, + ""total_tokens"": 131 +}","CAM,Flower,Mellowz #7,7g,35" +gpt-4,2,2,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpoZR4kJkblkjeyYIMZWNFjndrWD,chat.completion,1687821699.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 21, + ""total_tokens"": 148 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg" +gpt-4,2,2,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpodHNiPsyZWcUxOxPFQSyCSRdw5,chat.completion,1687821703.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 18, + ""total_tokens"": 140 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,5" +gpt-4,2,2,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vpoegk3IlrWQJ8z12JEgTgqsLEpb,chat.completion,1687821704.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 17, + ""total_tokens"": 144 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,2,2,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpogRUqkmmxXYwnIYWVra54aNbW8,chat.completion,1687821706.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 134, + ""completion_tokens"": 19, + ""total_tokens"": 153 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1" +gpt-4,2,2,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpoi9gcnk97PE6LucPECLq0wDnWb,chat.completion,1687821708.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 16, + ""total_tokens"": 149 +}","Cookies,Preroll,Joint,Triple Scoop,1.0" +gpt-4,2,2,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpokykxfQj9byHfp2MLEy5T6kAXq,chat.completion,1687821710.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Pod,Vape Pen,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 16, + ""total_tokens"": 138 +}","STIIIZY,Pod,Vape Pen,Birthday Cake,1.0" +gpt-4,2,2,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpomSRMjs7LWshjmsqseieU2sR1E,chat.completion,1687821712.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 20, + ""total_tokens"": 144 +}","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g" +gpt-4,2,2,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vpoo7MqJL8uvozaX3ANlMEewpFma,chat.completion,1687821714.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummies,Blood Orange Bliss,Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 15, + ""total_tokens"": 140 +}","Kanha,Gummies,Blood Orange Bliss,Indica,100mg" +gpt-4,2,2,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpoqvKqtXvxhwXwMmOgJCQf7Pcuy,chat.completion,1687821716.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,Bobbi Hyll,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 18, + ""total_tokens"": 137 +}","Fresca,Flower,Indoor,Bobbi Hyll,3.5" +gpt-4,2,2,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VposAfOMPoKiIfIbrpgaDCzjfQoP,chat.completion,1687821718.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,14.99"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","Flav,Edible,Blueberry Belts,100mg,14.99" +gpt-4,2,2,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vpou0zV6tlfOAspwqDvO8XJRWJ0X,chat.completion,1687821720.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Cherry Pie,1g,Pod"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 114, + ""completion_tokens"": 15, + ""total_tokens"": 129 +}","Left Coast Extracts,Vape,Cherry Pie,1g,Pod" +gpt-4,2,2,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vpowl3ovH0As7DUfLP06PqD5gBJo,chat.completion,1687821722.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Emerald Cut,Indoor Joint,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 18, + ""total_tokens"": 139 +}","Minntz,Preroll,Emerald Cut,Indoor Joint,1g" +gpt-4,2,2,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpoyqE3xIjPLalDi6JoQ6IdDP69Y,chat.completion,1687821724.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","The Growers Circle,Flower,Indoor,Double Down,3.5" +gpt-4,2,2,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vpp0VrLsUnKY7IsFlMsSRqfDzQor,chat.completion,1687821726.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flowers,Blue Dream,Sugar Shake,14g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 115, + ""completion_tokens"": 14, + ""total_tokens"": 129 +}","Pacific Stone,Flowers,Blue Dream,Sugar Shake,14g" +gpt-4,2,2,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vpp2jB1yN70o01Ix2jH0JCslFF1T,chat.completion,1687821728.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 24, + ""total_tokens"": 153 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5" +gpt-4,2,2,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vpp6sWSiMWBJoiVnYDvr27WvIiWj,chat.completion,1687821732.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummies,S'mores,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 14, + ""total_tokens"": 139 +}","Flight Bites,Gummies,S'mores,10ct,100mg" +gpt-4,2,3,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpplpYWZmqMCUYQfUMkrBzuF4AjW,chat.completion,1687821773.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Edible,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 16, + ""total_tokens"": 276 +}","Chill Medicated,Edible,Syrup,Watermelon,250mg" +gpt-4,2,3,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VppnERiW7ajH4KLJhd4ENBUCumKe,chat.completion,1687821775.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 14, + ""total_tokens"": 271 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-4,2,3,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VppqpJfPRoNHrn46wl6jcvClQilf,chat.completion,1687821778.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 277, + ""completion_tokens"": 15, + ""total_tokens"": 292 +}","Champelli,Flower,Bud,Xclusivo,3.5" +gpt-4,2,3,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vpps9QFwEUc0qfZDFEGN0gPl8Q2e,chat.completion,1687821780.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 255, + ""completion_tokens"": 13, + ""total_tokens"": 268 +}","CAM,Flower,Bud,Mellowz #7,7" +gpt-4,2,3,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpptCIowyhhdeaDQks1lSto8AqII,chat.completion,1687821781.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 21, + ""total_tokens"": 286 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg" +gpt-4,2,3,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VppvLZMlfxAC4DICsv73ChCXKb26,chat.completion,1687821783.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 15, + ""total_tokens"": 275 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1" +gpt-4,2,3,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VppxD9JmezKAZ4y0VuLPzYe9kTpf,chat.completion,1687821785.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 17, + ""total_tokens"": 282 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,2,3,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VppzDH389IosteqBxwRnqnQz0oSk,chat.completion,1687821787.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 19, + ""total_tokens"": 291 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1" +gpt-4,2,3,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpq2oAMzv1ZETpGC1gaHJdvKCbuF,chat.completion,1687821790.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 14, + ""total_tokens"": 285 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-4,2,3,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vpq3qW3WOF6Z0Ob8MQRJyxzO0E1q,chat.completion,1687821791.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape,Pen,Birthday Cake,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 13, + ""total_tokens"": 273 +}","STIIIZY,Vape,Pen,Birthday Cake,1" +gpt-4,2,3,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vpq5r9tpccXARuZAyFGQ7IeKXKk2,chat.completion,1687821793.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 19, + ""total_tokens"": 281 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1" +gpt-4,2,3,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vpq7vPPYPvw5bkqRPp8tYZzyXjTD,chat.completion,1687821795.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 263, + ""completion_tokens"": 17, + ""total_tokens"": 280 +}","Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg" +gpt-4,2,3,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vpq9TdAATUronaOnEyK5dhfoEuzx,chat.completion,1687821797.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 18, + ""total_tokens"": 275 +}","Fresca,Flower,Bud,BOBBI HYLL,3.5" +gpt-4,2,3,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpqCI9Th2kMvzmApsGbLU9iX18ll,chat.completion,1687821800.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 13, + ""total_tokens"": 270 +}","Flav,Edible,Blueberry Belts,100mg" +gpt-4,2,3,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpqD6WGtQ112cpiBhKgliJYLxYmg,chat.completion,1687821801.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 252, + ""completion_tokens"": 14, + ""total_tokens"": 266 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1" +gpt-4,2,3,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpqFfrARGpN1F25S1wfdjmnKtFLd,chat.completion,1687821803.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 15, + ""total_tokens"": 274 +}","Minntz,Preroll,Joint,Emerald Cut,1" +gpt-4,2,3,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpqG0axTJqKiW8AFpprqTYj65f0l,chat.completion,1687821804.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 17, + ""total_tokens"": 274 +}","The Growers Circle,Flower,Indoor,Double Down,3.5" +gpt-4,2,3,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpqIQURWf0KzJbHwiLSzdw7d6q0l,chat.completion,1687821806.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 253, + ""completion_tokens"": 13, + ""total_tokens"": 266 +}","Pacific Stone,Flower,Shake,Blue Dream,14" +gpt-4,2,3,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpqKlQD96BbS5m89oPlltKF6VdsL,chat.completion,1687821808.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 24, + ""total_tokens"": 291 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5" +gpt-4,2,3,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpqNKI0IPb6uXKke2Z88rn3VOZTK,chat.completion,1687821811.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummy,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 263, + ""completion_tokens"": 14, + ""total_tokens"": 277 +}","Flight Bites,Edible,Gummy,S'mores,100mg" +gpt-4,2,5,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpqPLnFWOhlEgXRafV8NjOwBgk6S,chat.completion,1687821813.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 16, + ""total_tokens"": 393 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg" +gpt-4,2,5,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpqReaOEC10PY6jvvIo15BKfWOXa,chat.completion,1687821815.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 14, + ""total_tokens"": 388 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-4,2,5,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpqTsjYsl2ejtBMZwt9g4EPr89P0,chat.completion,1687821817.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 394, + ""completion_tokens"": 15, + ""total_tokens"": 409 +}","Champelli,Flower,Bud,Xclusivo,3.5" +gpt-4,2,5,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpqUAE1dD37CVKevDjnjWUL4j3zj,chat.completion,1687821818.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 372, + ""completion_tokens"": 13, + ""total_tokens"": 385 +}","CAM,Flower,Bud,Mellowz #7,7" +gpt-4,2,5,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpqWRfJtjwG21lJEC4C5uffoVmoN,chat.completion,1687821820.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,nan,nan"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 382, + ""completion_tokens"": 21, + ""total_tokens"": 403 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,nan,nan" +gpt-4,2,5,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpqZUZ3e3A3dckySEwRkhrqlXt2B,chat.completion,1687821823.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Extract,Pink Lemonade Crushed Diamonds,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 17, + ""total_tokens"": 394 +}","Raw Garden,Concentrate,Extract,Pink Lemonade Crushed Diamonds,1" +gpt-4,2,5,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpqavZeHOsWxdCdy2uNNwShMtOGZ,chat.completion,1687821824.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 382, + ""completion_tokens"": 17, + ""total_tokens"": 399 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,2,5,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpqdKjbMVl0HdbRd5zPB5jA4IaU5,chat.completion,1687821827.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 389, + ""completion_tokens"": 19, + ""total_tokens"": 408 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1" +gpt-4,2,5,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VpqgKG7miwdKSha5XeDEgHLuvQIu,chat.completion,1687821830.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 14, + ""total_tokens"": 402 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-4,2,5,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpqiHl40r87JMe6piWMOoi5QehCR,chat.completion,1687821832.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape,Birthday Cake Pod,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 12, + ""total_tokens"": 389 +}","STIIIZY,Vape,Birthday Cake Pod,1" +gpt-4,2,5,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpqjzvmcXnUDjutiW2wryLz82PA4,chat.completion,1687821833.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 20, + ""total_tokens"": 399 +}","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1" +gpt-4,2,5,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpqmZzRZC5kC9cfUO1P5yuutsEMw,chat.completion,1687821836.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Blood Orange Bliss,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 15, + ""total_tokens"": 395 +}","Kanha,Edible,Gummies,Blood Orange Bliss,100mg" +gpt-4,2,5,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vpqnx1halOqWk8buWccoxZzVQkih,chat.completion,1687821837.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 18, + ""total_tokens"": 392 +}","Fresca,Flower,Bud,BOBBI HYLL,3.5" +gpt-4,2,5,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpqpPDiOzckdi2WUY54k5XM43j7Y,chat.completion,1687821839.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 15, + ""total_tokens"": 389 +}","Flav,Edible,Gummies,Blueberry Belts,100mg" +gpt-4,2,5,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpqrEffwgNs5fTe98KoRV83SWwwJ,chat.completion,1687821841.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 369, + ""completion_tokens"": 14, + ""total_tokens"": 383 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1" +gpt-4,2,5,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpquxNwgc3wnv6tUNxT2ieeQ15SZ,chat.completion,1687821844.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 15, + ""total_tokens"": 391 +}","Minntz,Preroll,Joint,Emerald Cut,1" +gpt-4,2,5,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpqwJjMaXk1Xg9XBnTDkY1VhKWtM,chat.completion,1687821846.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Bud,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 16, + ""total_tokens"": 390 +}","The Growers Circle,Flower,Bud,Double Down,3.5" +gpt-4,2,5,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpqyYn35wI46LOyEEws6f3hFpCaM,chat.completion,1687821848.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 370, + ""completion_tokens"": 13, + ""total_tokens"": 383 +}","Pacific Stone,Flower,Shake,Blue Dream,14" +gpt-4,2,5,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vpr0ax8BHwf2O70sdGb83TRQhGYr,chat.completion,1687821850.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 384, + ""completion_tokens"": 23, + ""total_tokens"": 407 +}","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5" +gpt-4,2,5,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vpr25ViUgNBsamzhYcjRGBw0bEd9,chat.completion,1687821852.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 14, + ""total_tokens"": 394 +}","Flight Bites,Edible,Gummies,S'mores,100mg" +gpt-3.5-turbo,1,1,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vpr4j3ZjOxAHRxXduGQsXbns2OBB,chat.completion,1687821854.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! This is the automated system for Chill Medicated. We have received your order for Chill Medicated Watermelon Syrup with 250mg of THC. Thank you for choosing our product. Your order is being processed, and we will notify you once it has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you again, and have a chill day!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 82, + ""total_tokens"": 138 +}","Hello! This is the automated system for Chill Medicated. We have received your order for Chill Medicated Watermelon Syrup with 250mg of THC. Thank you for choosing our product. Your order is being processed, and we will notify you once it has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you again, and have a chill day!" +gpt-3.5-turbo,1,1,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vpr7Kp3QE1AqZU7hA5HeGNhpFOOS,chat.completion,1687821857.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! This is a system message from our inventory management system. We have received your order for Feelz - Space Cowboy 3.5g and Flowers 3.5g, both with the strain type marked as \""nan\"". However, we noticed that the strain type is missing or invalid. Could you please provide us with the correct strain type for these items? Thank you for your understanding."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 80, + ""total_tokens"": 133 +}","Hello! This is a system message from our inventory management system. We have received your order for Feelz - Space Cowboy 3.5g and Flowers 3.5g, both with the strain type marked as ""nan"". However, we noticed that the strain type is missing or invalid. Could you please provide us with the correct strain type for these items? Thank you for your understanding." +gpt-3.5-turbo,1,1,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VprARSjUSMQU8LMnkm8rVnTDn3Xb,chat.completion,1687821860.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""This is a system message to inform you that your order for Champelli Xclusivo 3.5g (product code FL-8voAjt83sD) has been received and is confirmed for delivery. The order includes one eighth of Champelli Xclusivo 3.5g packed buds. Your order will be processed and shipped as soon as possible. Thank you for choosing Champelli!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 73, + ""completion_tokens"": 82, + ""total_tokens"": 155 +}",This is a system message to inform you that your order for Champelli Xclusivo 3.5g (product code FL-8voAjt83sD) has been received and is confirmed for delivery. The order includes one eighth of Champelli Xclusivo 3.5g packed buds. Your order will be processed and shipped as soon as possible. Thank you for choosing Champelli! +gpt-3.5-turbo,1,1,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VprDRNZpGzy8flgrXT3kSaD3Zl6N,chat.completion,1687821863.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! It seems like you are trying to order some cannabis products. Can you please provide more information on your order, such as the quantity of each product and your preferred delivery method? Thank you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 41, + ""total_tokens"": 92 +}","Hello there! It seems like you are trying to order some cannabis products. Can you please provide more information on your order, such as the quantity of each product and your preferred delivery method? Thank you." +gpt-3.5-turbo,1,1,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VprGWNKnRShk6NiBwWLfVINDYHe8,chat.completion,1687821866.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp with 1000mg of THC. However, I would like to clarify that the product you mentioned is a tincture and not a sizzurp. The product contains nan amount of CBD and THC. Please let me know if you have any further questions or if there is anything else I can assist you with."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 93, + ""total_tokens"": 154 +}","Hello! Thank you for your message. It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp with 1000mg of THC. However, I would like to clarify that the product you mentioned is a tincture and not a sizzurp. The product contains nan amount of CBD and THC. Please let me know if you have any further questions or if there is anything else I can assist you with." +gpt-3.5-turbo,1,1,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VprKF3c834F5pYJlG99kJxwWJFub,chat.completion,1687821870.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for choosing our system. Can you please clarify your request or question regarding \""fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0\""?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 54, + ""total_tokens"": 110 +}","Hello! Thank you for choosing our system. Can you please clarify your request or question regarding ""fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0""?" +gpt-3.5-turbo,1,1,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VprMqAcSBqixTCmtIPXux2Pjerwy,chat.completion,1687821872.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your message. Can you please provide more information or a specific request related to md-1159983 Baby Jeeter Peaches Infused Preroll 5pk - 2.5g?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 43, + ""total_tokens"": 104 +}",Thank you for your message. Can you please provide more information or a specific request related to md-1159983 Baby Jeeter Peaches Infused Preroll 5pk - 2.5g? +gpt-3.5-turbo,1,1,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VprNRoQFJ0ZlrHPwphiN3JDyMFf3,chat.completion,1687821873.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nThe product with ID `co-6WGV1Z0H` is a 1g blunt of indoor-grown Truffle Pupil strain from Ocean Breeze Cultivators. The details of the brand and strain are provided, but the price information is missing. Please update the price information for this product to continue."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 68, + ""completion_tokens"": 70, + ""total_tokens"": 138 +}","System Message: + +The product with ID `co-6WGV1Z0H` is a 1g blunt of indoor-grown Truffle Pupil strain from Ocean Breeze Cultivators. The details of the brand and strain are provided, but the price information is missing. Please update the price information for this product to continue." +gpt-3.5-turbo,1,1,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VprQXR0htLULUjFlsdfCnJxNPTUr,chat.completion,1687821876.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nOrder received for:\n\n- 1 x Cookies | Triple Scoop Preroll 1g - $10.00\n- 1 x Joints - $5.00\n\nThe total cost of the order is $15.00. Thank you for choosing our services!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 60, + ""total_tokens"": 127 +}","System Message: + +Order received for: + +- 1 x Cookies | Triple Scoop Preroll 1g - $10.00 +- 1 x Joints - $5.00 + +The total cost of the order is $15.00. Thank you for choosing our services!" +gpt-3.5-turbo,1,1,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VprTBWB8cjLGydtmCxcJq25gEbyq,chat.completion,1687821879.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more information or clarify your request?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 19, + ""total_tokens"": 75 +}",Hello! Thank you for your message. Can you please provide more information or clarify your request? +gpt-3.5-turbo,1,1,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VprU7cqq80RodGaSadpSgHXraX1o,chat.completion,1687821880.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Order placed successfully!\n\nThank you for placing your order with us. Your order for \""Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g\"" has been received and will be processed shortly. Your order number is co-6GGKA0GV. \n\nPlease note that delivery times may vary based on your location and shipping method. We will email you with further updates on the status of your order as it progresses. \n\nIf you have any questions or concerns, please don't hesitate to reach out to our customer service team for assistance. Thank you again for choosing us and we look forward to serving you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 133, + ""total_tokens"": 191 +}","System message: Order placed successfully! + +Thank you for placing your order with us. Your order for ""Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g"" has been received and will be processed shortly. Your order number is co-6GGKA0GV. + +Please note that delivery times may vary based on your location and shipping method. We will email you with further updates on the status of your order as it progresses. + +If you have any questions or concerns, please don't hesitate to reach out to our customer service team for assistance. Thank you again for choosing us and we look forward to serving you." +gpt-3.5-turbo,1,1,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VprYBhGhM8UnumsU8C7e20oaYpGM,chat.completion,1687821884.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! This is a system message to let you know that your recent purchase of Kanha Nano Blood Orange Bliss Indica Gummies in a 10ct package with 100mg of THC has been confirmed. Thank you for choosing Kanha for your cannabis needs. Have a wonderful day!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 58, + ""total_tokens"": 117 +}",Hello! This is a system message to let you know that your recent purchase of Kanha Nano Blood Orange Bliss Indica Gummies in a 10ct package with 100mg of THC has been confirmed. Thank you for choosing Kanha for your cannabis needs. Have a wonderful day! +gpt-3.5-turbo,1,1,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vpra3Mh2lcuSvwLECmvcOPMiphQw,chat.completion,1687821886.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order, Bobbi Hyll!\n\nYour order details are as follows:\n\nProduct: Indoor - 3.5g Fresca Flower\nQuantity: 1\nPrice: $nan\n\nYour order has been confirmed (#md-1242517) and will be processed shortly. We will update you once your order has been shipped.\n\nThank you for choosing us for your cannabis needs."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 80, + ""total_tokens"": 133 +}","Thank you for your order, Bobbi Hyll! + +Your order details are as follows: + +Product: Indoor - 3.5g Fresca Flower +Quantity: 1 +Price: $nan + +Your order has been confirmed (#md-1242517) and will be processed shortly. We will update you once your order has been shipped. + +Thank you for choosing us for your cannabis needs." +gpt-3.5-turbo,1,1,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VprdOGQcm4zM14IP6B3TtBpjXfvF,chat.completion,1687821889.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see that you have purchased Flav's Blueberry Belts 100mg edible. Enjoy your delicious treat and please consume responsibly. If you have any questions or concerns, feel free to reach out to Flav's customer support team. Have a great day!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 55, + ""total_tokens"": 108 +}","Hello! I see that you have purchased Flav's Blueberry Belts 100mg edible. Enjoy your delicious treat and please consume responsibly. If you have any questions or concerns, feel free to reach out to Flav's customer support team. Have a great day!" +gpt-3.5-turbo,1,1,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VprgQIJ1DRU74DhzaSvN6iu36UlK,chat.completion,1687821892.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Order MD-1347497 for a Cherry Pie 1g pod from Left Coast Extracts with vape method has been processed with no special instructions or comments provided. Order tracking number will be provided once the shipment is dispatched."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 48, + ""total_tokens"": 96 +}",System message: Order MD-1347497 for a Cherry Pie 1g pod from Left Coast Extracts with vape method has been processed with no special instructions or comments provided. Order tracking number will be provided once the shipment is dispatched. +gpt-3.5-turbo,1,1,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VprhpNrJikrrtiPJA5rgNxrFHbix,chat.completion,1687821893.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for using our system. It looks like you are trying to place an order for a 1g joint of Minntz - Emerald Cut - Indoor. Can you please confirm the strain and quantity you would like to order?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 49, + ""total_tokens"": 104 +}",Hello! Thank you for using our system. It looks like you are trying to place an order for a 1g joint of Minntz - Emerald Cut - Indoor. Can you please confirm the strain and quantity you would like to order? +gpt-3.5-turbo,1,1,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VprjdnnH4SiMEn1JShsiipxTGFip,chat.completion,1687821895.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""I'm sorry, but I'm not sure what you're asking. Could you please provide more context or clarify your request?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 25, + ""total_tokens"": 78 +}","I'm sorry, but I'm not sure what you're asking. Could you please provide more context or clarify your request?" +gpt-3.5-turbo,1,1,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VprkkUsEbDZvzeWPTkiNcwWRxoCz,chat.completion,1687821896.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please clarify your request or question regarding the Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone? Do you have any specific inquiries about the product or any concerns that we can address for you? We are here to assist you in any way we can."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 64, + ""total_tokens"": 113 +}",Hello! Thank you for your message. Can you please clarify your request or question regarding the Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone? Do you have any specific inquiries about the product or any concerns that we can address for you? We are here to assist you in any way we can. +gpt-3.5-turbo,1,1,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VprnyZ3xwp8rwtos9zOW4GbpiSNU,chat.completion,1687821899.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Message:\n\nHello! Thank you for your order of The Grower Circle's Zoo Dawg x Cosa Nostra Multi Joint pack. Unfortunately, we encountered a problem fulfilling your order as the fields for the quantity and weight were left empty. Could you please provide us with this information so that we can fulfill your order as soon as possible? Thank you!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 63, + ""completion_tokens"": 71, + ""total_tokens"": 134 +}","Message: + +Hello! Thank you for your order of The Grower Circle's Zoo Dawg x Cosa Nostra Multi Joint pack. Unfortunately, we encountered a problem fulfilling your order as the fields for the quantity and weight were left empty. Could you please provide us with this information so that we can fulfill your order as soon as possible? Thank you!" +gpt-3.5-turbo,1,1,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VprqygNZ8E9l2H4B8l8LZuPmSCVQ,chat.completion,1687821902.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your inquiry about Flight Bites - S'mores - Gummy - 10ct - 100mg. Can you please clarify your request or provide additional information? Thank you!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 41, + ""total_tokens"": 100 +}",Hello! Thank you for your inquiry about Flight Bites - S'mores - Gummy - 10ct - 100mg. Can you please clarify your request or provide additional information? Thank you! +gpt-3.5-turbo,1,2,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vprr04phpqiqFlYP3iMOtayXxXH7,chat.completion,1687821903.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg,co-2MFE5QVF"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 22, + ""total_tokens"": 147 +}","Chill Medicated,Watermelon,Syrup,250mg,co-2MFE5QVF" +gpt-3.5-turbo,1,2,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VprsT4bxorcTFFtduAzBg2g45V6K,chat.completion,1687821904.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Space Cowboy,Flower,3.5g,11.16"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 17, + ""total_tokens"": 139 +}","Feelz,Space Cowboy,Flower,3.5g,11.16" +gpt-3.5-turbo,1,2,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vprt9oBPwyGXonWG8wv7evpLJZds,chat.completion,1687821905.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Xclusivo,Eighths,PackedBud,3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 142, + ""completion_tokens"": 18, + ""total_tokens"": 160 +}","Champelli,Xclusivo,Eighths,PackedBud,3.5g" +gpt-3.5-turbo,1,2,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vpruy9Uci9w4fpybk8Z6gUOv3WAq,chat.completion,1687821906.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flowers,7g,073133213364"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 120, + ""completion_tokens"": 17, + ""total_tokens"": 137 +}","CAM,Mellowz #7,Flowers,7g,073133213364" +gpt-3.5-turbo,1,2,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VprvQ1cUp77VEeZBTpw7OBALA2gs,chat.completion,1687821907.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,fl-fwJQL2AWnS"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 130, + ""completion_tokens"": 30, + ""total_tokens"": 160 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,fl-fwJQL2AWnS" +gpt-3.5-turbo,1,2,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VprwsLGQvxiCB3mp0h97k2ciSYr6,chat.completion,1687821908.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Pink Lemonade,Crushed Diamonds,Concentrate,1g,fl-dXE5cH45AQ"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 26, + ""total_tokens"": 151 +}","Raw Garden,Pink Lemonade,Crushed Diamonds,Concentrate,1g,fl-dXE5cH45AQ" +gpt-3.5-turbo,1,2,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VprxR2nwFDQ5CP9c7cDvCQ9txWay,chat.completion,1687821909.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 130, + ""completion_tokens"": 17, + ""total_tokens"": 147 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-3.5-turbo,1,2,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpryCPwygwyik6M4VRbx1QMzBoWb,chat.completion,1687821910.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,6WGV1Z0H"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 137, + ""completion_tokens"": 28, + ""total_tokens"": 165 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,6WGV1Z0H" +gpt-3.5-turbo,1,2,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VprzbO6KnM7Lc5H8kUPGi51abSvi,chat.completion,1687821911.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Triple Scoop,Joint,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 136, + ""completion_tokens"": 16, + ""total_tokens"": 152 +}","Cookies,Preroll,Triple Scoop,Joint,1.0" +gpt-3.5-turbo,1,2,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vps0WMrw3BnfWkzSPenaHKMVTuat,chat.completion,1687821912.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake Pod,Vape,1g,8.42922110296"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 20, + ""total_tokens"": 145 +}","STIIIZY,Birthday Cake Pod,Vape,1g,8.42922110296" +gpt-3.5-turbo,1,2,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vps1ozt5urIjh9aOpb2DT97r7TaI,chat.completion,1687821913.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g,co-6GGKA0GV."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 29, + ""total_tokens"": 156 +}","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g,co-6GGKA0GV." +gpt-3.5-turbo,1,2,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vps24fFn2BqvvbhAsqa3iYEWTDXd,chat.completion,1687821914.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha Nano Blood Orange Bliss Indica Gummies - 10ct - 100mg,7YGGNHBR,Blood Orange,Indica,Gummies,10,100"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 37, + ""total_tokens"": 165 +}","Kanha Nano Blood Orange Bliss Indica Gummies - 10ct - 100mg,7YGGNHBR,Blood Orange,Indica,Gummies,10,100" +gpt-3.5-turbo,1,2,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vps492mS1MfqZKQQjQA07oaxqeNX,chat.completion,1687821916.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,BOBBI HYLL,Indoor Flower,3.5g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 19, + ""total_tokens"": 141 +}","Fresca,BOBBI HYLL,Indoor Flower,3.5g." +gpt-3.5-turbo,1,2,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vps6lsIh3xaE0HdILN5wynXZ5866,chat.completion,1687821918.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg THC,9nEPGsnYtY"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 23, + ""total_tokens"": 145 +}","Flav,Edible,Blueberry Belts,100mg THC,9nEPGsnYtY" +gpt-3.5-turbo,1,2,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vps8SljCHF78kVaMc2keuDixLygx,chat.completion,1687821920.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.47"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 117, + ""completion_tokens"": 18, + ""total_tokens"": 135 +}","Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.47" +gpt-3.5-turbo,1,2,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vps8tR95MDrEKNFhJcff39o1eJ04,chat.completion,1687821920.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 23, + ""total_tokens"": 147 +}","Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T." +gpt-3.5-turbo,1,2,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vps9ElNjAlPSy46xf8WH4zgm9iil,chat.completion,1687821921.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 21, + ""total_tokens"": 143 +}","The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ" +gpt-3.5-turbo,1,2,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpsA0ePQtJyVorZG6Ewj67CBSYRo,chat.completion,1687821922.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone, Sugar Shake, Blue Dream, Flowers, 14g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 14, + ""total_tokens"": 132 +}","Pacific Stone, Sugar Shake, Blue Dream, Flowers, 14g" +gpt-3.5-turbo,1,2,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpsBSF3hgz1chbJyQU0lf9Z6yRbf,chat.completion,1687821923.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""I'm sorry but the information you provided doesn't seem to be in the correct format. Can you please provide the details again with the correct format?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 132, + ""completion_tokens"": 30, + ""total_tokens"": 162 +}",I'm sorry but the information you provided doesn't seem to be in the correct format. Can you please provide the details again with the correct format? +gpt-3.5-turbo,1,2,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpsChdOtF7QuZeXof4sFF4wWNkx1,chat.completion,1687821924.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummies,S'mores Flavor,10 Count,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 15, + ""total_tokens"": 143 +}","Flight Bites,Gummies,S'mores Flavor,10 Count,100mg" +gpt-3.5-turbo,1,3,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpsXdq5ulUtJr9TjRLw7jugWjxK1,chat.completion,1687821945.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 13, + ""total_tokens"": 280 +}","Chill Medicated,Syrup,Watermelon,250mg" +gpt-3.5-turbo,1,3,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpsYCGzfJlxmVJ641ZF5tzYzsKJn,chat.completion,1687821946.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 14, + ""total_tokens"": 278 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-3.5-turbo,1,3,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpsZ6W1ZNx9YyaM22Bu2Q5s8Bl0M,chat.completion,1687821947.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Xclusivo,Eighth,Flower,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 284, + ""completion_tokens"": 15, + ""total_tokens"": 299 +}","Champelli,Xclusivo,Eighth,Flower,3.5" +gpt-3.5-turbo,1,3,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpsaLRwXz8L0BTOe943aaTdOXoCv,chat.completion,1687821948.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 13, + ""total_tokens"": 275 +}","CAM,Mellowz #7,Flower,Bud,7" +gpt-3.5-turbo,1,3,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpsawLihi7QBKH3WM3mwASaZZOLd,chat.completion,1687821948.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 21, + ""total_tokens"": 293 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg" +gpt-3.5-turbo,1,3,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpsbrQIY1jZ6FoT8BVZdkFuC73Ka,chat.completion,1687821949.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Extract,Pink Lemonade,1.0g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 17, + ""total_tokens"": 284 +}","Raw Garden,Concentrate,Extract,Pink Lemonade,1.0g" +gpt-3.5-turbo,1,3,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpscX5Mwh3k5Dwal7CGa4Kzi6CJZ,chat.completion,1687821950.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 17, + ""total_tokens"": 289 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-3.5-turbo,1,3,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpsdJKfoLiJl7unGlm7WIGd4oVx3,chat.completion,1687821951.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 279, + ""completion_tokens"": 20, + ""total_tokens"": 299 +}","Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g" +gpt-3.5-turbo,1,3,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VpseRpyNlAHH6QlKRxrUwzXTSHDQ,chat.completion,1687821952.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 278, + ""completion_tokens"": 14, + ""total_tokens"": 292 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-3.5-turbo,1,3,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpsfcWjLtM1EzNeNpTg1MlQnXAMu,chat.completion,1687821953.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 15, + ""total_tokens"": 282 +}","STIIIZY,Birthday Cake,Pod,Vape,1.0" +gpt-3.5-turbo,1,3,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vpsf6W5j28lcujYc3F171INrJm3R,chat.completion,1687821953.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 269, + ""completion_tokens"": 21, + ""total_tokens"": 290 +}","Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0" +gpt-3.5-turbo,1,3,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpsmvJAYbS2sNUx1TKIksG6XKNze,chat.completion,1687821960.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 20, + ""total_tokens"": 290 +}","Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg" +gpt-3.5-turbo,1,3,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpsnRUDwKA1pbzkxv6l6tnMqrYJP,chat.completion,1687821961.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 17, + ""total_tokens"": 281 +}","BOBBI HYLL,Flower,Bud,Indoor,3.5" +gpt-3.5-turbo,1,3,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpsoHtHgtSDRUjP8sR2dO4sfdfbb,chat.completion,1687821962.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 13, + ""total_tokens"": 277 +}","Flav,Edible,Blueberry Belts,100mg" +gpt-3.5-turbo,1,3,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpsonO2lT59VXRjqg05ZW6dLmh9L,chat.completion,1687821962.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Vape Pod,Left Coast Extracts,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 13, + ""total_tokens"": 272 +}","Cherry Pie,Vape Pod,Left Coast Extracts,1" +gpt-3.5-turbo,1,3,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vpsp7NVCmBw9pSZGf7ECJiZL2g4V,chat.completion,1687821963.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Indoor,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 266, + ""completion_tokens"": 14, + ""total_tokens"": 280 +}","Minntz,Indoor,Joint,Emerald Cut,1" +gpt-3.5-turbo,1,3,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpsqcS1siMjJIoOLxZ2qkmJKvnkq,chat.completion,1687821964.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 19, + ""total_tokens"": 283 +}","The Growers Circle,Double Down,Flower,Bud,Indoor,3.5" +gpt-3.5-turbo,1,3,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpsrERCjgA4l16GmWRRuUr05YJwC,chat.completion,1687821965.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Sugar Shake,Bag,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 15, + ""total_tokens"": 275 +}","Pacific Stone,Flower,Sugar Shake,Bag,Blue Dream,14" +gpt-3.5-turbo,1,3,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpsvnVJUubkdbs9xST0jpA9Lpbcl,chat.completion,1687821969.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Multi-Joint,Joint,Zoo Dawg x Cosa Nostra,5pk,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 274, + ""completion_tokens"": 26, + ""total_tokens"": 300 +}","The Grower Circle,Multi-Joint,Joint,Zoo Dawg x Cosa Nostra,5pk,12.5" +gpt-3.5-turbo,1,3,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vpt3bf2e7ltWfbcasglM9sGVZZ3S,chat.completion,1687821977.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 14, + ""total_tokens"": 284 +}","Flight Bites,Gummy,S'mores,10ct,100mg" +gpt-3.5-turbo,1,5,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vpt43Hbx1pjiGzepC0JeLY1AsCLD,chat.completion,1687821978.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 12, + ""total_tokens"": 400 +}","Chill Medicated,Syrup,Watermelon,250" +gpt-3.5-turbo,1,5,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vpt5RIMAlv30a13wPNIkbRb49uJE,chat.completion,1687821979.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 14, + ""total_tokens"": 399 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-3.5-turbo,1,5,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vpt64vaPuPGFJOumVbcTMMEh5NVZ,chat.completion,1687821980.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 405, + ""completion_tokens"": 16, + ""total_tokens"": 421 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5" +gpt-3.5-turbo,1,5,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vpt7PokknlidCr5yy8fc3LzKh2SZ,chat.completion,1687821981.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz,Flower,Bud,7.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 383, + ""completion_tokens"": 13, + ""total_tokens"": 396 +}","CAM,Mellowz,Flower,Bud,7.0" +gpt-3.5-turbo,1,5,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vpt87uPj7E536SQvEsOXynZgrXDZ,chat.completion,1687821982.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Liquid,Bubblegum Gelato Sizzurp,1000"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 22, + ""total_tokens"": 415 +}","Backpack Boyz,Tincture,Liquid,Bubblegum Gelato Sizzurp,1000" +gpt-3.5-turbo,1,5,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vpt8S2xmczGcL3TpXTKS8N43SttA,chat.completion,1687821982.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 17, + ""total_tokens"": 405 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0" +gpt-3.5-turbo,1,5,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vpt9cnl5hk654EPW0ibHhpe54KM6,chat.completion,1687821983.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peach,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 16, + ""total_tokens"": 409 +}","Jeeter,Preroll,Infused Joint,Peach,12.5" +gpt-3.5-turbo,1,5,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VptAElUr2YXon8PEkPgfMwVsy1b8,chat.completion,1687821984.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 400, + ""completion_tokens"": 21, + ""total_tokens"": 421 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1.0" +gpt-3.5-turbo,1,5,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VptBcqH5yVZZF6P3l6CJzOq9lirZ,chat.completion,1687821985.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 399, + ""completion_tokens"": 14, + ""total_tokens"": 413 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-3.5-turbo,1,5,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VptCRoTpCwK59tFOXRGANoD7mZkN,chat.completion,1687821986.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 14, + ""total_tokens"": 402 +}","STIIIZY,Vape Pen,Birthday Cake,1.0" +gpt-3.5-turbo,1,5,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VptDk6yGWFb2at2m7TnwRbRATJpY,chat.completion,1687821987.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 390, + ""completion_tokens"": 21, + ""total_tokens"": 411 +}","Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0" +gpt-3.5-turbo,1,5,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VptEVMgd2Ky1gDsGRqU22fllPH3z,chat.completion,1687821988.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Blood Orange Bliss Indica,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 391, + ""completion_tokens"": 20, + ""total_tokens"": 411 +}","Kanha,Edible,Gummies,Blood Orange Bliss Indica,10ct,100mg" +gpt-3.5-turbo,1,5,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VptFRjZ7spl4B3tsfSyarloLXwnL,chat.completion,1687821989.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Indoor,Flower,Bud,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 17, + ""total_tokens"": 402 +}","BOBBI HYLL,Indoor,Flower,Bud,3.5" +gpt-3.5-turbo,1,5,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VptGTs4PRCRBr09lk912n2H3uReA,chat.completion,1687821990.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 14, + ""total_tokens"": 399 +}","Flav,Edible,Gummies,Blueberry Belts,100" +gpt-3.5-turbo,1,5,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VptGn6GHNMAOMu7GqdNt0577w3qd,chat.completion,1687821990.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Vape Cartridge,Vape,Left Coast Extracts,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 18, + ""total_tokens"": 398 +}","Cherry Pie,Vape Cartridge,Vape,Left Coast Extracts,1.0" +gpt-3.5-turbo,1,5,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VptHAvoKqc84fvlHbA4NtSXLyvtu,chat.completion,1687821991.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 387, + ""completion_tokens"": 17, + ""total_tokens"": 404 +}","Minntz,Preroll,Joint,Emerald Cut,1.0" +gpt-3.5-turbo,1,5,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VptIeGPG2MOQX7ix5Bc0LoHnZwAc,chat.completion,1687821992.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle, Flower, Indoor, Double Down, 3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 17, + ""total_tokens"": 402 +}","The Growers Circle, Flower, Indoor, Double Down, 3.5g" +gpt-3.5-turbo,1,5,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VptJQAhgdMZaI024cTjeLAihAzx9,chat.completion,1687821993.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Sugar Shake,Bag,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 12, + ""total_tokens"": 393 +}","Pacific Stone,Sugar Shake,Bag,Blue Dream,14" +gpt-3.5-turbo,1,5,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VptKCeYGHvmJeg6WH4eZZFNLq9kR,chat.completion,1687821994.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Prerolls,Joint,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 395, + ""completion_tokens"": 23, + ""total_tokens"": 418 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Prerolls,Joint,12.5" +gpt-3.5-turbo,1,5,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VptLWraCph0HAJFNfWY9QAnn2j0M,chat.completion,1687821995.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg,10ct"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 391, + ""completion_tokens"": 17, + ""total_tokens"": 408 +}","Flight Bites,Edible,Gummies,S'mores,100mg,10ct" +gpt-3.5-turbo,2,2,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpvGyCCmUDhsTKfJlOXUCQXnNpQw,chat.completion,1687822114.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg,Co-2MFE5QVF"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 22, + ""total_tokens"": 148 +}","Chill Medicated,Watermelon,Syrup,250mg,Co-2MFE5QVF" +gpt-3.5-turbo,2,2,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpvHzydDRyTc0WxtIrCCQyCMfWCQ,chat.completion,1687822115.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Space Cowboy,Flowers,3.5g,11.1630024545"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 20, + ""total_tokens"": 143 +}","Feelz,Space Cowboy,Flowers,3.5g,11.1630024545" +gpt-3.5-turbo,2,2,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpvI0shoUg9PhxSuEewSoT2eFm5Z,chat.completion,1687822116.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli, Eighths, PackedBud, Xclusivo, 3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 143, + ""completion_tokens"": 22, + ""total_tokens"": 165 +}","Champelli, Eighths, PackedBud, Xclusivo, 3.5g" +gpt-3.5-turbo,2,2,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpvJIk2r6ne8KBP4QvmizQzcHNUC,chat.completion,1687822117.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flowers,7g,Blazin' Cannabis"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 18, + ""total_tokens"": 139 +}","CAM,Mellowz #7,Flowers,7g,Blazin' Cannabis" +gpt-3.5-turbo,2,2,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpvKZZs5zAYD9L1HZbf4g2YroFxS,chat.completion,1687822118.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz Bubblegum Gelato Sizzurp Tincture - 1000mg - 1 bottle - FWJQL2AWnS"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 131, + ""completion_tokens"": 33, + ""total_tokens"": 164 +}",Backpack Boyz Bubblegum Gelato Sizzurp Tincture - 1000mg - 1 bottle - FWJQL2AWnS +gpt-3.5-turbo,2,2,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpvLfliCebvGTm2cHLEI4SF2LNjf,chat.completion,1687822119.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g,fl-dXE5cH45AQ"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 28, + ""total_tokens"": 154 +}","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g,fl-dXE5cH45AQ" +gpt-3.5-turbo,2,2,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpvMLk4D0Kku5RoPocDP7Rvsr5JB,chat.completion,1687822120.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 131, + ""completion_tokens"": 17, + ""total_tokens"": 148 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-3.5-turbo,2,2,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpvN2ZPwR8z23cxCbgAx3iAq1uj0,chat.completion,1687822121.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Gram,Truffle Pupil,6WGV1Z0H"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 138, + ""completion_tokens"": 27, + ""total_tokens"": 165 +}","Ocean Breeze Cultivators,Blunt,Indoor,Gram,Truffle Pupil,6WGV1Z0H" +gpt-3.5-turbo,2,2,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VpvPEvHC5ufPtLQ6pHu0GZiXacyq,chat.completion,1687822123.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Triple Scoop Preroll,Joint,1.0g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 137, + ""completion_tokens"": 16, + ""total_tokens"": 153 +}","Cookies,Triple Scoop Preroll,Joint,1.0g" +gpt-3.5-turbo,2,2,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpvPdKaYIoo0t1jYH5hIETDWc9pd,chat.completion,1687822123.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Vape Pod,1g,VAPE PENS,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 22, + ""total_tokens"": 148 +}","STIIIZY,Birthday Cake,Vape Pod,1g,VAPE PENS,1.0" +gpt-3.5-turbo,2,2,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpvRysJAV5gtM3S4lXWSV7cZ37Yd,chat.completion,1687822125.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle Cookies TangEray Infused Joint Indoor 1g,co-6GGKA0GV."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 24, + ""total_tokens"": 152 +}","The Grower Circle Cookies TangEray Infused Joint Indoor 1g,co-6GGKA0GV." +gpt-3.5-turbo,2,2,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpvSFkwX54YlpRdcCCdEIpdJbUGt,chat.completion,1687822126.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummy,Indica,Nano,Blood Orange Bliss,10ct,100mg,7YGGNHBR."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 30, + ""total_tokens"": 159 +}","Kanha,Edible,Gummy,Indica,Nano,Blood Orange Bliss,10ct,100mg,7YGGNHBR." +gpt-3.5-turbo,2,2,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpvZZaRCBSSMgK8V785xtLGoUbU5,chat.completion,1687822133.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,BOBBI HYLL,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 19, + ""total_tokens"": 142 +}","Fresca,Flower,BOBBI HYLL,Indoor,3.5" +gpt-3.5-turbo,2,2,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpvZzDqzvbHm7RNDxoJwmtCDUMAc,chat.completion,1687822133.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,9nEPGsnYtY"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 22, + ""total_tokens"": 145 +}","Flav,Edible,Blueberry Belts,100mg,9nEPGsnYtY" +gpt-3.5-turbo,2,2,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vpvb2Y9ujrD2jXbzUsn1yFDHNUPY,chat.completion,1687822135.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts, Vape Pod, 1g, Cherry Pie, $34.99."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 21, + ""total_tokens"": 139 +}","Left Coast Extracts, Vape Pod, 1g, Cherry Pie, $34.99." +gpt-3.5-turbo,2,2,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpvchTJ3hsFoXdFOrO25jiNr96un,chat.completion,1687822136.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 22, + ""total_tokens"": 147 +}","Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T" +gpt-3.5-turbo,2,2,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vpvdw2u4JS63bC1mwqFIeYRXSQuU,chat.completion,1687822137.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 21, + ""total_tokens"": 144 +}","The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ" +gpt-3.5-turbo,2,2,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpvesVJYY5OZUD9bwWHr6fRtzoXP,chat.completion,1687822138.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Blue Dream,Sugar Shake,Flower,14g,RYO Bag,11.95"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 22, + ""total_tokens"": 141 +}","Pacific Stone,Blue Dream,Sugar Shake,Flower,14g,RYO Bag,11.95" +gpt-3.5-turbo,2,2,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpvfEIDXTkt1aAd2NlbC0FMrhtAa,chat.completion,1687822139.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Sorry, I am unable to generate a response with incomplete information. Please provide the required details for me to assist you better."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 25, + ""total_tokens"": 158 +}","Sorry, I am unable to generate a response with incomplete information. Please provide the required details for me to assist you better." +gpt-3.5-turbo,2,2,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vpvg2r8Hw4iLtLSmAAlb5sVTd8c8,chat.completion,1687822140.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores Flavor,10 count pack,100mg THC per pack,co-8EMW15ZM"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 28, + ""total_tokens"": 157 +}","Flight Bites,Gummy,S'mores Flavor,10 count pack,100mg THC per pack,co-8EMW15ZM" +gpt-3.5-turbo,2,3,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpvzQQbG2iYQ1gniSCTE2nmbSAC1,chat.completion,1687822159.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 268, + ""completion_tokens"": 13, + ""total_tokens"": 281 +}","Chill Medicated,Syrup,Watermelon,250mg" +gpt-3.5-turbo,2,3,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vpvz5XTdcu11754iqcpRMMaZBdik,chat.completion,1687822159.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 14, + ""total_tokens"": 279 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-3.5-turbo,2,3,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vpw0pY2zgY0YfJFLauehZHPgkpnl,chat.completion,1687822160.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Eighth,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 285, + ""completion_tokens"": 15, + ""total_tokens"": 300 +}","Champelli,Eighth,Packed Bud,Xclusivo,3.5" +gpt-3.5-turbo,2,3,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vpw1vimBhDb9RnuqpjYx8j2aW3ci,chat.completion,1687822161.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 263, + ""completion_tokens"": 13, + ""total_tokens"": 276 +}","CAM,Mellowz #7,Flower,Bud,7" +gpt-3.5-turbo,2,3,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vpw2H7HEgPkLvhDo140loYOIOXfu,chat.completion,1687822162.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 273, + ""completion_tokens"": 21, + ""total_tokens"": 294 +}","Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg" +gpt-3.5-turbo,2,3,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vpw3Zpbjirgjk2K3CszYBQo5CT4m,chat.completion,1687822163.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 268, + ""completion_tokens"": 17, + ""total_tokens"": 285 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0" +gpt-3.5-turbo,2,3,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vpw4N09NAHpT6ahUawdHWd9FUJWM,chat.completion,1687822164.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 273, + ""completion_tokens"": 17, + ""total_tokens"": 290 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-3.5-turbo,2,3,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vpw5JGUvnzGm1ITklRJ92g4PsOwh,chat.completion,1687822165.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,1g,Indoor"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 280, + ""completion_tokens"": 20, + ""total_tokens"": 300 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,1g,Indoor" +gpt-3.5-turbo,2,3,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vpw6dEDFZBD9l9QzXk9GuLaOOG7b,chat.completion,1687822166.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 279, + ""completion_tokens"": 16, + ""total_tokens"": 295 +}","Cookies,Preroll,Joint,Triple Scoop,1.0" +gpt-3.5-turbo,2,3,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vpw7RnV0WrIRXylw0pblefLIAX2X,chat.completion,1687822167.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape Pen,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 268, + ""completion_tokens"": 16, + ""total_tokens"": 284 +}","STIIIZY,Birthday Cake,Pod,Vape Pen,1.0" +gpt-3.5-turbo,2,3,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vpw7AypNky7hPzLQohk4p3W49XPX,chat.completion,1687822167.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 21, + ""total_tokens"": 291 +}","Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1.0" +gpt-3.5-turbo,2,3,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpwAfnNNndo4TK8NkqMHOB78QCvq,chat.completion,1687822170.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Nano Gummy,Blood Orange Bliss,Indica,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 20, + ""total_tokens"": 291 +}","Kanha,Nano Gummy,Blood Orange Bliss,Indica,10ct,100mg" +gpt-3.5-turbo,2,3,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpwBZujIl36W9RCVrQkK1VFzIe1Z,chat.completion,1687822171.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Indoor-grown,Flower,Bud,Fresca,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 22, + ""total_tokens"": 287 +}","BOBBI HYLL,Indoor-grown,Flower,Bud,Fresca,3.5" +gpt-3.5-turbo,2,3,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpwCdYR8f8d31ECypkD3tAf4ixbd,chat.completion,1687822172.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 13, + ""total_tokens"": 278 +}","Flav,Edible,Blueberry Belts,100mg" +gpt-3.5-turbo,2,3,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpwD5Hzg3N6ikvozAcpd05gBlJ3O,chat.completion,1687822173.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Pod,Vape,Left Coast Extracts,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 14, + ""total_tokens"": 274 +}","Cherry Pie,Pod,Vape,Left Coast Extracts,1" +gpt-3.5-turbo,2,3,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpwDLgfaF0edWc3ns4697qy6e5yC,chat.completion,1687822173.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 14, + ""total_tokens"": 281 +}","Minntz,Joint,Indoor,Emerald Cut,1" +gpt-3.5-turbo,2,3,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpwEMsKCVciE0rjr2OewQNcC8L24,chat.completion,1687822174.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,Flower,Bud,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 19, + ""total_tokens"": 284 +}","The Growers Circle,Double Down,Indoor,Flower,Bud,3.5" +gpt-3.5-turbo,2,3,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpwFjHlZpkOTtRqR3nb8Jmo7WaRU,chat.completion,1687822175.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Sugar Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 261, + ""completion_tokens"": 13, + ""total_tokens"": 274 +}","Pacific Stone,Flower,Sugar Shake,Blue Dream,14" +gpt-3.5-turbo,2,3,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpwGoyyLgVvroHIJg178KjGSvIXZ,chat.completion,1687822176.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Multipack Preroll,Joint,2.5g,5pk"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 275, + ""completion_tokens"": 29, + ""total_tokens"": 304 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Multipack Preroll,Joint,2.5g,5pk" +gpt-3.5-turbo,2,3,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpwIsWPvzstlJVcabY73MQx7rB7d,chat.completion,1687822178.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 14, + ""total_tokens"": 285 +}","Flight Bites,Gummy,S'mores,10ct,100mg" +gpt-3.5-turbo,2,5,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VpwI98Ep9l4Z5EDAWebQmzId082J,chat.completion,1687822178.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 389, + ""completion_tokens"": 12, + ""total_tokens"": 401 +}","Chill Medicated,Syrup,Watermelon,250" +gpt-3.5-turbo,2,5,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VpwJpTYjJLLZCIm0JrHUphVlWY7d,chat.completion,1687822179.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 386, + ""completion_tokens"": 14, + ""total_tokens"": 400 +}","Feelz,Flower,Bud,Space Cowboy,3.5" +gpt-3.5-turbo,2,5,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VpwKU2o2EXMPM1WG8ouBmWhnzgG1,chat.completion,1687822180.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 406, + ""completion_tokens"": 15, + ""total_tokens"": 421 +}","Champelli,Flower,Bud,Xclusivo,3.5" +gpt-3.5-turbo,2,5,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VpwLh3V3RDfUcLRcPAbPEYCifDVc,chat.completion,1687822181.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 384, + ""completion_tokens"": 13, + ""total_tokens"": 397 +}","CAM,Mellowz #7,Flower,Bud,7" +gpt-3.5-turbo,2,5,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VpwM1YLtg5HtloZjE2CZI6JL18Q2,chat.completion,1687822182.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 394, + ""completion_tokens"": 21, + ""total_tokens"": 415 +}","Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg" +gpt-3.5-turbo,2,5,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VpwNsPcu7JbYdpvrhbFRIlNDPrE5,chat.completion,1687822183.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 389, + ""completion_tokens"": 17, + ""total_tokens"": 406 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0" +gpt-3.5-turbo,2,5,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VpwOjx0Fb0SNNI3HfIDZE6tqGKap,chat.completion,1687822184.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 394, + ""completion_tokens"": 17, + ""total_tokens"": 411 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-3.5-turbo,2,5,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VpwPf2BsJlHkddxDrYtTa0gfPQYe,chat.completion,1687822185.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 401, + ""completion_tokens"": 21, + ""total_tokens"": 422 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1.0" +gpt-3.5-turbo,2,5,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VpwSuYHmNPCwJy9itTV6mbphgg3S,chat.completion,1687822188.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 400, + ""completion_tokens"": 14, + ""total_tokens"": 414 +}","Cookies,Preroll,Joint,Triple Scoop,1" +gpt-3.5-turbo,2,5,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VpwTN9c9PSysmD3nSKEbiyAscJBK,chat.completion,1687822189.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape,Pod,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 389, + ""completion_tokens"": 15, + ""total_tokens"": 404 +}","STIIIZY,Vape,Pod,Birthday Cake,1.0" +gpt-3.5-turbo,2,5,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VpwUVnWTYhAOpnsI6SRfxpW6HToc,chat.completion,1687822190.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 391, + ""completion_tokens"": 21, + ""total_tokens"": 412 +}","Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1.0" +gpt-3.5-turbo,2,5,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VpwVNZeLUODhdiQSxSUwuXFB0SIe,chat.completion,1687822191.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Nano Blood Orange Bliss Indica,10,100"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 392, + ""completion_tokens"": 19, + ""total_tokens"": 411 +}","Kanha,Edible,Gummies,Nano Blood Orange Bliss Indica,10,100" +gpt-3.5-turbo,2,5,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VpyEGchvHCcONERRmB99STRy6zsA,chat.completion,1687822298.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 386, + ""completion_tokens"": 17, + ""total_tokens"": 403 +}","BOBBI HYLL,Flower,Bud,Indoor,3.5" +gpt-3.5-turbo,2,5,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VpyGzVzQD6qQF0mHogifqDD2m2oR,chat.completion,1687822300.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 386, + ""completion_tokens"": 14, + ""total_tokens"": 400 +}","Flav,Edible,Gummies,Blueberry Belts,100" +gpt-3.5-turbo,2,5,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VpyHfhZWXv3F94gL1TSzlcBZEgAm,chat.completion,1687822301.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Cartridge,Vape,Cherry Pie,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 18, + ""total_tokens"": 399 +}","Left Coast Extracts,Vape Cartridge,Vape,Cherry Pie,1.0" +gpt-3.5-turbo,2,5,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VpyHgJeqWUj148NKFGx033EqpTG2,chat.completion,1687822301.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 17, + ""total_tokens"": 405 +}","Minntz,Preroll,Joint,Emerald Cut,1.0" +gpt-3.5-turbo,2,5,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VpyIkWnlBu76L0mJJ6LsH0tw01gP,chat.completion,1687822302.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,Flower,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 386, + ""completion_tokens"": 17, + ""total_tokens"": 403 +}","The Growers Circle,Double Down,Indoor,Flower,3.5" +gpt-3.5-turbo,2,5,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VpyJtVelIzFzweK1YD1Pds1bZljV,chat.completion,1687822303.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Bud,Blue Dream Sugar Shake,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 382, + ""completion_tokens"": 14, + ""total_tokens"": 396 +}","Pacific Stone,Flower,Bud,Blue Dream Sugar Shake,14" +gpt-3.5-turbo,2,5,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VpyKTJY1Sg5BLc1FKpBuVb0DI7dW,chat.completion,1687822304.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,Prerolls,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 396, + ""completion_tokens"": 24, + ""total_tokens"": 420 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,Prerolls,12.5" +gpt-3.5-turbo,2,5,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VpyLCMb8XPuJjpuqsR84tfls2ATt,chat.completion,1687822305.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg,10ct"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 392, + ""completion_tokens"": 17, + ""total_tokens"": 409 +}","Flight Bites,Edible,Gummies,S'mores,100mg,10ct" +gpt-4,2,1,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VrVxNaFpGWLUvxruYt7IhLMqFes8,chat.completion,1687828233.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Edible,Watermelon Syrup,250mg,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 17, + ""total_tokens"": 139 +}","Chill Medicated,Edible,Watermelon Syrup,250mg,1" +gpt-4,2,1,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VrVyEJlCeZLUSsINGmvhoCmJt6ym,chat.completion,1687828234.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Space Cowboy,3.5g,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","Feelz,Flower,Space Cowboy,3.5g,3.5" +gpt-4,2,1,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VrW1wHclpIxJv7lTFEd5vIf42NbN,chat.completion,1687828237.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,PackedBud,Eighth,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 139, + ""completion_tokens"": 16, + ""total_tokens"": 155 +}","Champelli,PackedBud,Eighth,Xclusivo,3.5" +gpt-4,2,1,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VrW2mzDIAOjw9NQwiUX9NSqTAVTI,chat.completion,1687828238.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,FLOWERS 7G,Mellowz #7,7g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 117, + ""completion_tokens"": 15, + ""total_tokens"": 132 +}","CAM,FLOWERS 7G,Mellowz #7,7g" +gpt-4,2,1,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VrW4HsDHft5o78BVPk1bFUpvbne5,chat.completion,1687828240.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,n/a"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 23, + ""total_tokens"": 150 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,n/a" +gpt-4,2,1,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VrW7ceo07RNF6iZ0BVtE9NuIGhyp,chat.completion,1687828243.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 20, + ""total_tokens"": 142 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0" +gpt-4,2,1,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VrW9ISqEEKkqaOzYgpQPhyjni9DD,chat.completion,1687828245.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 17, + ""total_tokens"": 144 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5" +gpt-4,2,1,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VrWBuVYCPkWuQuoMvBm3tVE4exew,chat.completion,1687828247.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor Grown,Truffle Pupil,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 134, + ""completion_tokens"": 22, + ""total_tokens"": 156 +}","Ocean Breeze Cultivators,Blunt,Indoor Grown,Truffle Pupil,1g" +gpt-4,2,1,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VrWDY0QtpOcvfKIx2WgyoZT9zikb,chat.completion,1687828249.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Tiple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 15, + ""total_tokens"": 148 +}","Cookies,Preroll,Joint,Tiple Scoop,1.0" +gpt-4,2,1,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VrWEHdb9eZW9LcPX1pUkmXw8rzGj,chat.completion,1687828250.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape Pen,1G,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 19, + ""total_tokens"": 141 +}","STIIIZY,Birthday Cake,Pod,Vape Pen,1G,1.0" +gpt-4,2,1,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VrWI2S601cgzvAv9JdfjxDrXdOIL,chat.completion,1687828254.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Infused Joint,TangEray,6.25"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 17, + ""total_tokens"": 141 +}","Cookies,Preroll,Infused Joint,TangEray,6.25" +gpt-4,2,1,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VrWJbJmDP46DqCRc17Uvbw3JhV3Y,chat.completion,1687828255.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummy,Nano Blood Orange Bliss,Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 16, + ""total_tokens"": 141 +}","Kanha,Gummy,Nano Blood Orange Bliss,Indica,100mg" +gpt-4,2,1,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VrWLybfzOthntVyXGDlx2F7oZ1l1,chat.completion,1687828257.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 19, + ""total_tokens"": 138 +}","Fresca,Flower,Indoor,BOBBI HYLL,3.5" +gpt-4,2,1,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VrWOniObd24nWlBXkRMiWgEIM3KI,chat.completion,1687828260.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 15, + ""total_tokens"": 134 +}","Flav,Edible,Blueberry Belts,100mg,5" +gpt-4,2,1,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VrWRZKnYdnWM3w26GN6niz2taDYp,chat.completion,1687828263.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Cartridge,Cherry Pie,1g,5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 114, + ""completion_tokens"": 17, + ""total_tokens"": 131 +}","Left Coast Extracts,Vape Cartridge,Cherry Pie,1g,5" +gpt-4,2,1,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VrWTijBXyHAYjN8wARfEBtDtBJyg,chat.completion,1687828265.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 15, + ""total_tokens"": 136 +}","Minntz,Joint,Indoor,Emerald Cut,1g" +gpt-4,2,1,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VrWWQmWGoOSJPzpdPNNBHZ2Gyj3J,chat.completion,1687828268.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","The Growers Circle,Flower,Indoor,Double Down,3.5" +gpt-4,2,1,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VrWXiHjoxKMCIT2ZDiIReu09T14n,chat.completion,1687828269.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Grindable Flower,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 115, + ""completion_tokens"": 15, + ""total_tokens"": 130 +}","Pacific Stone,Flower,Grindable Flower,Blue Dream,14" +gpt-4,2,1,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VrWao9QsRWXnk8HEuv4f2vKfATIY,chat.completion,1687828272.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 24, + ""total_tokens"": 153 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5" +gpt-4,2,1,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VrWd5L8VX0KJms06EMIGN79GSrgp,chat.completion,1687828275.0,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 14, + ""total_tokens"": 139 +}","Flight Bites,Gummy,S'mores,10ct,100mg" +gpt-3.5-turbo,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VrWevSBAJ3NyEaO6ystQgzAlyjYv,chat.completion,1687828276.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Welcome to Chill Medicated! Our Watermelon syrup contains 250mg of THC and is perfect for those looking for a relaxing, yet flavorful experience. Please consume responsibly and start with a low dose if you are new to edibles. Enjoy!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 49, + ""total_tokens"": 106 +}","Welcome to Chill Medicated! Our Watermelon syrup contains 250mg of THC and is perfect for those looking for a relaxing, yet flavorful experience. Please consume responsibly and start with a low dose if you are new to edibles. Enjoy!" +gpt-3.5-turbo,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VrWh7upPOh4GX8M1w4WxUt1ff05U,chat.completion,1687828279.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello,\n\nThis is a system message to confirm the details of your recent order.\n\nOrder number: bl-111630024545\n\nProduct 1: Feelz - Space Cowboy, 3.5g\nProduct 2: FLOWERS 3.5G\n\nWe apologize for the missing information for product 3. Could you please let us know the name of the third product so that we can confirm the complete details of your order?\n\nThank you for choosing our services. Please feel free to contact us for any queries.\n\nBest regards,\nCustomer Support Team"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 113, + ""total_tokens"": 167 +}","Hello, + +This is a system message to confirm the details of your recent order. + +Order number: bl-111630024545 + +Product 1: Feelz - Space Cowboy, 3.5g +Product 2: FLOWERS 3.5G + +We apologize for the missing information for product 3. Could you please let us know the name of the third product so that we can confirm the complete details of your order? + +Thank you for choosing our services. Please feel free to contact us for any queries. + +Best regards, +Customer Support Team" +gpt-3.5-turbo,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VrWlLgFH7UVWpX4HEdVM2qSqrrnb,chat.completion,1687828283.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Dear customer,\n\nWe are pleased to inform you that your order (order number: fl-8voAjt83sD) of Champelli | Xclusivo 3.5g | Eighths, Champelli, PackedBud, Champelli | Xclusivo 3.5g, 3.5 has been confirmed and is being processed. \n\nOur team is working hard to ensure that your order is fulfilled accurately and efficiently. We will notify you once your order has been shipped along with the shipping details.\n\nIf you have any questions or concerns, please do not hesitate to contact us. Thank you for choosing us as your dispensary and we look forward to serving you.\n\nBest regards,\n\n[Dispensary Name]"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 74, + ""completion_tokens"": 150, + ""total_tokens"": 224 +}","Dear customer, + +We are pleased to inform you that your order (order number: fl-8voAjt83sD) of Champelli | Xclusivo 3.5g | Eighths, Champelli, PackedBud, Champelli | Xclusivo 3.5g, 3.5 has been confirmed and is being processed. + +Our team is working hard to ensure that your order is fulfilled accurately and efficiently. We will notify you once your order has been shipped along with the shipping details. + +If you have any questions or concerns, please do not hesitate to contact us. Thank you for choosing us as your dispensary and we look forward to serving you. + +Best regards, + +[Dispensary Name]" +gpt-3.5-turbo,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VrWqKplKcC0VnMTe2vbzIyVYmQWj,chat.completion,1687828288.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! It seems like you have ordered \""CAM - Mellowz #7 7g\"" and \""FLOWERS 7G\"" but there are some missing details. Can you please provide the missing information? Thank you!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 47, + ""total_tokens"": 99 +}","Hello there! It seems like you have ordered ""CAM - Mellowz #7 7g"" and ""FLOWERS 7G"" but there are some missing details. Can you please provide the missing information? Thank you!" +gpt-3.5-turbo,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VrWuePvXpUlm0G43oAl5n47syM4N,chat.completion,1687828292.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nThe requested item code is fl-fwJQL2AWnS, which is a \""Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg\"" tincture product. The product is currently available and ready to be shipped. Please provide your shipping and payment information to complete the transaction. Thank you for shopping with us!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 76, + ""total_tokens"": 138 +}","System Message: + +The requested item code is fl-fwJQL2AWnS, which is a ""Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg"" tincture product. The product is currently available and ready to be shipped. Please provide your shipping and payment information to complete the transaction. Thank you for shopping with us!" +gpt-3.5-turbo,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VrWxGwIUyODIWjwDGKPNc3ySSf7Z,chat.completion,1687828295.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds concentrate. This is a high-quality concentrate that is derived from premium cannabis flowers. It has been created using an advanced extraction process that preserves the natural flavors and terpenes of the original plant material. Each jar contains 1 gram of concentrate and is compatible with most vaporization devices. If you have any questions or concerns, please feel free to let me know!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 90, + ""total_tokens"": 147 +}","Hello! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds concentrate. This is a high-quality concentrate that is derived from premium cannabis flowers. It has been created using an advanced extraction process that preserves the natural flavors and terpenes of the original plant material. Each jar contains 1 gram of concentrate and is compatible with most vaporization devices. If you have any questions or concerns, please feel free to let me know!" +gpt-3.5-turbo,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VrX02py50onMBN5AOyVpHl0Ww69p,chat.completion,1687828298.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I'm a system message from the inventory department. We have received a new product with the ID code md-1159983. The product name is Baby Jeeter Peaches Infused Preroll 5pk and it weighs 2.5g. The brand name is Jeeter and the product type is Infused Prerolls. The categories for this product are nan and nan."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 81, + ""total_tokens"": 143 +}",Hello! I'm a system message from the inventory department. We have received a new product with the ID code md-1159983. The product name is Baby Jeeter Peaches Infused Preroll 5pk and it weighs 2.5g. The brand name is Jeeter and the product type is Infused Prerolls. The categories for this product are nan and nan. +gpt-3.5-turbo,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VrX3EejzONhpx79NCe3LrjRCgmbP,chat.completion,1687828301.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message:\n\nWarning - Product ID \""co-6WGV1Z0H\"" from the vendor \""Ocean Breeze Cultivators\"" with the following details:\n\n- Strain: Truffle Pupil\n- Cultivation: Indoor\n- Product Type: Blunt\n- Quantity: 1g\n\nis not available in the inventory. Please check the availability and update the product list accordingly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 69, + ""completion_tokens"": 81, + ""total_tokens"": 150 +}","System Message: + +Warning - Product ID ""co-6WGV1Z0H"" from the vendor ""Ocean Breeze Cultivators"" with the following details: + +- Strain: Truffle Pupil +- Cultivation: Indoor +- Product Type: Blunt +- Quantity: 1g + +is not available in the inventory. Please check the availability and update the product list accordingly." +gpt-3.5-turbo,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VrX64E9uoB6rSP7a2uefvwXfPn9R,chat.completion,1687828304.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nThank you for your order! Your order number is fl-doWkMzvFq2. You have ordered Cookies and a Triple Scoop Preroll 1g Joint. Your total order cost is 1.0. Your order will be processed shortly and you will receive a notification once it is ready for pickup or delivery. Thank you for choosing our service!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 68, + ""completion_tokens"": 80, + ""total_tokens"": 148 +}","System Message: + +Thank you for your order! Your order number is fl-doWkMzvFq2. You have ordered Cookies and a Triple Scoop Preroll 1g Joint. Your total order cost is 1.0. Your order will be processed shortly and you will receive a notification once it is ready for pickup or delivery. Thank you for choosing our service!" +gpt-3.5-turbo,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VrX95dorJDxnkYSi4ZDzqgkYqHOh,chat.completion,1687828307.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your message.\n\nBased on the information you provided, it appears that you're looking for a STIIIZY Birthday Cake Pod in 1g size. Unfortunately, I'm not exactly sure what you mean by \""bl-842922110296\"" and \""nan\"" as they aren't clear references. Are they product codes or something else?\n\nAlso, it seems that you're interested in VAPE PENS 1G, but I'm not sure what specific brand or type you're looking for.\n\nCould you please provide me with more details, so I can better assist you?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 120, + ""total_tokens"": 177 +}","Thank you for your message. + +Based on the information you provided, it appears that you're looking for a STIIIZY Birthday Cake Pod in 1g size. Unfortunately, I'm not exactly sure what you mean by ""bl-842922110296"" and ""nan"" as they aren't clear references. Are they product codes or something else? + +Also, it seems that you're interested in VAPE PENS 1G, but I'm not sure what specific brand or type you're looking for. + +Could you please provide me with more details, so I can better assist you?" +gpt-3.5-turbo,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VrXD862VssdVafmjAgPxpQt0N94r,chat.completion,1687828311.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Attention to all members of The Grower Circle,\n\nWe are excited to announce the latest addition to our product lineup: Cookies x TangEray Infused Joints! These indoor-grown, 1g pre-rolls are infused with premium TangEray oil for an unparalleled smoking experience.\n\nDue to the high demand for this product, we will be limiting purchases to one Infused Joint per member. Please note that this product contains THC and should be consumed responsibly.\n\nThank you for your continued support and happy smoking!\n\nSincerely,\nThe Grower Circle Team"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 111, + ""total_tokens"": 170 +}","Attention to all members of The Grower Circle, + +We are excited to announce the latest addition to our product lineup: Cookies x TangEray Infused Joints! These indoor-grown, 1g pre-rolls are infused with premium TangEray oil for an unparalleled smoking experience. + +Due to the high demand for this product, we will be limiting purchases to one Infused Joint per member. Please note that this product contains THC and should be consumed responsibly. + +Thank you for your continued support and happy smoking! + +Sincerely, +The Grower Circle Team" +gpt-3.5-turbo,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VrXIyGLPGu0zf5hxgN1oNR1fd9XN,chat.completion,1687828316.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Product information updated for co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg. The brand is Kanha and the strain is Nano Blood Orange Bliss Indica. The product is a gummy and comes in a pack of 10 with a total of 100mg of THC."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 76, + ""total_tokens"": 136 +}",System message: Product information updated for co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg. The brand is Kanha and the strain is Nano Blood Orange Bliss Indica. The product is a gummy and comes in a pack of 10 with a total of 100mg of THC. +gpt-3.5-turbo,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VrXKFhwWc5aM3fhkOUPFgyQbu0Er,chat.completion,1687828318.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Transaction confirmed: md-1242517\nCustomer name: BOBBI HYLL\nProduct: Indoor - 3.5g, Fresca, Flower, nan, 3.5\nPrice: $35.00\nThank you for your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 53, + ""total_tokens"": 107 +}","Transaction confirmed: md-1242517 +Customer name: BOBBI HYLL +Product: Indoor - 3.5g, Fresca, Flower, nan, 3.5 +Price: $35.00 +Thank you for your purchase!" +gpt-3.5-turbo,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VrXMGw92Md49oHDJAF9uCLaeifgl,chat.completion,1687828320.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I noticed that you recently purchased Blueberry Belts 100mg from Flav. How did you enjoy your purchase? Do you have any feedback or concerns regarding your order? Thank you for shopping with Flav."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 45, + ""total_tokens"": 99 +}",Hello! I noticed that you recently purchased Blueberry Belts 100mg from Flav. How did you enjoy your purchase? Do you have any feedback or concerns regarding your order? Thank you for shopping with Flav. +gpt-3.5-turbo,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VrXOCGWRJaq5Ny2zNOrKwXZoOubR,chat.completion,1687828322.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hi there! Thank you for your order md-1347497. We're happy to confirm that your Cherry Pie 1g Pod from Left Coast Extracts is now being prepared for shipment. This product is compatible with vape devices. If you have any further questions, please don't hesitate to contact us. Thank you for choosing our service!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 69, + ""total_tokens"": 118 +}","Hi there! Thank you for your order md-1347497. We're happy to confirm that your Cherry Pie 1g Pod from Left Coast Extracts is now being prepared for shipment. This product is compatible with vape devices. If you have any further questions, please don't hesitate to contact us. Thank you for choosing our service!" +gpt-3.5-turbo,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VrXRQY1Kf4Es6DZmg8tsvW6woWEs,chat.completion,1687828325.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: Cannot process the order. Please provide more complete information. The strain name and quantity are provided, but the rest of the required fields are incomplete. Please provide the following information: the order ID (co-XXXXX), the product form (joint, flower, edible, concentrate, etc.), the brand name, and the location (indoor, outdoor, greenhouse, etc.). Once complete, we'll be happy to process your order."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 90, + ""total_tokens"": 146 +}","System Message: Cannot process the order. Please provide more complete information. The strain name and quantity are provided, but the rest of the required fields are incomplete. Please provide the following information: the order ID (co-XXXXX), the product form (joint, flower, edible, concentrate, etc.), the brand name, and the location (indoor, outdoor, greenhouse, etc.). Once complete, we'll be happy to process your order." +gpt-3.5-turbo,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VrXUa8YhrWoHnjqdhR3T0YHBP11J,chat.completion,1687828328.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""We are sorry, but we do not have enough information to provide a response to your request. Please provide more context or clarification on what you need assistance with."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 32, + ""total_tokens"": 86 +}","We are sorry, but we do not have enough information to provide a response to your request. Please provide more context or clarification on what you need assistance with." +gpt-3.5-turbo,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VrXVS9ToQqooB96bfHvklV56bgZ6,chat.completion,1687828329.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your purchase of the Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. We hope you enjoy the high-quality flowers included in this product. If you have any questions or concerns, please do not hesitate to contact us. Happy rolling!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 50, + ""completion_tokens"": 54, + ""total_tokens"": 104 +}","Thank you for your purchase of the Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. We hope you enjoy the high-quality flowers included in this product. If you have any questions or concerns, please do not hesitate to contact us. Happy rolling!" +gpt-3.5-turbo,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VrXXoBWBWwPlNbsle6fUKw2dPsxr,chat.completion,1687828331.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for choosing to purchase The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g. We just wanted to confirm that your order code is co-847ZXF37, and that the product you have selected is a pack of five multi joints that weigh 2.5g each. Unfortunately, the other information you provided appears to be incomplete or missing. Please let us know if you have any further questions or concerns about your order. Thank you for choosing The Grower Circle!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 64, + ""completion_tokens"": 114, + ""total_tokens"": 178 +}","Hello! Thank you for choosing to purchase The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g. We just wanted to confirm that your order code is co-847ZXF37, and that the product you have selected is a pack of five multi joints that weigh 2.5g each. Unfortunately, the other information you provided appears to be incomplete or missing. Please let us know if you have any further questions or concerns about your order. Thank you for choosing The Grower Circle!" +gpt-3.5-turbo,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VrXbZy1YlJZAH5UnsiYEN6gSjeDL,chat.completion,1687828335.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. \n\nBased on the information you provided, it seems that you are inquiring about a product called Flight Bites - S'mores - Gummy - 10ct - 100mg. Unfortunately, without further information, I am unable to assist you with your query. \n\nCan you provide more details on what you need help with? I'll do my best to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 84, + ""total_tokens"": 144 +}","Hello! Thank you for your message. + +Based on the information you provided, it seems that you are inquiring about a product called Flight Bites - S'mores - Gummy - 10ct - 100mg. Unfortunately, without further information, I am unable to assist you with your query. + +Can you provide more details on what you need help with? I'll do my best to assist you." +gpt-3.5-turbo,2,1,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VrjBmBrgU01inb9ZIPIX9qI1gYv4,chat.completion,1687829053.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 22, + ""total_tokens"": 148 +}","Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF" +gpt-3.5-turbo,2,1,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VrjCpY8q4poLL3ouYG8Tgb4QFGMN,chat.completion,1687829054.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Space Cowboy,Flowers,3.5g,Blaze,111630024545"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 21, + ""total_tokens"": 144 +}","Feelz,Space Cowboy,Flowers,3.5g,Blaze,111630024545" +gpt-3.5-turbo,2,1,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VrjDIxAxVSvLSL8lzL6wCyYEClLp,chat.completion,1687829055.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Eighth,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 143, + ""completion_tokens"": 15, + ""total_tokens"": 158 +}","Champelli,Eighth,Packed Bud,Xclusivo,3.5" +gpt-3.5-turbo,2,1,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VrjEiRlhROTp0XIGcSpP2fyrRiEO,chat.completion,1687829056.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,7g,073133213364"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 17, + ""total_tokens"": 138 +}","CAM,Mellowz #7,Flower,7g,073133213364" +gpt-3.5-turbo,2,1,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VrjF9MFU6BiU2rmFiDRyVkAHdENN,chat.completion,1687829057.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Bubblegum Gelato,Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 131, + ""completion_tokens"": 30, + ""total_tokens"": 161 +}","Backpack Boyz,Bubblegum Gelato,Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS" +gpt-3.5-turbo,2,1,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VrjG1nZyCflQEYKi1vVLis5Mu1a4,chat.completion,1687829058.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,fl-dXE5cH45AQ"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 25, + ""total_tokens"": 151 +}","Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,fl-dXE5cH45AQ" +gpt-3.5-turbo,2,1,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VrjHJmX6W8meKRFh6JQYaL1GxZQ2,chat.completion,1687829059.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,11.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 131, + ""completion_tokens"": 17, + ""total_tokens"": 148 +}","Jeeter,Preroll,Infused Joint,Peaches,11.5" +gpt-3.5-turbo,2,1,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VrjJtTYCBLDb3d1esuYRzHqjZ0vU,chat.completion,1687829061.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 138, + ""completion_tokens"": 30, + ""total_tokens"": 168 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H" +gpt-3.5-turbo,2,1,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VrjLyN7G1QDje8pFxJgTlBcqRP1o,chat.completion,1687829063.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Triple Scoop Preroll,Joint,1.0g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 137, + ""completion_tokens"": 16, + ""total_tokens"": 153 +}","Cookies,Triple Scoop Preroll,Joint,1.0g" +gpt-3.5-turbo,2,1,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VrjLFDKUzEmvLVT6ldzxoKl8tdRN,chat.completion,1687829063.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,1g,Vape Pen,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 19, + ""total_tokens"": 145 +}","STIIIZY,Birthday Cake,Pod,1g,Vape Pen,1.0" +gpt-3.5-turbo,2,1,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VrjMcoJjhSLmGryKsmDhy9FagGpI,chat.completion,1687829064.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1g,co-6GGKA0GV"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 28, + ""total_tokens"": 156 +}","Cookies x The Grower Circle,TangEray,Indoor,Infused Joint,1g,co-6GGKA0GV" +gpt-3.5-turbo,2,1,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VrjOQyWMH60P1fMNQDIp4ILINjXw,chat.completion,1687829066.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edibles,Gummies,Blood Orange Bliss Indica,10 count,100mg."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 21, + ""total_tokens"": 150 +}","Kanha,Edibles,Gummies,Blood Orange Bliss Indica,10 count,100mg." +gpt-3.5-turbo,2,1,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VrjP5olqf7W88R9pfw1lQaGcWlci,chat.completion,1687829067.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,BOBBI HYLL,Indoor,Flower,3.5g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 21, + ""total_tokens"": 144 +}","Fresca,BOBBI HYLL,Indoor,Flower,3.5g." +gpt-3.5-turbo,2,1,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VrjQeTueEwtHRRO3gwdNvtyLO1dU,chat.completion,1687829068.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Blueberry Belts,Edible,100mg,9nEPGsnYtY"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 22, + ""total_tokens"": 145 +}","Flav,Blueberry Belts,Edible,100mg,9nEPGsnYtY" +gpt-3.5-turbo,2,1,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VrjQrVzWjAOkYtvsOljuK8F4gXUy,chat.completion,1687829068.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Pod,Cherry Pie,1g,34.99"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 18, + ""total_tokens"": 136 +}","Left Coast Extracts,Vape Pod,Cherry Pie,1g,34.99" +gpt-3.5-turbo,2,1,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VrjRMvs2l8EJd4PVecpSRPCvV9Hk,chat.completion,1687829069.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 23, + ""total_tokens"": 148 +}","Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T." +gpt-3.5-turbo,2,1,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VrjT3wfVoLtq3G6xksfVtLz4FloJ,chat.completion,1687829071.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 22, + ""total_tokens"": 145 +}","The Growers Circle,Double Down,Indoor,3.5g,5RAWYHYQ." +gpt-3.5-turbo,2,1,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VrjVafi1eGBXYfgmGBN0H3b0FzYO,chat.completion,1687829073.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Sugar Shake,Blue Dream,Roll Your Own,14g,Bag,Flower"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 20, + ""total_tokens"": 139 +}","Pacific Stone,Sugar Shake,Blue Dream,Roll Your Own,14g,Bag,Flower" +gpt-3.5-turbo,2,1,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VrjWQpcRxJTdr3f4BUd7totDZpdF,chat.completion,1687829074.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Multi Joint,Zoo Dawg x Cosa Nostra,The Grower Circle,5 pack,2.5g,co-847ZXF37."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 32, + ""total_tokens"": 165 +}","Multi Joint,Zoo Dawg x Cosa Nostra,The Grower Circle,5 pack,2.5g,co-847ZXF37." +gpt-3.5-turbo,2,1,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VrjXiUHiyUyH7udPXIjANVmAUrra,chat.completion,1687829075.0,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummy,S'mores,10 count,100mg CO\u2082 Extracted Cannabis Oil."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 21, + ""total_tokens"": 150 +}","Flight Bites,Gummy,S'mores,10 count,100mg COβ‚‚ Extracted Cannabis Oil." diff --git a/data/cookies_llm_eval_proc_preds.csv b/data/cookies_llm_eval_proc_preds.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dc72879010459f82f616bfb9b6a0ffda40b603a --- /dev/null +++ b/data/cookies_llm_eval_proc_preds.csv @@ -0,0 +1,5945 @@ +model,system_message,n_shot,prompt,completion,id,object,created,model.1,choices,usage,prediction,0,num_correct +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlTkjAqXNRWfltMPpr5v37uBJIsg,chat.completion,1687805032,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product.\n\nHowever, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 76, + ""total_tokens"": 130 +}","Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product. + +However, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs.","Hello! It looks like you mentioned a product: Chill Medicated Watermelon Syrup with 250mg potency. Chill Medicated is presumably the brand behind this product. + +However, it is unclear what kind of information you are looking for. Can you please provide more context or ask a specific question about this product? This will help me answer in a way that fits your needs.",0 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlTtGF3RGsngfKB1BXufxoTixX2v,chat.completion,1687805041,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are referring to a product called \""Feelz - Space Cowboy 3.5g.\"" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of \""FLOWERS 3.5G\"".\n\nPlease note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question.\n\nIf you have any other questions or need assistance with a different topic, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 117, + ""total_tokens"": 168 +}","Hello! It seems like you are referring to a product called ""Feelz - Space Cowboy 3.5g."" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of ""FLOWERS 3.5G"". + +Please note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question. + +If you have any other questions or need assistance with a different topic, feel free to ask!","Hello! It seems like you are referring to a product called ""Feelz - Space Cowboy 3.5g."" This product might be related to cannabis or hemp flowers, as it's mentioned in the context of ""FLOWERS 3.5G"". + +Please note that I am an AI language model, and I cannot provide any purchasing or legal information regarding this product. If you require more information, I would recommend researching the product through appropriate channels or contacting the specific vendor in question. + +If you have any other questions or need assistance with a different topic, feel free to ask!",0 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlU80b0m00VaiGymtj9dbqOggTgR,chat.completion,1687805056,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers.\n\nFor more information on the product or strain specifics, or if you have any other questions, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 71, + ""completion_tokens"": 91, + ""total_tokens"": 162 +}","Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers. + +For more information on the product or strain specifics, or if you have any other questions, feel free to ask.","Hello! It seems like you're interested in the Champelli | Xclusivo 3.5g Eighths. Champelli is a popular cannabis brand known for its high-quality products. The Xclusivo strain is packed in 3.5g (eighth of an ounce) quantities to provide a convenient amount for consumers. + +For more information on the product or strain specifics, or if you have any other questions, feel free to ask.",0 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlUHqbsG2kpFHDxAWfsryh6pHmC9,chat.completion,1687805065,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. \n\nIf you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects.\n\nSativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects.\n\nPlease keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 171, + ""total_tokens"": 220 +}","It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. + +If you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects. + +Sativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects. + +Please keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help.","It seems like you are looking for information about a cannabis strain called Mellowz #7. Unfortunately, I can't find any specific information about this strain. + +If you need information about cannabis strains in general, these strains typically come in three varieties: Sativa, Indica, and Hybrid, which are often characterized by their effects. + +Sativa is known for its uplifting and energetic properties, usually helpful for daytime use. Indica strains are more relaxing and calming, often used for stress relief and sleep. Hybrids are a combination of both Sativa and Indica, offering a middle ground with balanced effects. + +Please keep in mind that I am an AI language model, and I cannot endorse, promote or provide information about illegal substances. However, if you have general questions about cannabis use for educational purposes, I would be happy to try to help.",0 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlUYvcad2wahIMHavhDEkYrgvjpw,chat.completion,1687805082,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 72, + ""total_tokens"": 131 +}","Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard.","Hello! It seems like you are looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Unfortunately, I cannot provide specific information or advice on cannabis products. However, I can help answer general questions about tinctures and their use. Let me know if you have any questions in that regard.",0 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlUgs08gPqBY8QkkRbpnAF5L3HNW,chat.completion,1687805090,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0g\n\nDescription: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 116, + ""total_tokens"": 170 +}","Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0g + +Description: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses.","Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0g + +Description: Raw Garden's Pink Lemonade Crushed Diamonds is a 1g concentrate that offers an exciting and flavorful experience. Enjoy the high-quality cannabis extract infused with the invigorating and refreshing taste of pink lemonade for a truly memorable experience. Perfect for those who desire a potent and purely natural product without any additives, Raw Garden's Pink Lemonade Crushed Diamonds is sure to delight and dazzle your senses.",0 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlUrmmRo76QdZNoIlB618WR8Fihv,chat.completion,1687805101,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided:\n\nProduct ID: md-1159983\nProduct Name: Baby Jeeter Peaches\nBrand: Jeeter\nType: Infused Prerolls\nQuantity: 5 prerolls\nTotal Weight: 2.5 grams\n\nPlease let me know if there's any additional information you'd like to share or if you have any questions about this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 101, + ""total_tokens"": 160 +}","It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided: + +Product ID: md-1159983 +Product Name: Baby Jeeter Peaches +Brand: Jeeter +Type: Infused Prerolls +Quantity: 5 prerolls +Total Weight: 2.5 grams + +Please let me know if there's any additional information you'd like to share or if you have any questions about this product.","It seems like you are providing information about a product, specifically a pack of infused prerolls. Here's a breakdown of the details you provided: + +Product ID: md-1159983 +Product Name: Baby Jeeter Peaches +Brand: Jeeter +Type: Infused Prerolls +Quantity: 5 prerolls +Total Weight: 2.5 grams + +Please let me know if there's any additional information you'd like to share or if you have any questions about this product.",0 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlV2YraXRUzrQ66NiVDKF3QzAJcP,chat.completion,1687805112,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). \n\nUnfortunately, the information provided is limited, but I'll do my best to help.\n\nOcean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them.\n\nIn this case, \""Indoor\"" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a \""Blunt,\"" which is a slang term for a cigar hollowed out and filled with cannabis. The \""1g\"" indicates that this blunt contains 1 gram of cannabis.\n\nHowever, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product.\n\nKindly note to use cannabis products responsibly and according to your local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 220, + ""total_tokens"": 286 +}","Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). + +Unfortunately, the information provided is limited, but I'll do my best to help. + +Ocean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them. + +In this case, ""Indoor"" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a ""Blunt,"" which is a slang term for a cigar hollowed out and filled with cannabis. The ""1g"" indicates that this blunt contains 1 gram of cannabis. + +However, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product. + +Kindly note to use cannabis products responsibly and according to your local laws and regulations.","Hello! It looks like you're inquiring about Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). + +Unfortunately, the information provided is limited, but I'll do my best to help. + +Ocean Breeze Cultivators is a company that seems to focus on providing quality cannabis products. They offer Truffle Pupil, which might be a specific strain of cannabis cultivated by them. + +In this case, ""Indoor"" likely indicates that this particular strain is grown indoors, ensuring quality control and optimum growing conditions. The product you're looking at is a ""Blunt,"" which is a slang term for a cigar hollowed out and filled with cannabis. The ""1g"" indicates that this blunt contains 1 gram of cannabis. + +However, as an AI language model, I cannot provide any further information on the effects, taste, or medical benefits of this specific strain. It's recommended to check online reviews or consult with a medical professional if you have concerns about the product. + +Kindly note to use cannabis products responsibly and according to your local laws and regulations.",0 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlVQ3QjUDb0ufNTM4rOrlTtcH6dw,chat.completion,1687805136,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis.\n\nCookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts.\n\nIs there any further information or assistance you need regarding this product or cannabis in general?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 65, + ""completion_tokens"": 115, + ""total_tokens"": 180 +}","It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis. + +Cookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts. + +Is there any further information or assistance you need regarding this product or cannabis in general?","It seems like you're mentioning a product: Cookies Triple Scoop Preroll 1g, which is a pre-rolled joint made by Cookies containing 1 gram of cannabis. + +Cookies is a popular cannabis brand known for its high-quality products like Triple Scoop Preroll, which is a pre-rolled joint infused with 1 gram of premium cannabis. The Triple Scoop strain has gained popularity due to its delightful taste and potent effects, making it a favorite among cannabis enthusiasts. + +Is there any further information or assistance you need regarding this product or cannabis in general?",0 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlVbmPZJGx99GvShDFh7LmpbQJyo,chat.completion,1687805147,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product:\n\n1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress.\n\n2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience.\n\n3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels.\n\n4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects.\n\nPlease note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 297, + ""total_tokens"": 351 +}","Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product: + +1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress. + +2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience. + +3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels. + +4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects. + +Please note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g.","Hello! It seems like you are interested in the STIIIZY - Birthday Cake Pod 1g. This product is a vape pen cartridge containing 1 gram of the Birthday Cake strain. Here is some information about this product: + +1. Strain: Birthday Cake is an indica-dominant hybrid strain that is known for its sweet, vanilla-and-cake-scented aroma and balanced effects. Users often report feelings of relaxation and euphoria, making it an ideal choice for those looking to unwind or combat stress. + +2. Pod system: The STIIIZY pod system is specifically designed to allow for easy use and smooth vapor. These pods are compatible with STIIIZY batteries and are leak-proof, ensuring a clean and mess-free vaping experience. + +3. THC and CBD content: The exact levels of THC and CBD may vary, but this product typically contains a relatively high concentration of THC. Users should exercise caution when vaping this product, especially for those with low tolerance levels. + +4. Effectiveness: Many users have reported satisfying results with STIIIZY pods, appreciating their convenience, potency, and smooth vapor production. The Birthday Cake strain, in particular, may appeal to those seeking a flavorful option that provides relaxing effects. + +Please note that the availability and legality of this product may depend on your location. I recommend checking with your local regulations and finding a reputable retailer if you're interested in trying the STIIIZY - Birthday Cake Pod 1g.",0 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlW67EpfYEde31aEs26p9iJEecyh,chat.completion,1687805178,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 82, + ""total_tokens"": 138 +}","It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help.","It seems like you're talking about a product from the collaboration between Cookies and The Grower Circle. The product is called TangEray, which is a 1-gram indoor-infused joint. Unfortunately, you didn't provide any specific information or ask a question related to this product. If you would like more information or have any questions, please feel free to ask and I would be happy to help.",0 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlWFykUwxOhi8CMqDxjakijjrrRj,chat.completion,1687805187,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream.\n\nKanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience.\n\nPlease keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed.\n\nNote: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 172, + ""total_tokens"": 229 +}","Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream. + +Kanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience. + +Please keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed. + +Note: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations.","Hello! It looks like you're interested in Kanha Nano Blood Orange Bliss Indica Gummies. These are delicious gummies infused with 100mg of THC, split into 10 individual 10mg servings. They're formulated with a nano-molecular technology, which ensures a quicker and more efficient absorption of THC into your bloodstream. + +Kanha is known for its high-quality cannabis-infused gummies that provide a consistent edible experience. The Blood Orange Bliss flavor has been specifically designed for those looking for a relaxing indica experience. + +Please keep in mind that the effects of edibles may vary depending on your individual tolerance and metabolism. It's always best to start with a lower dose and gradually increase if needed. + +Note: This product is meant for adults 21 years old and over, and should only be used responsibly and in accordance with local laws and regulations.",0 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlWfotzgSyf5AuaAuhvkLIpnJLkn,chat.completion,1687805213,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query.\n\nPlease keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 102, + ""total_tokens"": 153 +}","Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query. + +Please keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask.","Hello! It seems like you are interested in the indoor-grown cannabis strain, BOBBI HYLL, with a product weight of 3.5g. This strain is under the flower category and comes from the brand Fresca. Unfortunately, the price is not provided in your query. + +Please keep in mind that cannabis is a controlled substance and should only be consumed legally and responsibly, in accordance with local laws and regulations. If you have any further questions or need more information, feel free to ask.",0 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlWtd8NCtmPk0H3IZrlBrZYCoPNu,chat.completion,1687805227,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC.\n\nPlease note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 168, + ""total_tokens"": 219 +}","Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC. + +Please note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues.","Hello! It seems like you're interested in Flav Blueberry Belts, a 100mg edible product. Flav is a company that creates various cannabis-infused products like edibles, vape cartridges, and more. Blueberry Belts is one of their popular edible offerings, with each belt containing fruity blueberry flavor and a balanced dose of THC. + +Please note, it's essential to consume edibles responsibly and start with a low dosage if you're new to cannabis or have a low tolerance. Since the effects of edibles take longer to kick in, usually between 30 minutes to 1 hour, be patient and wait before taking more. Keep in mind that consuming cannabis products should be done in accordance with local regulations and legal age limits. Always consult with a medical professional if you're considering using cannabis for specific health issues.",0 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlX8KXwc6wk9318ToBIcIM4ojV5N,chat.completion,1687805242,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given.\n\nCherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain.\n\nLeft Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices.\n\nNote that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 46, + ""completion_tokens"": 200, + ""total_tokens"": 246 +}","It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given. + +Cherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain. + +Left Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices. + +Note that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption.","It seems that you are looking for information related to a product: Cherry Pie 1g pod from Left Coast Extracts. This product is a vape pod, which is used in vape pens or vaporizers. I am an AI language model, and I do not promote or endorse any products. However, I can provide some general information based on the keywords you've given. + +Cherry Pie is a popular cannabis strain that is known for its fruity, sweet, and earthy taste with a hint of cherry flavor. It is typically characterized by its balanced effects, offering both relaxation and euphoria. This strain is often used to help relieve stress, anxiety, and pain. + +Left Coast Extracts is a company known for producing high-quality cannabis extracts. They offer a variety of vape cartridges and pods that are compatible with different vaporizer devices. + +Note that the use of cannabis and its products is regulated in many countries and states. Please make sure to check and follow your local laws and regulations concerning its consumption.",0 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlXXkro3sjQ0GB7HZyiISgMALe12,chat.completion,1687805267,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're referring to a product called \""Emerald Cut\"" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 70, + ""total_tokens"": 123 +}","Hello! It looks like you're referring to a product called ""Emerald Cut"" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!","Hello! It looks like you're referring to a product called ""Emerald Cut"" which is a 1g indoor joint by Minntz. Emerald Cut seems to be a cannabis strain, and Minntz is a cannabis brand known for its quality products. If you have any specific questions about this product or strain, feel free to ask!",0 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlXftcrR17dE2oYMfQ4uXdur9c0L,chat.completion,1687805275,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. \n\nTo better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing)."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 103, + ""total_tokens"": 154 +}","Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. + +To better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing).","Hello! It seems you're looking for information about The Growers Circle - Double Down - Indoor - 3.5g product. Unfortunately, I don't have enough details to give a proper response. + +To better assist you, please provide more information about the product you're referring to, such as the type of product (e.g., cannabis strain, edible, concentrate), any specific product details, or what kind of information you're looking for (e.g., effects, flavor profile, potency, pricing).",0 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlXr7crz27aAVL4K1s8oCsKJECTF,chat.completion,1687805287,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 123, + ""total_tokens"": 170 +}","Product: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages.","Product: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: Pacific Stone's Blue Dream Roll Your Own Sugar Shake is a 14-gram bag of high-quality cannabis shake perfect for rolling your own joints or using it for edibles and other infusions. This premium blend has a balanced uplifting and calming high, providing the quintessential Blue Dream experience. With its sweet berry aroma and flavors, it's perfect for daytime or evening use. Disclaimer: The actual THC and CBD content might vary, please check the product's label or packaging for accurate percentages.",0 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlY4RqaZM2pR5Ef98RaucGy4ronu,chat.completion,1687805300,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in \""The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g.\"" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts.\n\nPlease make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 139, + ""total_tokens"": 200 +}","Hello! It seems like you are interested in ""The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g."" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts. + +Please make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age.","Hello! It seems like you are interested in ""The Grower Circle Zoo Dawg x Cosa Nostra Multi Joint 5pk - 2.5g."" This product is a pack of five pre-rolled joints made from a blend of the Zoo Dawg and Cosa Nostra cannabis strains, with a total weight of 2.5 grams. The Grower Circle is known for producing high-quality cannabis products, and this combination of strains offers a unique experience for cannabis enthusiasts. + +Please make sure to check your local laws and regulations regarding cannabis consumption, as it may vary depending on your location. Additionally, always consume responsibly and only use cannabis products if you are of legal age.",0 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlYJNqDbwyZeHGVFfVdvfr1synGQ,chat.completion,1687805315,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview:\n\nProduct: Flight Bites - S'mores Gummy\nQuantity: 10 count\nTotal THC content: 100mg\n\nUnfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 92, + ""total_tokens"": 149 +}","Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview: + +Product: Flight Bites - S'mores Gummy +Quantity: 10 count +Total THC content: 100mg + +Unfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask.","Hello! It seems like you're looking for information on Flight Bites S'mores Gummy. Here's a brief overview: + +Product: Flight Bites - S'mores Gummy +Quantity: 10 count +Total THC content: 100mg + +Unfortunately, the remaining information you've provided is not clear (nan). If you have any specific questions regarding Flight Bites S'mores Gummy or need more information, please feel free to ask.",0 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlYXXaEHarak9k57uP9j0xeamqit,chat.completion,1687805329,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg,Edible"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 16, + ""total_tokens"": 137 +}","Chill Medicated,Watermelon,Syrup,250mg,Edible","Chill Medicated,Watermelon,Syrup,250mg,Edible",1 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlYaDODEkOanePMI3mqZ3qExxAZB,chat.completion,1687805332,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Space Cowboy,3.5g,Eighths"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 16, + ""total_tokens"": 134 +}","Feelz,Flower,Space Cowboy,3.5g,Eighths","Feelz,Flower,Space Cowboy,3.5g,Eighths",2 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlYd8Os1iBbUsLZQLerC9igxU4NQ,chat.completion,1687805335,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Eighths,Xclusivo,3.5g,Packed Bud"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 138, + ""completion_tokens"": 17, + ""total_tokens"": 155 +}","Champelli,Eighths,Xclusivo,3.5g,Packed Bud","Champelli,Eighths,Xclusivo,3.5g,Packed Bud",1 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlYgkpoZl51CDhhV5QJ0NH0mWoNZ,chat.completion,1687805338,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,7g,Strain,28.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 116, + ""completion_tokens"": 19, + ""total_tokens"": 135 +}","CAM,Mellowz #7,Flower,7g,Strain,28.0","CAM,Mellowz #7,Flower,7g,Strain,28.0",1 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlYiGi0ZdZ8JReOvwI1ZKoDY5ML2,chat.completion,1687805340,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 21, + ""total_tokens"": 147 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg",0 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlYl7OiCCT2OgVMg5PjEf22hwk3n,chat.completion,1687805343,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 20, + ""total_tokens"": 141 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1g,1.0",2 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlYoyitK2kvmxoSm5V13tNqC4m6c,chat.completion,1687805346,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 126, + ""completion_tokens"": 17, + ""total_tokens"": 143 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlYrxNTh934MSy6dx7217HGy75Bu,chat.completion,1687805349,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 20, + ""total_tokens"": 153 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g",2 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlYv20nevHI3YLfBTdRNkFReuKfR,chat.completion,1687805353,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 132, + ""completion_tokens"": 16, + ""total_tokens"": 148 +}","Cookies,Preroll,Joint,Triple Scoop,1.0","Cookies,Preroll,Joint,Triple Scoop,1.0",4 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlYxSUsNn2ocwVLFRjzCCFL2N1F9,chat.completion,1687805355,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Pod,1G,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 16, + ""total_tokens"": 137 +}","STIIIZY,Pod,1G,Birthday Cake,1.0","STIIIZY,Pod,1G,Birthday Cake,1.0",2 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlZ1KSt0BTGNncirPDed8YKdYJVa,chat.completion,1687805359,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Infused Joint,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 123, + ""completion_tokens"": 15, + ""total_tokens"": 138 +}","Cookies,Preroll,Infused Joint,TangEray,1","Cookies,Preroll,Infused Joint,TangEray,1",5 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlZ4RiZs5w7f20DZBJ9sJGUpOi8C,chat.completion,1687805362,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummies,Blood Orange Bliss,Indica,100"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 14, + ""total_tokens"": 138 +}","Kanha,Gummies,Blood Orange Bliss,Indica,100","Kanha,Gummies,Blood Orange Bliss,Indica,100",1 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlZ6htAo36Zg8Ad3OMIydlQXZFXa,chat.completion,1687805364,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 19, + ""total_tokens"": 137 +}","Fresca,Flower,Indoor,BOBBI HYLL,3.5","Fresca,Flower,Indoor,BOBBI HYLL,3.5",4 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlZB7P40LUm3Kv5jirqP0wWeA2bh,chat.completion,1687805369,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 15, + ""total_tokens"": 133 +}","Flav,Edible,Blueberry Belts,100mg,1","Flav,Edible,Blueberry Belts,100mg,1",2 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlZDUikYDY6DRQ1J38yMwwZxpyQL,chat.completion,1687805371,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Cherry Pie,1g,Pod"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 113, + ""completion_tokens"": 15, + ""total_tokens"": 128 +}","Left Coast Extracts,Vape,Cherry Pie,1g,Pod","Left Coast Extracts,Vape,Cherry Pie,1g,Pod",2 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlZFfRgdf9pkWhi0p7eDe4ILN59R,chat.completion,1687805373,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Standard Joint,Emerald Cut,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 120, + ""completion_tokens"": 17, + ""total_tokens"": 137 +}","Minntz,Preroll,Standard Joint,Emerald Cut,1g","Minntz,Preroll,Standard Joint,Emerald Cut,1g",3 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlZI2WawrxAa34Kbsn5CC2Hfc3Mk,chat.completion,1687805376,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 17, + ""total_tokens"": 135 +}","The Growers Circle,Flower,Indoor,Double Down,3.5","The Growers Circle,Flower,Indoor,Double Down,3.5",4 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlZLsymqMssRZJLYkFbh7MLsQaQd,chat.completion,1687805379,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 114, + ""completion_tokens"": 14, + ""total_tokens"": 128 +}","Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g","Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g",1 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlZSI1osBMyc3nzsnKjdkERsy0Iu,chat.completion,1687805386,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 24, + ""total_tokens"": 152 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5",3 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlZXkc7tOJGf6ulDzFVmio7OqsWa,chat.completion,1687805391,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edibles,Gummies,S'mores,10,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 16, + ""total_tokens"": 140 +}","Flight Bites,Edibles,Gummies,S'mores,10,100mg","Flight Bites,Edibles,Gummies,S'mores,10,100mg",2 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlZZdb2ssNEKS5WMNPQT3gFIZzqI,chat.completion,1687805393,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 180, + ""completion_tokens"": 16, + ""total_tokens"": 196 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg","Chill Medicated,Syrup,Edible,Watermelon,250mg",1 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlZcO9I6Ac5xLI0ND2kqnSOkXIyY,chat.completion,1687805396,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 177, + ""completion_tokens"": 14, + ""total_tokens"": 191 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlZeuwvzcRWvarKL0qSkDaBxMVqT,chat.completion,1687805398,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 197, + ""completion_tokens"": 16, + ""total_tokens"": 213 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5","Champelli,Flower,Packed Bud,Xclusivo,3.5",4 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlZhi5EtiMRXNYZTrZRjYwmMxf6l,chat.completion,1687805401,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 175, + ""completion_tokens"": 13, + ""total_tokens"": 188 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlZjlw5OsQ1Ou4lHpWbuZa57yvRp,chat.completion,1687805403,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,nan"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 185, + ""completion_tokens"": 23, + ""total_tokens"": 208 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,nan","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,nan",2 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlZmncx08hMWhrU3PxRGAyoHOdUJ,chat.completion,1687805406,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 180, + ""completion_tokens"": 17, + ""total_tokens"": 197 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0",0 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlZpuciECauTTbWeYaBSRaDEK656,chat.completion,1687805409,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 185, + ""completion_tokens"": 17, + ""total_tokens"": 202 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlZsGVi2Wvno8tHn7jBYwBcOJ7gW,chat.completion,1687805412,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 192, + ""completion_tokens"": 19, + ""total_tokens"": 211 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlZvgtRCWcNFgeBljmZUqX9FRUFC,chat.completion,1687805415,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 191, + ""completion_tokens"": 16, + ""total_tokens"": 207 +}","Cookies,Preroll,Joint,Triple Scoop,1.0","Cookies,Preroll,Joint,Triple Scoop,1.0",4 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlZyjC9GLKDVzWLZWcwnoirt2HcG,chat.completion,1687805418,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Pod,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 180, + ""completion_tokens"": 16, + ""total_tokens"": 196 +}","STIIIZY,Vape Pen,Pod,Birthday Cake,1.0","STIIIZY,Vape Pen,Pod,Birthday Cake,1.0",2 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vla05TbMcsebkvriwSHTfarr20Rt,chat.completion,1687805420,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 182, + ""completion_tokens"": 19, + ""total_tokens"": 201 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1",2 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vla3vXnDxyy0Eoasio9Lw2ssvKDN,chat.completion,1687805423,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummies,Edibles,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 17, + ""total_tokens"": 200 +}","Kanha,Gummies,Edibles,Blood Orange Bliss Indica,100mg","Kanha,Gummies,Edibles,Blood Orange Bliss Indica,100mg",1 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vla5dlWUeFzfIcKWgfNe8u1Dafga,chat.completion,1687805425,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,Bobbi Hyll,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 177, + ""completion_tokens"": 18, + ""total_tokens"": 195 +}","Fresca,Flower,Indoor,Bobbi Hyll,3.5","Fresca,Flower,Indoor,Bobbi Hyll,3.5",3 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vla9wHjyPw1tRN8qet9FGRHN4yRP,chat.completion,1687805429,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 177, + ""completion_tokens"": 15, + ""total_tokens"": 192 +}","Flav,Edible,Blueberry Belts,100mg,1","Flav,Edible,Blueberry Belts,100mg,1",2 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlaCm13URB0vPP2bYqJJCdUXPOLF,chat.completion,1687805432,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 172, + ""completion_tokens"": 14, + ""total_tokens"": 186 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1","Left Coast Extracts,Vape,Pod,Cherry Pie,1",4 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlaEv13ifkNEQDkxtjEMGcUp61aH,chat.completion,1687805434,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 179, + ""completion_tokens"": 15, + ""total_tokens"": 194 +}","Minntz,Preroll,Joint,Emerald Cut,1","Minntz,Preroll,Joint,Emerald Cut,1",5 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlaITX7YEtzcXC241EGCY8pT5DYv,chat.completion,1687805438,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 177, + ""completion_tokens"": 17, + ""total_tokens"": 194 +}","The Growers Circle,Flower,Indoor,Double Down,3.5","The Growers Circle,Flower,Indoor,Double Down,3.5",4 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlaKcpXG6M9nHsCFW0sW1YjZg2X3,chat.completion,1687805440,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 173, + ""completion_tokens"": 13, + ""total_tokens"": 186 +}","Pacific Stone,Flower,Shake,Blue Dream,14","Pacific Stone,Flower,Shake,Blue Dream,14",3 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlaMZfFqc7DczRXTTPrQlrlvDXVB,chat.completion,1687805442,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 187, + ""completion_tokens"": 24, + ""total_tokens"": 211 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5",2 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlaQ5U5ph304FEdvEEs4bYAh15VS,chat.completion,1687805446,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummy,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 14, + ""total_tokens"": 197 +}","Flight Bites,Edible,Gummy,S'mores,100mg","Flight Bites,Edible,Gummy,S'mores,100mg",2 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlaV4buGanWuL5AlcGEJXuz0Ipg7,chat.completion,1687805451,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 16, + ""total_tokens"": 275 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg","Chill Medicated,Syrup,Edible,Watermelon,250mg",1 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlaXrGagcskubdLOdmqS1Xug0tOX,chat.completion,1687805453,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 14, + ""total_tokens"": 270 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlaaeW5FgOLypxs09eKFOR070zHd,chat.completion,1687805456,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 276, + ""completion_tokens"": 15, + ""total_tokens"": 291 +}","Champelli,Flower,Bud,Xclusivo,3.5","Champelli,Flower,Bud,Xclusivo,3.5",5 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlafV2fhl2SFJI4tFGf45j4lslHW,chat.completion,1687805461,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 254, + ""completion_tokens"": 13, + ""total_tokens"": 267 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlahqwP0W2VTfsiNwl0TouI7iDb4,chat.completion,1687805463,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000 mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 21, + ""total_tokens"": 285 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000 mg","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000 mg",0 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlakGaAenEFRX1DfuRxidf8oi3Mj,chat.completion,1687805466,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 16, + ""total_tokens"": 275 +}","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1",4 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlaoI61LVczmWOchaB8PRAh0q0Wy,chat.completion,1687805470,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 17, + ""total_tokens"": 281 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vlar8ZDcBe3OO49heb7h09xcMWne,chat.completion,1687805473,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 19, + ""total_tokens"": 290 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlawfOZy4p3plt6P8HfPXUhsSKFi,chat.completion,1687805478,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 14, + ""total_tokens"": 284 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vlb02fRZ23PytFFbg0nxK3MV05RQ,chat.completion,1687805482,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pod,Birthday Cake,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 13, + ""total_tokens"": 272 +}","STIIIZY,Vape Pod,Birthday Cake,1g","STIIIZY,Vape Pod,Birthday Cake,1g",0 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vlb2Patjt6P7afvUrjGNXE0EKKcC,chat.completion,1687805484,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 261, + ""completion_tokens"": 19, + ""total_tokens"": 280 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1",2 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlb4ursPn6c9RMaifQxWE2NuJsv2,chat.completion,1687805486,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 17, + ""total_tokens"": 279 +}","Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg","Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg",2 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlb7wQcJzCYB7P1IO55fPD7X2Thw,chat.completion,1687805489,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 15, + ""total_tokens"": 271 +}","Fresca,Flower,Bud,Indoor,3.5","Fresca,Flower,Bud,Indoor,3.5",4 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vlb9Q6e5Ov7PC29lQmdIGbbFM5xb,chat.completion,1687805491,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummy,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 15, + ""total_tokens"": 271 +}","Flav,Edible,Gummy,Blueberry Belts,100mg","Flav,Edible,Gummy,Blueberry Belts,100mg",2 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlbC2AwqZ0LJGzN8m3rWekpkrNo2,chat.completion,1687805494,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 251, + ""completion_tokens"": 14, + ""total_tokens"": 265 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1","Left Coast Extracts,Vape,Pod,Cherry Pie,1",4 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlbExv1hzqFhR7OeRO9VnyKQAng8,chat.completion,1687805496,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 258, + ""completion_tokens"": 15, + ""total_tokens"": 273 +}","Minntz,Preroll,Joint,Emerald Cut,1","Minntz,Preroll,Joint,Emerald Cut,1",5 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlbGDdnOWPUTjd2Xf8zXfdchsvVG,chat.completion,1687805498,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Bud,Double Down Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 256, + ""completion_tokens"": 17, + ""total_tokens"": 273 +}","The Growers Circle,Flower,Bud,Double Down Indoor,3.5","The Growers Circle,Flower,Bud,Double Down Indoor,3.5",4 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlbIrZARlZnOrPB2qheN1MsyjQDW,chat.completion,1687805500,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 252, + ""completion_tokens"": 13, + ""total_tokens"": 265 +}","Pacific Stone,Flower,Shake,Blue Dream,14","Pacific Stone,Flower,Shake,Blue Dream,14",3 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlbLXH2MXBvee634I2k83HZcIvvx,chat.completion,1687805503,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,5pk,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 266, + ""completion_tokens"": 23, + ""total_tokens"": 289 +}","The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,5pk,2.5","The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,5pk,2.5",0 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlbOkq2Wk1OYPz1v5Mb9eByaFyKf,chat.completion,1687805506,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummy,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 14, + ""total_tokens"": 276 +}","Flight Bites,Edible,Gummy,S'mores,100mg","Flight Bites,Edible,Gummy,S'mores,100mg",2 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlbR0Fw3tAT28qPZSgcPjDdWPdPs,chat.completion,1687805509,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Edible,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 16, + ""total_tokens"": 392 +}","Chill Medicated,Edible,Syrup,Watermelon,250mg","Chill Medicated,Edible,Syrup,Watermelon,250mg",2 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlbUJnbgXbMB9kX96PUYmHzALFc0,chat.completion,1687805512,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 14, + ""total_tokens"": 387 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlbXX2rLIZecaI2CrTvqBQZBfLHV,chat.completion,1687805515,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 15, + ""total_tokens"": 408 +}","Champelli,Flower,Bud,Xclusivo,3.5","Champelli,Flower,Bud,Xclusivo,3.5",5 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlbaYfNXVBU7N7FgIem74U9CvCpa,chat.completion,1687805518,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 371, + ""completion_tokens"": 13, + ""total_tokens"": 384 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vlbcz21om7wf2g2HzLs7MoPJSwF4,chat.completion,1687805520,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000,nan"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 22, + ""total_tokens"": 403 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000,nan","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000,nan",2 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlbgSgiQr2qPgepBIJGXANBegpdH,chat.completion,1687805524,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 15, + ""total_tokens"": 391 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",5 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vlbj5lUdOSTxQ7SymeUb9jTDcNAR,chat.completion,1687805527,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 17, + ""total_tokens"": 398 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlbmUXfjtlHs2y29sxI4yNYiqmTC,chat.completion,1687805530,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 19, + ""total_tokens"": 407 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlbqAuC3CcsU8UdA7DtTCKwdIFqJ,chat.completion,1687805534,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 387, + ""completion_tokens"": 14, + ""total_tokens"": 401 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vlbtr5OucD5nTOVEtAy05w3eyJNm,chat.completion,1687805537,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Cartridge,Birthday Cake,1g,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 16, + ""total_tokens"": 392 +}","STIIIZY,Vape Cartridge,Birthday Cake,1g,1","STIIIZY,Vape Cartridge,Birthday Cake,1g,1",2 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlbvK2t2S5vLbXufUmrzNwoP2uI7,chat.completion,1687805539,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 378, + ""completion_tokens"": 20, + ""total_tokens"": 398 +}","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1",4 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlby8sCiL7SScOwosffNmeS9SCo3,chat.completion,1687805542,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Blood Orange Bliss,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 15, + ""total_tokens"": 394 +}","Kanha,Edible,Gummies,Blood Orange Bliss,100mg","Kanha,Edible,Gummies,Blood Orange Bliss,100mg",3 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlc0UV6tKOwSajk0XNgBBAYEv1hn,chat.completion,1687805544,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 15, + ""total_tokens"": 388 +}","Fresca,Flower,Bud,Indoor,3.5","Fresca,Flower,Bud,Indoor,3.5",4 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vlc3gyV8ktjZmUXLzjS0D5KJxWdt,chat.completion,1687805547,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 14, + ""total_tokens"": 387 +}","Flav,Edible,Gummies,Blueberry Belts,5","Flav,Edible,Gummies,Blueberry Belts,5",3 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vlc7HKhyWt6UElO5UxwID2olXG8u,chat.completion,1687805551,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Cartridge,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 368, + ""completion_tokens"": 16, + ""total_tokens"": 384 +}","Left Coast Extracts,Vape Cartridge,Pod,Cherry Pie,1","Left Coast Extracts,Vape Cartridge,Pod,Cherry Pie,1",3 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vlc9CmFOowYKcw32LHlwoqSIJawL,chat.completion,1687805553,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 375, + ""completion_tokens"": 15, + ""total_tokens"": 390 +}","Minntz,Preroll,Joint,Emerald Cut,1","Minntz,Preroll,Joint,Emerald Cut,1",5 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlcBqedRBh2CbDOk7IUHbp9IWKrC,chat.completion,1687805555,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Bud,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 373, + ""completion_tokens"": 16, + ""total_tokens"": 389 +}","The Growers Circle,Flower,Bud,Double Down,3.5","The Growers Circle,Flower,Bud,Double Down,3.5",5 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlcEIfJbmVHoTZEjLEcwbXrk65aW,chat.completion,1687805558,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Bud,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 369, + ""completion_tokens"": 12, + ""total_tokens"": 381 +}","Pacific Stone,Flower,Bud,Blue Dream,14","Pacific Stone,Flower,Bud,Blue Dream,14",4 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlcGKnzU578noSdrSoiogReualEE,chat.completion,1687805560,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 383, + ""completion_tokens"": 23, + ""total_tokens"": 406 +}","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5",3 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlcJD68jeEm1guHPU7VYJoWjLr7D,chat.completion,1687805563,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 14, + ""total_tokens"": 393 +}","Flight Bites,Edible,Gummies,S'mores,100mg","Flight Bites,Edible,Gummies,S'mores,100mg",3 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlcLAoSfGbbqW9UIGm5QMc7eah9L,chat.completion,1687805565,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes.\n\nPlease note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 103, + ""total_tokens"": 158 +}","It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes. + +Please note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes.","It seems like you are looking for information about Chill Medicated - Watermelon Syrup with 250mg content. Chill Medicated is known for producing cannabis-infused syrups, and their Watermelon flavored syrup is often used for relaxation and recreational purposes. + +Please note that I am an AI language model, and I am not endorsing or promoting the use of cannabis products. It's important to follow local laws and regulations, as well as consult with a healthcare professional if you are considering using cannabis for medicinal purposes.",0 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlcVcxS9IegeWVDkFy2z8aCcqBs7,chat.completion,1687805575,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information regarding a product called \""Feelz - Space Cowboy 3.5g\"" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 62, + ""total_tokens"": 114 +}","Hello! It seems like you are looking for information regarding a product called ""Feelz - Space Cowboy 3.5g"" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help.","Hello! It seems like you are looking for information regarding a product called ""Feelz - Space Cowboy 3.5g"" which falls under the category of FLOWERS 3.5G. Please provide more context or specific questions you would like answered, and I will do my best to help.",0 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlceM4xLntrlxlinLnUJd4Km8vMl,chat.completion,1687805584,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. \n\nChampelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis.\n\nTo learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area.\n\nPlease note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location.\n\nIf you have any other questions or need further assistance, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 72, + ""completion_tokens"": 185, + ""total_tokens"": 257 +}","Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. + +Champelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis. + +To learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area. + +Please note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location. + +If you have any other questions or need further assistance, feel free to ask!","Hello! It looks like you're interested in Champelli Xclusivo 3.5g Eighths. + +Champelli Xclusivo is a premium cannabis product known for its high-quality and potent strains. Their 3.5g eighths offer a variety of popular strains which cater to different preferences and needs. PackedBud might be a distributor that provides these products, ensuring that you receive fresh and potent cannabis. + +To learn more or purchase Champelli Xclusivo 3.5g Eighths, I recommend visiting your local dispensary or an online cannabis store, depending on the legality and availability in your area. + +Please note that I am an AI language model, and I am unable to facilitate any purchases or transactions. It's also important to follow the laws and regulations regarding cannabis use in your location. + +If you have any other questions or need further assistance, feel free to ask!",0 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlcvsyAP6UCMxGoViTeMJEorRV4P,chat.completion,1687805601,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about the product \""CAM - Mellowz #7,\"" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 50, + ""completion_tokens"": 79, + ""total_tokens"": 129 +}","Hello! It looks like you're inquiring about the product ""CAM - Mellowz #7,"" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!","Hello! It looks like you're inquiring about the product ""CAM - Mellowz #7,"" which is a 7-gram package of cannabis flowers. Unfortunately, there is not much information provided, so I cannot give more specific details about this product. If you have any questions or need more information, please provide more context or details, and I will do my best to help!",0 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vld3cnmYqFqj77789o1B403tNS6U,chat.completion,1687805609,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 48, + ""total_tokens"": 108 +}","Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product.","Hello! It seems like you are interested in the Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. To better assist you, please provide more information or ask a specific question about the product.",0 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vld89t8QYfwBULmGxBauA0r7P9gp,chat.completion,1687805614,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate.\n\nRaw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles.\n\nProduct: Raw Garden Pink Lemonade Crushed Diamonds 1g\nBrand: Raw Garden\nCategory: Concentrate\nQuantity: 1.0 gram\n\nPlease remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 134, + ""total_tokens"": 189 +}","Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate. + +Raw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles. + +Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0 gram + +Please remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage.","Hello! It looks like you're inquiring about the Raw Garden Pink Lemonade Crushed Diamonds 1g concentrate. + +Raw Garden is a well-respected brand known for its quality cannabis products. The Pink Lemonade Crushed Diamonds concentrate is a high-potency extract derived from the cannabis plant. Concentrates like this one are often used for their intense effects and unique flavor profiles. + +Product: Raw Garden Pink Lemonade Crushed Diamonds 1g +Brand: Raw Garden +Category: Concentrate +Quantity: 1.0 gram + +Please remember to always consume cannabis products responsibly, and consult a medical professional if you have any concerns or questions regarding their usage.",0 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VldLx6QUKkKfE5q9odEeZVJwYxhW,chat.completion,1687805627,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g)\nBrand: Jeeter\nCategory: Infused Prerolls\n\nThis pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 105, + ""total_tokens"": 165 +}","Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g) +Brand: Jeeter +Category: Infused Prerolls + +This pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke.","Product Name: Baby Jeeter Peaches Infused Preroll 5pk (2.5g) +Brand: Jeeter +Category: Infused Prerolls + +This pack includes five infused prerolls (each containing 0.5 grams of flower) for a total of 2.5 grams. The Baby Jeeter Peaches prerolls by Jeeter offer an enjoyable smoking experience with a delicious peach flavor. These infused prerolls are perfect for anyone looking to unwind and enjoy a tasty, hassle-free smoke.",0 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VldYbCjPPC839qSooOjqtjTYyjo7,chat.completion,1687805640,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on a product called \""Truffle Pupil\"" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt.\n\nUnfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt.\n\nOcean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The \""Truffle Pupil\"" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages.\n\nWhen smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic.\n\nPlease let me know if you have any other questions or need information on any other topic. I'm here to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 253, + ""total_tokens"": 320 +}","Hello! It seems like you're looking for information on a product called ""Truffle Pupil"" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt. + +Unfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt. + +Ocean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The ""Truffle Pupil"" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages. + +When smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic. + +Please let me know if you have any other questions or need information on any other topic. I'm here to help!","Hello! It seems like you're looking for information on a product called ""Truffle Pupil"" by Ocean Breeze Cultivators. It is a 1g Indoor Blunt. + +Unfortunately, I don't have sufficient information about this specific product. However, I can tell you a little about Ocean Breeze Cultivators and general tips for smoking a blunt. + +Ocean Breeze Cultivators is a cannabis company that grows and produces various strains of cannabis products. The ""Truffle Pupil"" is likely to be one of their strain offerings. The effects and potency of this specific strain might vary, so it's recommended that you consult the packaging or dispensary for more information on THC and CBD percentages. + +When smoking a blunt, it's important to take your time and enjoy the experience. Start by inhaling slowly and be cautious not to take in too much smoke at once. Take breaks between puffs and ensure you have water or another beverage handy to stay hydrated. Also, remember that sharing a blunt with others can carry the risk of spreading germs, so it's best to enjoy it individually, especially during the ongoing pandemic. + +Please let me know if you have any other questions or need information on any other topic. I'm here to help!",0 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vle7ITXk2D9234jwInXFdgwcaSoY,chat.completion,1687805675,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users.\n\nProduct: Cookies Triple Scoop Preroll\nType: Joint\nWeight: 1 gram\nBrand: Cookies\n\nPlease let me know if you need any more information or have any questions about this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 124, + ""total_tokens"": 190 +}","It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users. + +Product: Cookies Triple Scoop Preroll +Type: Joint +Weight: 1 gram +Brand: Cookies + +Please let me know if you need any more information or have any questions about this product.","It looks like you are interested in the Cookies Triple Scoop Preroll 1g joint. Cookies Triple Scoop is a popular cannabis strain that offers a delightful mix of flavors and effects. With a 1-gram preroll, you can enjoy the convenience of a pre-rolled joint without the hassle of rolling it yourself. Triple Scoop offers a uniquely satisfying experience for both recreational and medical users. + +Product: Cookies Triple Scoop Preroll +Type: Joint +Weight: 1 gram +Brand: Cookies + +Please let me know if you need any more information or have any questions about this product.",0 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VleQ2KysWpsoPwcl3ZI91oM1KAJ7,chat.completion,1687805694,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 80, + ""total_tokens"": 135 +}","Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!","Hello! It looks like you are mentioning the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of cannabis concentrate. The flavor profile is inspired by a birthday cake, which is usually sweet and creamy. Vape pens like this are popular for their convenience and discreet use. If you need any additional information, please don't hesitate to ask!",0 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VleaFAnv4qWX3G29gNiEAsR4IKVh,chat.completion,1687805704,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience.\n\nUnfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved:\n\nInfused Joints: \nInfused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the \""infused\"" label and can offer a stronger, more potent high compared to regular joints.\n\nCookies:\nCookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products.\n\nThe Grower Circle:\nThe Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products.\n\nAs for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 300, + ""total_tokens"": 357 +}","It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience. + +Unfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved: + +Infused Joints: +Infused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the ""infused"" label and can offer a stronger, more potent high compared to regular joints. + +Cookies: +Cookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products. + +The Grower Circle: +The Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products. + +As for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region.","It seems you are looking for information on TangEray, an indoor infused joint by Cookies x The Grower Circle. TangEray is a 1-gram cannabis joint that provides a potent and flavorful experience. + +Unfortunately, the information you provided is not enough for me to give a detailed response. Nonetheless, here's some basic information about infused joints and the two brands involved: + +Infused Joints: +Infused joints, also known as pre-rolls, are pre-made cannabis joints that are filled with ground cannabis flower and often enhanced with cannabis concentrates, such as wax or oil. These concentrates are responsible for the ""infused"" label and can offer a stronger, more potent high compared to regular joints. + +Cookies: +Cookies is a well-known cannabis lifestyle brand founded by rapper and entrepreneur Berner. They are recognized globally for their premium cannabis flower strains and innovative products. Cookies focuses on genetics, innovation, and the overall quality of their products. + +The Grower Circle: +The Grower Circle is a group of expert cultivators and cannabis connoisseurs, dedicated to providing high-quality cannabis products. Their collaboration with Cookies further enhances the quality and experience of their cannabis products. + +As for TangEray, it's an indoor, infused joint created as a collaboration between Cookies and The Grower Circle. To know more about it or its effects, you may want to visit a local dispensary or check online resources for more detailed information, keeping in mind the legal status of cannabis in your region.",0 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlf3CbhKfGocBHh6oW4nUTbu69rd,chat.completion,1687805733,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product:\n\n- Brand: Kanha\n- Type: Indica Gummy\n- Flavor: Blood Orange Bliss\n- Serving Size: 10 gummies per pack\n- Total THC Content: 100mg\n- THC per gummy: 10mg\n- Key Feature: Nanomolecular Technology for faster, more efficient absorption\n\nKanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience.\n\nPlease note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 266, + ""total_tokens"": 324 +}","Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product: + +- Brand: Kanha +- Type: Indica Gummy +- Flavor: Blood Orange Bliss +- Serving Size: 10 gummies per pack +- Total THC Content: 100mg +- THC per gummy: 10mg +- Key Feature: Nanomolecular Technology for faster, more efficient absorption + +Kanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience. + +Please note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children.","Hello! It looks like you're interested in the Kanha Nano Blood Orange Bliss Indica Gummy. Below, you'll find some information about this product: + +- Brand: Kanha +- Type: Indica Gummy +- Flavor: Blood Orange Bliss +- Serving Size: 10 gummies per pack +- Total THC Content: 100mg +- THC per gummy: 10mg +- Key Feature: Nanomolecular Technology for faster, more efficient absorption + +Kanha's Nano Blood Orange Bliss Indica Gummies are infused with high-quality cannabis oil and nanomolecular technology that provides a faster, more efficient absorption of THC. This means you'll feel the effects more quickly and may experience a smoother experience compared to traditional edibles. These gummies have a delicious blood orange flavor and are perfect for those looking for a relaxing and calming experience. + +Please note that you should start with a low dosage and adjust as needed. It is always best to consult with a healthcare professional or a budtender for personalized advice based on your individual needs and tolerance. Keep in mind that the effects of edibles can vary greatly depending on factors like metabolism and body chemistry, so what works for someone else may not work the same way for you. Remember to enjoy responsibly and keep these gummies away from children.",0 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlfehpIxe7ySnByC6Q9UGmf39tnm,chat.completion,1687805770,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower.\n\nBOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends.\n\nThe strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users.\n\nPlease note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions.\n\nEnjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 241, + ""total_tokens"": 293 +}","Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower. + +BOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends. + +The strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users. + +Please note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions. + +Enjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!","Hello! It seems like you're interested in information about the product: BOBBI HYLL Indoor 3.5g - Fresca Flower. + +BOBBI HYLL's Indoor 3.5g is a high-quality cannabis flower product that offers an enjoyable and aromatic experience. As a 3.5g (1/8 oz) unit, this product is a convenient option for personal consumption or sharing with friends. + +The strain featured in this product is Fresca, known for its fruity and refreshing aroma. This flower is typically associated with an uplifting and invigorating effect, making it a suitable choice for social or creative activities. Users of Fresca often report a sense of increased energy, focus, and a pleasant head high when consuming this strain. Its balanced profile of THC and other cannabinoids make it a viable option for both recreational and medicinal users. + +Please note that effects may vary based on individual factors such as tolerance, dosage, and consumption methods. Always use cannabis products responsibly and consult a healthcare professional if you have any concerns or questions. + +Enjoy your BOBBI HYLL Indoor 3.5g Fresca Flower and let us know if you have any questions or need further assistance!",0 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vlg8GQNsnCMuP12dlbfdh4tqdn0W,chat.completion,1687805800,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC.\n\nThese Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption.\n\nAs always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 184, + ""total_tokens"": 236 +}","It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC. + +These Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption. + +As always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed.","It seems like you're looking for information on Flav's Blueberry Belts 100mg edible. Flav is a company known for producing cannabis-infused products, and one of their popular offerings is the Blueberry Belts, which is an edible that contains 100mg of THC. + +These Blueberry Belts may provide the desirable effects of cannabis without the need for smoking or vaporizing. It's important to consume edibles responsibly, as the effects can be much stronger than other consumption methods. For novice users, it's recommended to start with a low dosage, such as 5-10mg, and wait for at least an hour before consuming more, to avoid overconsumption. + +As always, please ensure you follow your local laws regarding the possession and consumption of cannabis products, and remember that cannabis affects everyone differently. It's always best to start with a low dose and gradually increase it if needed.",0 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlgMzsYnCHB41MM6ZSQPDDC2bHna,chat.completion,1687805814,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""You have selected the following product:\n\nProduct ID: md-1347497\nProduct: Cherry Pie - 1g - Pod\nBrand: Left Coast Extracts\nCategory: Vape\nTHC Content: Not specified\nCBD Content: Not specified\n\nThe Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes.\n\nHowever, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information.\n\nPlease consume responsibly and follow the recommended dosage instructions provided by the manufacturer."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 182, + ""total_tokens"": 229 +}","You have selected the following product: + +Product ID: md-1347497 +Product: Cherry Pie - 1g - Pod +Brand: Left Coast Extracts +Category: Vape +THC Content: Not specified +CBD Content: Not specified + +The Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes. + +However, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information. + +Please consume responsibly and follow the recommended dosage instructions provided by the manufacturer.","You have selected the following product: + +Product ID: md-1347497 +Product: Cherry Pie - 1g - Pod +Brand: Left Coast Extracts +Category: Vape +THC Content: Not specified +CBD Content: Not specified + +The Cherry Pie pod from Left Coast Extracts is a 1g vape cartridge designed to deliver smooth and satisfying hits. Cherry Pie is a popular strain known for its balanced blend of fruity, tart, and sweet flavors, evoking the sensation of enjoying a delicious slice of cherry pie. It offers a unique vaping experience with its mix of sweet cherry and earthy, herbal notes. + +However, please note that the THC and CBD content are not specified. If you have specific requirements or concerns about the potency of this product, we recommend contacting Left Coast Extracts directly for more information. + +Please consume responsibly and follow the recommended dosage instructions provided by the manufacturer.",0 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlgdhgYBSUuMB38xQt4lYHeb481r,chat.completion,1687805831,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information.\n\nHowever, I can provide some general information about cannabis joints.\n\nA joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience.\n\nEmerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties.\n\nIf you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 256, + ""total_tokens"": 310 +}","Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information. + +However, I can provide some general information about cannabis joints. + +A joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience. + +Emerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties. + +If you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions.","Hello! It looks like you're searching for information on Minntz Emerald Cut, a 1g indoor joint. Unfortunately, I can't provide specific details on this specific product as I am an AI language model and have limitations regarding real-time, updated product information. + +However, I can provide some general information about cannabis joints. + +A joint is a rolled cannabis cigarette, typically containing around 1g of cannabis material. It is used for smoking and offers various effects depending on the strain used. An indoor-grown cannabis plant usually produces higher quality flowers due to the controlled environment it grows in, which may result in a smoother and more potent experience. + +Emerald Cut might be the name of the strain used in this joint. Cannabis strains vary in terms of flavor, aroma, and effects. Sativa-dominant strains tend to provide uplifting and energizing experiences, whereas Indica-dominant strains are likely to provide a more relaxing and calming effect. Hybrid strains are a mix of both, with effects depending on the specific combination of Sativa and Indica properties. + +If you're interested in learning more about the specific Minntz Emerald Cut joint or any other cannabis-related topics, I would suggest contacting your local dispensary or exploring online resources dedicated to cannabis products and discussions.",0 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vlh2eeYsWzANKI3YBlblLl1uglVd,chat.completion,1687805856,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are looking for information on a cannabis product called \""The Growers Circle - Double Down - Indoor - 3.5g\"". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods.\n\nThe product you've mentioned, \""Double Down\"" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product.\n\nTo get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 167, + ""total_tokens"": 219 +}","Hello! It seems you are looking for information on a cannabis product called ""The Growers Circle - Double Down - Indoor - 3.5g"". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods. + +The product you've mentioned, ""Double Down"" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product. + +To get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details.","Hello! It seems you are looking for information on a cannabis product called ""The Growers Circle - Double Down - Indoor - 3.5g"". The Growers Circle is a cannabis brand that produces high-quality cannabis strains using indoor growing methods. + +The product you've mentioned, ""Double Down"" is one of their strains with a 3.5g (1/8 oz) package. Since other details were not provided, we cannot provide specifics on the THC and CBD content, strain type (sativa, indica, or hybrid), and other characteristics of this product. + +To get more information, I recommend you to visit the company's website or contact a local dispensary that carries The Growers Circle products. They will be able to provide you with accurate information regarding the specific strain, its effects, and other relevant details.",0 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlhOyEAazqJEGuWGg4g4APivkogx,chat.completion,1687805878,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nProduct Category: Flowers\nDescription:\nThe Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 164, + ""total_tokens"": 212 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Product Category: Flowers +Description: +The Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience.","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Product Category: Flowers +Description: +The Blue Dream Roll Your Own Sugar Shake is a 14g bag of premium cannabis flowers from Pacific Stone. Blue Dream, a popular and widely known strain, is a sativa-dominant hybrid that delivers a balanced high with a sweet, berry-like aroma. This sugar shake is an excellent choice for those who enjoy the relaxing and euphoric benefits of cannabis while staying focused and clear-headed. The 14g bag provides a generous amount for consumers who prefer rolling their own joints, or it can be an excellent addition to various cannabis recipes and preparations. The Blue Dream Roll Your Own Sugar Shake is a convenient and cost-effective option for those who appreciate a high-quality cannabis experience.",0 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlhdjuABCp8pq7UA9hP1nNXE2Cv2,chat.completion,1687805893,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on the Grower Circle's \""Zoo Dawg x Cosa Nostra\"" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains.\n\n- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood.\n\n- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia.\n\nThis Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 250, + ""total_tokens"": 312 +}","Hello! It seems like you are looking for information on the Grower Circle's ""Zoo Dawg x Cosa Nostra"" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains. + +- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood. + +- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia. + +This Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes.","Hello! It seems like you are looking for information on the Grower Circle's ""Zoo Dawg x Cosa Nostra"" Multi-Joint 5-pack (2.5g total). While I couldn't find specific details about this product, I can provide some general information about its parent strains. + +- Zoo Dawg: This strain is a hybrid cannabis with genetic lineage from Zoo Keeper, Strawberry Glue, and Stardawg. Zoo Dawg is known for its relaxing and uplifting effects, making it suitable for stress relief and inducing a positive mood. + +- Cosa Nostra: This is an indica-dominant strain with a combination of the genetics from Peyote Purple and SFV OG Kush F4. It is known for its potent effects, providing relaxation, and helping relieve pain, anxiety, and insomnia. + +This Multi-Joint 5-pack would be a combination of these strains, so expect a hybrid experience, which may provide a balanced combination of relaxation, stress relief, and uplifting mood. Please note that each user's experience may vary since individual reactions to cannabis products depend on a variety of factors. Remember to consume cannabis products responsibly and consult with a medical professional if you have any concerns or are using cannabis for medical purposes.",0 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vli0raZNlIIGBpBDSBD6dc0zK0bw,chat.completion,1687805916,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on a product called \""Flight Bites - S'mores - Gummy - 10ct - 100mg\"". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the \""100mg\"" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats.\n\nHowever, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 129, + ""total_tokens"": 187 +}","Hello! It seems like you're looking for information on a product called ""Flight Bites - S'mores - Gummy - 10ct - 100mg"". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the ""100mg"" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats. + +However, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!","Hello! It seems like you're looking for information on a product called ""Flight Bites - S'mores - Gummy - 10ct - 100mg"". Flight Bites are likely a type of edible product, possibly infused with cannabis or CBD, as indicated by the ""100mg"" dosage. The S'mores flavor and Gummy suggest that these might be tasty, chewy treats. + +However, since you haven't provided a specific question or request, I'd be happy to help further if you'd like to know more about the product or have any specific question in mind. Just let me know what you're looking for!",0 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VliCz6tI4VLYqAlF9f6pRo1kCzwn,chat.completion,1687805928,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 13, + ""total_tokens"": 135 +}","Chill Medicated,Syrup,Watermelon,250mg","Chill Medicated,Syrup,Watermelon,250mg",0 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VliF2XEa71nrQyvMdkDdlO2bPdpD,chat.completion,1687805931,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Space Cowboy,3.5g,22.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","Feelz,Flower,Space Cowboy,3.5g,22.5","Feelz,Flower,Space Cowboy,3.5g,22.5",2 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VliHONcf8Warr2P4HVS4S8Bkakv6,chat.completion,1687805933,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 139, + ""completion_tokens"": 16, + ""total_tokens"": 155 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5","Champelli,Flower,Packed Bud,Xclusivo,3.5",4 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VliLmVXERbzrwGYXPs0AQ60PiEIU,chat.completion,1687805937,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Mellowz #7,7g,35"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 117, + ""completion_tokens"": 14, + ""total_tokens"": 131 +}","CAM,Flower,Mellowz #7,7g,35","CAM,Flower,Mellowz #7,7g,35",2 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VliNFfr63Jj1as1Kw6LejymTHfVh,chat.completion,1687805939,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 23, + ""total_tokens"": 150 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,1","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,1",1 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VliRBP9MFlmKx5fYdlDcKq7yRqfd,chat.completion,1687805943,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,10"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 18, + ""total_tokens"": 140 +}","Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,10","Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1g,10",1 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VliUiTsPS5WaqWETrCibHgpqZ2hw,chat.completion,1687805946,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 17, + ""total_tokens"": 144 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VliX2mW9Mn4DaqV9UJX66RereJdO,chat.completion,1687805949,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 134, + ""completion_tokens"": 20, + ""total_tokens"": 154 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1g",2 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VliZYKs26JplHmoHF2Jm0f1m7Qx9,chat.completion,1687805951,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 133, + ""completion_tokens"": 16, + ""total_tokens"": 149 +}","Cookies,Preroll,Joint,Triple Scoop,1.0","Cookies,Preroll,Joint,Triple Scoop,1.0",4 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlicqYXgzPIlT5wKdSuY9rgHsDjv,chat.completion,1687805954,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Birthday Cake Pod,1g,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 16, + ""total_tokens"": 138 +}","STIIIZY,Vape Pen,Birthday Cake Pod,1g,1","STIIIZY,Vape Pen,Birthday Cake Pod,1g,1",2 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vliep8zQeEMRDi84fuOjmqeklGjQ,chat.completion,1687805956,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 20, + ""total_tokens"": 144 +}","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g",0 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlijGnypcBrPs8HjV0MFRAQgaYVX,chat.completion,1687805961,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummies,Nano Blood Orange Bliss,Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 16, + ""total_tokens"": 141 +}","Kanha,Gummies,Nano Blood Orange Bliss,Indica,100mg","Kanha,Gummies,Nano Blood Orange Bliss,Indica,100mg",1 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlimPRRjNQLdZK2IxiiUn6bBNi59,chat.completion,1687805964,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 19, + ""total_tokens"": 138 +}","Fresca,Flower,Indoor,BOBBI HYLL,3.5","Fresca,Flower,Indoor,BOBBI HYLL,3.5",4 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VliqdeGnzmlmJw2svNOeVYRajmLw,chat.completion,1687805968,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg,10"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 15, + ""total_tokens"": 134 +}","Flav,Edible,Blueberry Belts,100mg,10","Flav,Edible,Blueberry Belts,100mg,10",2 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlisFMqgF5lxex7WmkLKp3wQdGht,chat.completion,1687805970,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 114, + ""completion_tokens"": 18, + ""total_tokens"": 132 +}","Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.0","Left Coast Extracts,Vape Pod,Cherry Pie,1g,13.0",1 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vliw7EoL5JdvoSEdVDPF57G8pF2m,chat.completion,1687805974,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 121, + ""completion_tokens"": 15, + ""total_tokens"": 136 +}","Minntz,Joint,Indoor,Emerald Cut,1g","Minntz,Joint,Indoor,Emerald Cut,1g",2 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vliyk6hTgh8bEK1x7T6A0JMZxjV8,chat.completion,1687805976,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 119, + ""completion_tokens"": 17, + ""total_tokens"": 136 +}","The Growers Circle,Flower,Indoor,Double Down,3.5","The Growers Circle,Flower,Indoor,Double Down,3.5",4 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vlj1sDqSCzUbaKBn2yiHuMxVt1Dc,chat.completion,1687805979,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flowers,Blue Dream,14g,Shake"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 115, + ""completion_tokens"": 14, + ""total_tokens"": 129 +}","Pacific Stone,Flowers,Blue Dream,14g,Shake","Pacific Stone,Flowers,Blue Dream,14g,Shake",1 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vlj2EY8pzIL8Au6brzI3SbPd5dsf,chat.completion,1687805980,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 129, + ""completion_tokens"": 24, + ""total_tokens"": 153 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,12.5",3 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vlj8ykrnkUgWJUGzwU8wYoLkC06i,chat.completion,1687805986,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edibles,S'mores Gummies,100mg THC,10 count"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 18, + ""total_tokens"": 143 +}","Flight Bites,Edibles,S'mores Gummies,100mg THC,10 count","Flight Bites,Edibles,S'mores Gummies,100mg THC,10 count",1 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VljByrbQShlRvfq2HXAAQYJDzSIz,chat.completion,1687805989,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 181, + ""completion_tokens"": 16, + ""total_tokens"": 197 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg","Chill Medicated,Syrup,Edible,Watermelon,250mg",1 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VljDRU8fgq6wrtiiaD0kMhFJRjyJ,chat.completion,1687805991,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 178, + ""completion_tokens"": 14, + ""total_tokens"": 192 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VljFJmNOgrvJOHBRzDCKlIQ3tBUC,chat.completion,1687805993,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 198, + ""completion_tokens"": 16, + ""total_tokens"": 214 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5","Champelli,Flower,Packed Bud,Xclusivo,3.5",4 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VljJD9japaHWITC9oL7HQs2diqEj,chat.completion,1687805997,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 176, + ""completion_tokens"": 13, + ""total_tokens"": 189 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VljLdgQH7H4rApUIWTsvvP6u3OQJ,chat.completion,1687805999,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 186, + ""completion_tokens"": 22, + ""total_tokens"": 208 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg,-",1 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VljOv2Zkf244KrCAcvHUwQ94P5gD,chat.completion,1687806002,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 181, + ""completion_tokens"": 18, + ""total_tokens"": 199 +}","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0",3 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VljQHH7PdQAN6WK2cQvykwjkJ7J2,chat.completion,1687806004,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 186, + ""completion_tokens"": 17, + ""total_tokens"": 203 +}","Jeeter,Preroll,Infused Joint,Peaches,2.5","Jeeter,Preroll,Infused Joint,Peaches,2.5",4 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VljT7JMC9YD5fXI61A53rUoiO9pR,chat.completion,1687806007,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 193, + ""completion_tokens"": 19, + ""total_tokens"": 212 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VljXoUQj2olDKd1k8fSg3N3l5E7G,chat.completion,1687806011,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 192, + ""completion_tokens"": 16, + ""total_tokens"": 208 +}","Cookies,Preroll,Joint,Triple Scoop,1.0","Cookies,Preroll,Joint,Triple Scoop,1.0",4 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VljZAJ2TkEhl6n2WhYv9UNW70YkC,chat.completion,1687806013,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pod,Birthday Cake,1g,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 181, + ""completion_tokens"": 17, + ""total_tokens"": 198 +}","STIIIZY,Vape Pod,Birthday Cake,1g,1.0","STIIIZY,Vape Pod,Birthday Cake,1g,1.0",1 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VljbQ0pvGPi6XAEmMF4EfpoO2lG2,chat.completion,1687806015,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 19, + ""total_tokens"": 202 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1",2 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlje9PbATUirYEHS48z7JaymafW5,chat.completion,1687806018,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 184, + ""completion_tokens"": 17, + ""total_tokens"": 201 +}","Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg","Kanha,Gummy,Edible,Blood Orange Bliss Indica,100mg",1 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vljg0ErIOYZcPInz7dprK92Cu9b3,chat.completion,1687806020,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,Bobbi Hyll,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 178, + ""completion_tokens"": 17, + ""total_tokens"": 195 +}","Fresca,Flower,Bud,Bobbi Hyll,3.5","Fresca,Flower,Bud,Bobbi Hyll,3.5",4 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VljicdOfptlB2ctyv7bCaExDCUtb,chat.completion,1687806022,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 178, + ""completion_tokens"": 15, + ""total_tokens"": 193 +}","Flav,Edible,Gummies,Blueberry Belts,100mg","Flav,Edible,Gummies,Blueberry Belts,100mg",3 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VljkY8u8Nn7nCmAxJfWqL4bcsKs7,chat.completion,1687806024,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 173, + ""completion_tokens"": 14, + ""total_tokens"": 187 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1","Left Coast Extracts,Vape,Pod,Cherry Pie,1",4 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VljnhyTGsoJv9igeCyHb4NiY0Dps,chat.completion,1687806027,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 180, + ""completion_tokens"": 15, + ""total_tokens"": 195 +}","Minntz,Preroll,Joint,Emerald Cut,1","Minntz,Preroll,Joint,Emerald Cut,1",5 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VljqVGfj8pSz2NT6OcykqamMrEcD,chat.completion,1687806030,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 178, + ""completion_tokens"": 17, + ""total_tokens"": 195 +}","The Growers Circle,Flower,Indoor,Double Down,3.5","The Growers Circle,Flower,Indoor,Double Down,3.5",4 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VljtubhgExlZbRQ2wgGj32B2musv,chat.completion,1687806033,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 174, + ""completion_tokens"": 13, + ""total_tokens"": 187 +}","Pacific Stone,Flower,Shake,Blue Dream,14","Pacific Stone,Flower,Shake,Blue Dream,14",3 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VljvvP0Bg1pZcO3gK9TIF0l2At8j,chat.completion,1687806035,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint, Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 188, + ""completion_tokens"": 24, + ""total_tokens"": 212 +}","The Grower Circle,Preroll,Multi Joint, Zoo Dawg x Cosa Nostra,2.5","The Grower Circle,Preroll,Multi Joint, Zoo Dawg x Cosa Nostra,2.5",1 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VljyEIcGxYQMgX7ZTMAsG6cGzirs,chat.completion,1687806038,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 184, + ""completion_tokens"": 14, + ""total_tokens"": 198 +}","Flight Bites,Edible,Gummies,S'mores,100mg","Flight Bites,Edible,Gummies,S'mores,100mg",3 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vlk1PbLT1wJoEfSBVcMXy1tA7H4g,chat.completion,1687806041,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Edible,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 16, + ""total_tokens"": 276 +}","Chill Medicated,Syrup,Edible,Watermelon,250mg","Chill Medicated,Syrup,Edible,Watermelon,250mg",1 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vlk3imR8keC7UmUJjVoQQkPBYuFE,chat.completion,1687806043,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 14, + ""total_tokens"": 271 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vlk5x6JuvcWPz376AWNQduQepkCV,chat.completion,1687806045,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,PackedBud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 277, + ""completion_tokens"": 17, + ""total_tokens"": 294 +}","Champelli,Flower,PackedBud,Xclusivo,3.5","Champelli,Flower,PackedBud,Xclusivo,3.5",4 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vlk8rk2Pba3qeb6ab3YXn8wVhCyn,chat.completion,1687806048,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 255, + ""completion_tokens"": 13, + ""total_tokens"": 268 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlkCVD6FqPp4IHqhQQLiPGKT7E9h,chat.completion,1687806052,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 21, + ""total_tokens"": 286 +}","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg","Backpack Boyz,Tincture,Bubblegum Gelato Sizzurp,1000mg",0 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlkHBSeCX2ygXl0ZiuluRaMDKuWJ,chat.completion,1687806057,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 16, + ""total_tokens"": 276 +}","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1",4 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlkJDsg4hse7aZyfcQi71lSiljtl,chat.completion,1687806059,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 265, + ""completion_tokens"": 17, + ""total_tokens"": 282 +}","Jeeter,Preroll,Infused Joint,Peaches,2.5","Jeeter,Preroll,Infused Joint,Peaches,2.5",4 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlkMziOvxpXjKiTZezppjz2l3bnF,chat.completion,1687806062,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 19, + ""total_tokens"": 291 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlkPh8OiBGBIDiz1bAbkTr9pX2Od,chat.completion,1687806065,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 271, + ""completion_tokens"": 14, + ""total_tokens"": 285 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlkXomsuxQm23eIS62hmPMkdHOAY,chat.completion,1687806073,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Pod,Birthday Cake,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 14, + ""total_tokens"": 274 +}","STIIIZY,Vape Pen,Pod,Birthday Cake,1","STIIIZY,Vape Pen,Pod,Birthday Cake,1",3 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlkaGsM2mwkTpGHEOJmzBiaq7mA3,chat.completion,1687806076,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 19, + ""total_tokens"": 281 +}","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1","Cookies x The Grower Circle,Infused Joint,Indoor,TangEray,1",2 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlkcuQZAbnixTm0GXm0wVtKyjm6K,chat.completion,1687806078,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 263, + ""completion_tokens"": 17, + ""total_tokens"": 280 +}","Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg","Kanha,Edible,Gummy,Blood Orange Bliss Indica,100mg",2 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlkgc1DEvtvmhapE5d7xfiUfhjQA,chat.completion,1687806082,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Indoor,Bobbi Hyll,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 18, + ""total_tokens"": 275 +}","Fresca,Flower,Indoor,Bobbi Hyll,3.5","Fresca,Flower,Indoor,Bobbi Hyll,3.5",3 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlkiwDqLqycRAu0apWum5v0hcyER,chat.completion,1687806084,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 15, + ""total_tokens"": 272 +}","Flav,Edible,Gummies,Blueberry Belts,100mg","Flav,Edible,Gummies,Blueberry Belts,100mg",3 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlkmGWOVU3XCMQf6XkZPeJ8aT9w5,chat.completion,1687806088,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape,Pod,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 252, + ""completion_tokens"": 14, + ""total_tokens"": 266 +}","Left Coast Extracts,Vape,Pod,Cherry Pie,1","Left Coast Extracts,Vape,Pod,Cherry Pie,1",4 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlkovvCGalAUyW1qBhrdpbMwTjfy,chat.completion,1687806090,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 14, + ""total_tokens"": 273 +}","Minntz,Joint,Indoor,Emerald Cut,1","Minntz,Joint,Indoor,Emerald Cut,1",3 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vlkq1sH3Iv9cpJn0Rb60uC0HKuYn,chat.completion,1687806092,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Indoor,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 257, + ""completion_tokens"": 17, + ""total_tokens"": 274 +}","The Growers Circle,Flower,Indoor,Double Down,3.5","The Growers Circle,Flower,Indoor,Double Down,3.5",4 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlktWZ3hrCeplcRonmgVZHdEJDKQ,chat.completion,1687806095,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 253, + ""completion_tokens"": 13, + ""total_tokens"": 266 +}","Pacific Stone,Flower,Shake,Blue Dream,14","Pacific Stone,Flower,Shake,Blue Dream,14",3 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlkvZVmne5BbGbs7ykBxjMKxKDWi,chat.completion,1687806097,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 23, + ""total_tokens"": 290 +}","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5","The Grower Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,2.5",3 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlkyyJw0I76ivg8qjOyXGsSSyTkV,chat.completion,1687806100,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummy,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 263, + ""completion_tokens"": 14, + ""total_tokens"": 277 +}","Flight Bites,Edible,Gummy,S'mores,100mg","Flight Bites,Edible,Gummy,S'mores,100mg",2 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vll1DvBL0A0ts3AEJcNfCgHovJP1,chat.completion,1687806103,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Edible,Syrup,Watermelon,250"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 15, + ""total_tokens"": 392 +}","Chill Medicated,Edible,Syrup,Watermelon,250","Chill Medicated,Edible,Syrup,Watermelon,250",2 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vll3csvkhvpAa2ResYr2W8rKDwxh,chat.completion,1687806105,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 14, + ""total_tokens"": 388 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vll5A9U2sba6AZMtdV2OY12rVnFR,chat.completion,1687806107,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 394, + ""completion_tokens"": 13, + ""total_tokens"": 407 +}","Champelli,Flower,Bud,Xclusivo,7","Champelli,Flower,Bud,Xclusivo,7",4 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vll7b5BHHNc7vY7cd2rvivGi3F1c,chat.completion,1687806109,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Flower,Bud,Mellowz #7,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 372, + ""completion_tokens"": 13, + ""total_tokens"": 385 +}","CAM,Flower,Bud,Mellowz #7,7","CAM,Flower,Bud,Mellowz #7,7",5 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VllA4Lkk5ldVn9D3YjZkXRshGv2A,chat.completion,1687806112,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Syrup,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 382, + ""completion_tokens"": 20, + ""total_tokens"": 402 +}","Backpack Boyz,Tincture,Syrup,Bubblegum Gelato,1000mg","Backpack Boyz,Tincture,Syrup,Bubblegum Gelato,1000mg",1 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VllF0QEVMJcNL2Gay5nLYMyHzfU3,chat.completion,1687806117,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 15, + ""total_tokens"": 392 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",5 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VllI7K9Yq6DILdc8qoYgjQbDoYTE,chat.completion,1687806120,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 382, + ""completion_tokens"": 17, + ""total_tokens"": 399 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VllK2qJtrOhvNG6Ot5ntvwiKNvMV,chat.completion,1687806122,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 389, + ""completion_tokens"": 19, + ""total_tokens"": 408 +}","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1","Ocean Breeze Cultivators,Blunt,Indoor,Truffle Pupil,1",3 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VllORh0nSEdaFCWnTWxUdvexllCk,chat.completion,1687806126,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 14, + ""total_tokens"": 402 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VllQmgxfKAqxYBkSaF0ptF3gfZ49,chat.completion,1687806128,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape,Vape Pen,Birthday Cake,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 377, + ""completion_tokens"": 14, + ""total_tokens"": 391 +}","STIIIZY,Vape,Vape Pen,Birthday Cake,1","STIIIZY,Vape,Vape Pen,Birthday Cake,1",4 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VllTNrhjGgszwqYkFxKXvcmogzdq,chat.completion,1687806131,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 379, + ""completion_tokens"": 20, + ""total_tokens"": 399 +}","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1","Cookies x The Grower Circle,Preroll,Infused Joint,TangEray,1",4 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VllVbI6pbsvjtw96LiAswF8Y4jGI,chat.completion,1687806133,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummy,Blood Orange Bliss,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 15, + ""total_tokens"": 395 +}","Kanha,Edible,Gummy,Blood Orange Bliss,100mg","Kanha,Edible,Gummy,Blood Orange Bliss,100mg",2 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VllXZRSodO5rCH4nB10PmmSPACpp,chat.completion,1687806135,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,Flower,Bud,BOBBI HYLL,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 18, + ""total_tokens"": 392 +}","Fresca,Flower,Bud,BOBBI HYLL,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",5 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vllb7kTSrTFem3WqByL4QHnpHNKb,chat.completion,1687806139,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 15, + ""total_tokens"": 389 +}","Flav,Edible,Gummies,Blueberry Belts,100mg","Flav,Edible,Gummies,Blueberry Belts,100mg",3 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VllgbebCkBE5a58pP1rouXYcy7Vc,chat.completion,1687806144,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Cartridge,Cherry Pie,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 369, + ""completion_tokens"": 14, + ""total_tokens"": 383 +}","Left Coast Extracts,Vape Cartridge,Cherry Pie,1","Left Coast Extracts,Vape Cartridge,Cherry Pie,1",0 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlllgiYvYUOiy7Q1tqf9lRnjUAbS,chat.completion,1687806149,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 376, + ""completion_tokens"": 15, + ""total_tokens"": 391 +}","Minntz,Preroll,Joint,Emerald Cut,1","Minntz,Preroll,Joint,Emerald Cut,1",5 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vlloe2pmdpMA3jZZywPQkOZUH7S8,chat.completion,1687806152,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Flower,Bud,Double Down,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 374, + ""completion_tokens"": 16, + ""total_tokens"": 390 +}","The Growers Circle,Flower,Bud,Double Down,3.5","The Growers Circle,Flower,Bud,Double Down,3.5",5 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VllsM5xFpcq0xBahUUAcfYW4NCG7,chat.completion,1687806156,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 370, + ""completion_tokens"": 13, + ""total_tokens"": 383 +}","Pacific Stone,Flower,Shake,Blue Dream,14","Pacific Stone,Flower,Shake,Blue Dream,14",3 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vlm0MO0ePLlU58nFwT9TSG031msg,chat.completion,1687806164,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 384, + ""completion_tokens"": 24, + ""total_tokens"": 408 +}","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5","The Grower Circle,Preroll,Multi Joint,Zoo Dawg x Cosa Nostra,2.5",2 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vlm3o32pqYicNDKIz0FBxs41gPjX,chat.completion,1687806167,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 14, + ""total_tokens"": 394 +}","Flight Bites,Edible,Gummies,S'mores,100mg","Flight Bites,Edible,Gummies,S'mores,100mg",3 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vlm5umJjq0WJ5qnUkdRBaN312IXY,chat.completion,1687806169,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 40, + ""total_tokens"": 96 +}",System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed.,System message: The product with the ID co-2MFE5QVF is a Chill Medicated Watermelon Syrup with a dosage of 250mg. Please provide more information if needed.,0 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vlm7LO4ZgWFziKdBu74JaNSA06lo,chat.completion,1687806171,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items:\n\n- Feelz - Space Cowboy 3.5g\n- FLOWERS 3.5G\n\nhas been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value.\n\nThank you for choosing our service and we hope you enjoy your order!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 104, + ""total_tokens"": 157 +}","Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items: + +- Feelz - Space Cowboy 3.5g +- FLOWERS 3.5G + +has been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value. + +Thank you for choosing our service and we hope you enjoy your order!","Hello! This is a system message to inform you that your recent order with the order number bl-111630024545, consisting of the following items: + +- Feelz - Space Cowboy 3.5g +- FLOWERS 3.5G + +has been successfully processed and is ready for delivery. Please keep in mind that the strain of the second item is currently not available and will be substituted with something of equal or greater value. + +Thank you for choosing our service and we hope you enjoy your order!",0 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlmCRYn2rcbp0EHf4gZPaq4uk4tT,chat.completion,1687806176,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 73, + ""completion_tokens"": 54, + ""total_tokens"": 127 +}","Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!","Thank you for your order! Your order ID is fl-8voAjt83sD. You have purchased one (1) eighth of Champelli's Xclusivo strain, weighing 3.5 grams. Your packed bud will be delivered shortly. Enjoy!",0 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlmFm6ns3D4AFQBOmLgbnKXRtMuO,chat.completion,1687806179,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 68, + ""total_tokens"": 119 +}","Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you.","Hello! It looks like you have placed an order for CAM - Mellowz #7 7g and FLOWERS 7G. However, some of the details are missing and I am not able to provide you with complete information. Can you please provide me with more details so that I can assist you better? Thank you.",0 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlmItMqgot4a4aR6UgIyoaSNVKT3,chat.completion,1687806182,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 73, + ""total_tokens"": 134 +}",Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase!,Thank you for your order of Backpack Boyz Bubblegum Gelato Sizzurp 1000mg tincture. Your order has been processed successfully and will be shipped within 2-3 business days. Please keep in mind that delivery times may vary depending on your location. Thank you for choosing Backpack Boyz and we hope you enjoy your purchase!,0 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlmMuXtNlIA8NjsvbBp6tWJpAIAh,chat.completion,1687806186,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 59, + ""total_tokens"": 115 +}",Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with?,Hello! Thank you for using our system. It seems like you are interested in Raw Garden's Pink Lemonade Crushed Diamonds in a 1-gram size. This product is a concentrated form of cannabis and is NaN in terms of potency. Is there anything else I can help you with?,0 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlmOmE6t0OYR6bym9CsCK2cjraFr,chat.completion,1687806188,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is \""Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\"" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 85, + ""total_tokens"": 146 +}","Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is ""Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g"" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know.","Hello! I see that you have added a new product to your inventory with the ID md-1159983. The product is ""Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g"" under the brand Jeeter, category Infused Prerolls, and with no pricing information. If you need any assistance with setting the price for this product, please let me know.",0 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlmSjG0BFMX3WALv9cMvlTXd82OO,chat.completion,1687806192,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 68, + ""completion_tokens"": 102, + ""total_tokens"": 170 +}","Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!","Hello! Thank you for shopping with Ocean Breeze Cultivators. Your order, co-6WGV1Z0H, has been received and will be processed shortly. You have ordered one gram of our Truffle Pupil strain, grown indoors and rolled in a blunt. We appreciate your business and hope to serve you again in the future. If you have any questions or concerns about your order, please don't hesitate to contact us. Thank you again for choosing Ocean Breeze Cultivators!",0 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlmW0dOlFM8ui3k2w2vMaaPsVbYK,chat.completion,1687806196,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nYour order for \""Cookies | Triple Scoop Preroll 1g\"" has been processed. Your total cost is $1.0. Thank you for your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 39, + ""total_tokens"": 106 +}","System Message: + +Your order for ""Cookies | Triple Scoop Preroll 1g"" has been processed. Your total cost is $1.0. Thank you for your purchase!","System Message: + +Your order for ""Cookies | Triple Scoop Preroll 1g"" has been processed. Your total cost is $1.0. Thank you for your purchase!",0 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlmZZ5areaCSM09tZwosrbp4U5ND,chat.completion,1687806199,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 46, + ""total_tokens"": 102 +}","Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly.","Hello! Thank you for your message. Can you please provide more context or information about your message? It seems like you may be referring to a product or order number, but I want to make sure I understand your inquiry correctly.",0 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlmbKevC2zLgKoWAAUH5XV3qwcKd,chat.completion,1687806201,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 61, + ""total_tokens"": 119 +}",Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service!,Hello there! Thank you for your order of Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g. Your order has been received and is currently being processed. We will notify you once it is ready for pickup or delivery. Thank you for choosing our service!,0 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlmeE2LGh1ipJTDjaYSUMomuapXJ,chat.completion,1687806204,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows:\n\n- Brand: Kanha\n- Product type: Gummy\n- Flavor: Nano Blood Orange Bliss Indica\n- Quantity: 10 pieces\n- THC Content: 100mg\n\nPlease note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 127, + ""total_tokens"": 186 +}","System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows: + +- Brand: Kanha +- Product type: Gummy +- Flavor: Nano Blood Orange Bliss Indica +- Quantity: 10 pieces +- THC Content: 100mg + +Please note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation.","System message: Product details of co-7YGGNHBR - Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg are as follows: + +- Brand: Kanha +- Product type: Gummy +- Flavor: Nano Blood Orange Bliss Indica +- Quantity: 10 pieces +- THC Content: 100mg + +Please note that this product contains THC and should only be used by individuals who are of legal age and in a state/country where it is legal to use cannabis products for recreational or medical purposes. It is important to consume cannabis products responsibly and in moderation.",0 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlmk27GWARL5207f7OY1PqccwPsf,chat.completion,1687806210,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your purchase, Bobbi Hyll!\n\nYour order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives.\n\nIf you have any questions or concerns about your order, please feel free to contact our customer service team.\n\nThank you for choosing our company for your cannabis needs. We hope you have a great day!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 96, + ""total_tokens"": 149 +}","Thank you for your purchase, Bobbi Hyll! + +Your order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives. + +If you have any questions or concerns about your order, please feel free to contact our customer service team. + +Thank you for choosing our company for your cannabis needs. We hope you have a great day!","Thank you for your purchase, Bobbi Hyll! + +Your order number is md-1242517. You have purchased 3.5 grams of indoor-grown Fresca flower with a THC content of nan. Please allow some time for processing and shipping before your order arrives. + +If you have any questions or concerns about your order, please feel free to contact our customer service team. + +Thank you for choosing our company for your cannabis needs. We hope you have a great day!",0 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlmoIhGHLU44ynBh54U7VnI5ZhoD,chat.completion,1687806214,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 69, + ""total_tokens"": 122 +}","Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!","Thank you for your order of Flav's Blueberry Belts 100mg! We have received your request and are processing your order. Please note that due to high demand, there may be a slight delay in fulfillment. We will notify you as soon as your order is ready for pick-up or shipping. Thank you for choosing Flav!",0 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VlmrDdmppf7CuCSuR86UoXGgjM7F,chat.completion,1687806217,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 58, + ""total_tokens"": 106 +}",Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase!,Hello! Your order with ID md-1347497 has been received. You have purchased a Cherry Pie - 1g - Pod from Left Coast Extracts for vaping. The expected delivery time and date will depend on the shipping method you chose during checkout. Thank you for your purchase!,0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlmuoE6dfZHei0H5STxsQ7OcyqdA,chat.completion,1687806220,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 25, + ""total_tokens"": 80 +}","Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?","Hello! I am sorry, but I am not sure what you are trying to convey. Can you please clarify your message?",0 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlmwJkKP3tRc0LklyblNXYj0Zd6B,chat.completion,1687806222,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 60, + ""total_tokens"": 113 +}","Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business.","Hello! Thank you for your order of The Growers Circle's Double Down strain of indoor-grown cannabis. Your order has been received and will be processed promptly. If you have any questions about your order or delivery, please don't hesitate to contact us. As always, we appreciate your business.",0 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vlmy11bydW5rHcpNmzEIHYxJAOvl,chat.completion,1687806224,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 100, + ""total_tokens"": 149 +}","Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!","Thank you for your order of MD-1195389! We have received your request for a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone and we will do our best to fulfill your order as soon as possible. Since flowers have not been specified as an option, we will assume you would like that variation. Please note that the strain may affect the price and availability, but we will inform you if there are any changes. Thank you for choosing our service and happy shopping!",0 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vln37UAAsFx4uhlRbaEZo3NSA2FO,chat.completion,1687806229,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. It seems like you are interested in purchasing \""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g\"". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 63, + ""completion_tokens"": 84, + ""total_tokens"": 147 +}","Hello! Thank you for your message. It seems like you are interested in purchasing ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g"". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you.","Hello! Thank you for your message. It seems like you are interested in purchasing ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g"". I'm sorry, but it looks like there is some missing information in your message. Can you please provide your name, delivery address, and payment method so we can process your order? Thank you.",0 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vln7kifizjvC9ywsXWxSwu3PfvKN,chat.completion,1687806233,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 24, + ""total_tokens"": 83 +}",Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you?,Hello! Thank you for your message. Can you please provide more information or let me know how I can assist you?,0 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vln9Yde6Jnj8fzotNSgd8nnXelAC,chat.completion,1687806235,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 22, + ""total_tokens"": 147 +}","Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF","Chill Medicated,Watermelon,Syrup,250mg,CO-2MFE5QVF",1 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlnGLvEEntSSYe9vhqUoHH5nV2oN,chat.completion,1687806242,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Space Cowboy,Flowers,3.5g,11.16"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 17, + ""total_tokens"": 139 +}","Feelz,Space Cowboy,Flowers,3.5g,11.16","Feelz,Space Cowboy,Flowers,3.5g,11.16",1 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlnH14pffouCKxX5seWDUUc9esrP,chat.completion,1687806243,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli, Packed Bud, Xclusivo 3.5g, Eighth, 3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 142, + ""completion_tokens"": 24, + ""total_tokens"": 166 +}","Champelli, Packed Bud, Xclusivo 3.5g, Eighth, 3.5g","Champelli, Packed Bud, Xclusivo 3.5g, Eighth, 3.5g",1 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlnJTVDrdHSqYg2CRjdtT7uS8jPR,chat.completion,1687806245,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,7g,073133213364"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 120, + ""completion_tokens"": 17, + ""total_tokens"": 137 +}","CAM,Mellowz #7,Flower,7g,073133213364","CAM,Mellowz #7,Flower,7g,073133213364",1 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlnKFpC7Cctkb5Yaq5odULD0tBSt,chat.completion,1687806246,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Bubblegum Gelato Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 130, + ""completion_tokens"": 30, + ""total_tokens"": 160 +}","Backpack Boyz,Bubblegum Gelato Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS","Backpack Boyz,Bubblegum Gelato Sizzurp,Tincture,1000mg,fl-fwJQL2AWnS",1 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VlnM5F6aoRRjTHoHFXi3Q14RZDM6,chat.completion,1687806248,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 20, + ""total_tokens"": 145 +}","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g.","Raw Garden,Concentrate,Crushed Diamonds,Pink Lemonade,1.0g.",3 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlnOndJUISMu970CLZrCnlVqfPIe,chat.completion,1687806250,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,11.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 130, + ""completion_tokens"": 17, + ""total_tokens"": 147 +}","Jeeter,Preroll,Infused Joint,Peaches,11.5","Jeeter,Preroll,Infused Joint,Peaches,11.5",4 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlnPh4vL7xcfsVltQkP5e6zxnkFp,chat.completion,1687806251,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 137, + ""completion_tokens"": 30, + ""total_tokens"": 167 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H","Ocean Breeze Cultivators,Blunt,Truffle Pupil,Indoor,1g,co-6WGV1Z0H",1 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlnRSaq3SwxcK1KFKwiYRVirHxau,chat.completion,1687806253,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies, Triple Scoop Preroll, 1g, Joint, FL-doWkMzvFq2, 1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 136, + ""completion_tokens"": 30, + ""total_tokens"": 166 +}","Cookies, Triple Scoop Preroll, 1g, Joint, FL-doWkMzvFq2, 1.0","Cookies, Triple Scoop Preroll, 1g, Joint, FL-doWkMzvFq2, 1.0",1 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlnSiWX3QxBmhrif9Lu9UuCnA5dG,chat.completion,1687806254,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape Pen,1g,VAPE PENS,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 125, + ""completion_tokens"": 24, + ""total_tokens"": 149 +}","STIIIZY,Birthday Cake,Pod,Vape Pen,1g,VAPE PENS,1.0","STIIIZY,Birthday Cake,Pod,Vape Pen,1g,VAPE PENS,1.0",1 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlnUb97t4pNyv5xn3NKzj4YOWcNX,chat.completion,1687806256,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle, TangEray, Infused Joint, Indoor, 1g, co-6GGKA0GV."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 127, + ""completion_tokens"": 29, + ""total_tokens"": 156 +}","Cookies x The Grower Circle, TangEray, Infused Joint, Indoor, 1g, co-6GGKA0GV.","Cookies x The Grower Circle, TangEray, Infused Joint, Indoor, 1g, co-6GGKA0GV.",0 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlnWVkPyThr6CIbPvfWttfnDfL4v,chat.completion,1687806258,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Nano Gummy,Blood Orange Bliss,Indica,10 Count,100mg."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 21, + ""total_tokens"": 149 +}","Kanha,Nano Gummy,Blood Orange Bliss,Indica,10 Count,100mg.","Kanha,Nano Gummy,Blood Orange Bliss,Indica,10 Count,100mg.",1 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlnXuY6n9vqcJ71yyzRjlSpaCjOc,chat.completion,1687806259,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Fresca,BOBBI HYLL,Indoor Flower,3.5g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 19, + ""total_tokens"": 141 +}","Fresca,BOBBI HYLL,Indoor Flower,3.5g.","Fresca,BOBBI HYLL,Indoor Flower,3.5g.",0 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlnYkub5TJhvmYpRzvjnFUu1SKM8,chat.completion,1687806260,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 13, + ""total_tokens"": 135 +}","Flav,Edible,Blueberry Belts,100mg","Flav,Edible,Blueberry Belts,100mg",0 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vlnagx4YlsdHjUypEW6uru4nWV2r,chat.completion,1687806262,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Left Coast Extracts,Vape Pod,Cherry Pie,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 117, + ""completion_tokens"": 14, + ""total_tokens"": 131 +}","Left Coast Extracts,Vape Pod,Cherry Pie,1g","Left Coast Extracts,Vape Pod,Cherry Pie,1g",0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlncCOBmmZikH8LxeH6qmAugMlZA,chat.completion,1687806264,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 124, + ""completion_tokens"": 23, + ""total_tokens"": 147 +}","Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T.","Minntz,Joint,Indoor,Emerald Cut,1g,co-76GP441T.",2 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vlndj7selNs8FVBaUMcvmOlq3B8u,chat.completion,1687806265,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Indoor Double Down 3.5g by The Grower's Circle. This product has a CO-5RAWYHYQ tracking code."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 122, + ""completion_tokens"": 30, + ""total_tokens"": 152 +}",Indoor Double Down 3.5g by The Grower's Circle. This product has a CO-5RAWYHYQ tracking code.,Indoor Double Down 3.5g by The Grower's Circle. This product has a CO-5RAWYHYQ tracking code.,0 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vlnf6aDIzHpjUYDzfqA9vh5E1UEC,chat.completion,1687806267,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 118, + ""completion_tokens"": 14, + ""total_tokens"": 132 +}","Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g","Pacific Stone,Flowers,Sugar Shake,Blue Dream,14g",1 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlnhqFBYLfJhKGi3rx7XxVfqcv5B,chat.completion,1687806269,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5pk,2.5g,co-847ZXF37"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 132, + ""completion_tokens"": 31, + ""total_tokens"": 163 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5pk,2.5g,co-847ZXF37","The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5pk,2.5g,co-847ZXF37",0 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlnicMeSfGCxxq5uGrY8QwYbjrpy,chat.completion,1687806270,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummies,S'mores Flavor,10 Count,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 128, + ""completion_tokens"": 15, + ""total_tokens"": 143 +}","Flight Bites,Gummies,S'mores Flavor,10 Count,100mg","Flight Bites,Gummies,S'mores Flavor,10 Count,100mg",1 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlpAgOiW7FXG460um3Nx4VMq6pfm,chat.completion,1687806360,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg potency. Could you please clarify what information you're looking for \u2013 whether it's about usage, effects, or something else? This will help me provide you with the most relevant and accurate information."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 61, + ""total_tokens"": 115 +}","Hello! It seems like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg potency. Could you please clarify what information you're looking for – whether it's about usage, effects, or something else? This will help me provide you with the most relevant and accurate information.","Hello! It seems like you're inquiring about the Chill Medicated Watermelon Syrup with 250mg potency. Could you please clarify what information you're looking for – whether it's about usage, effects, or something else? This will help me provide you with the most relevant and accurate information.",0 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VlpH0pJpOfPWsLTwS6XtZ7BQ9dWW,chat.completion,1687806367,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on Feelz - Space Cowboy 3.5g. Unfortunately, I couldn't find any specific details about this product. However, I'm here to help! If you could provide more context or clarify your request, I'll do my best to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 63, + ""total_tokens"": 114 +}","Hello! It seems like you're looking for information on Feelz - Space Cowboy 3.5g. Unfortunately, I couldn't find any specific details about this product. However, I'm here to help! If you could provide more context or clarify your request, I'll do my best to assist you.","Hello! It seems like you're looking for information on Feelz - Space Cowboy 3.5g. Unfortunately, I couldn't find any specific details about this product. However, I'm here to help! If you could provide more context or clarify your request, I'll do my best to assist you.",0 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VlpP9mr37ww7w1nIAJrhwHRRyuv2,chat.completion,1687806375,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in the Champelli Xclusivo 3.5g cannabis product. Here is some information about it:\n\nProduct: Champelli Xclusivo 3.5g Eighths\nBrand: Champelli\nDistributor: PackedBud\n\nThis Champelli Xclusivo 3.5g Eighths contains 3.5 grams of premium cannabis flower. Champelli is known for its high-quality products, meticulous growing processes, and exclusive strains. Please ensure that you are familiar with the laws and regulations in your area related to cannabis consumption, and always use it responsibly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 71, + ""completion_tokens"": 127, + ""total_tokens"": 198 +}","Hello! It seems like you are interested in the Champelli Xclusivo 3.5g cannabis product. Here is some information about it: + +Product: Champelli Xclusivo 3.5g Eighths +Brand: Champelli +Distributor: PackedBud + +This Champelli Xclusivo 3.5g Eighths contains 3.5 grams of premium cannabis flower. Champelli is known for its high-quality products, meticulous growing processes, and exclusive strains. Please ensure that you are familiar with the laws and regulations in your area related to cannabis consumption, and always use it responsibly.","Hello! It seems like you are interested in the Champelli Xclusivo 3.5g cannabis product. Here is some information about it: + +Product: Champelli Xclusivo 3.5g Eighths +Brand: Champelli +Distributor: PackedBud + +This Champelli Xclusivo 3.5g Eighths contains 3.5 grams of premium cannabis flower. Champelli is known for its high-quality products, meticulous growing processes, and exclusive strains. Please ensure that you are familiar with the laws and regulations in your area related to cannabis consumption, and always use it responsibly.",0 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VlpeNJxbBIeEeF84JiBZ3qQCuirq,chat.completion,1687806390,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems that you're mentioning the details of a product, specifically, \""CAM - Mellowz #7 7g\"" which looks like a 7-gram package of flower strain from the cannabis industry. However, I am unable to provide any additional information or context without a more specific question or descriptive context.\n\nPlease feel free to ask further questions or provide more information, and I will do my best to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 86, + ""total_tokens"": 135 +}","It seems that you're mentioning the details of a product, specifically, ""CAM - Mellowz #7 7g"" which looks like a 7-gram package of flower strain from the cannabis industry. However, I am unable to provide any additional information or context without a more specific question or descriptive context. + +Please feel free to ask further questions or provide more information, and I will do my best to assist you.","It seems that you're mentioning the details of a product, specifically, ""CAM - Mellowz #7 7g"" which looks like a 7-gram package of flower strain from the cannabis industry. However, I am unable to provide any additional information or context without a more specific question or descriptive context. + +Please feel free to ask further questions or provide more information, and I will do my best to assist you.",0 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlpnWPKvbD8krShfJl8tbEEmsQns,chat.completion,1687806399,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in the Backpack Boyz Bubblegum Gelato Sizzurp Tincture with 1000mg potency. While I'm an AI language model and therefore unable to verify the availability or specific details of this product, I can provide you with general guidance about tinctures and their uses. \n\nA tincture is a concentrated liquid herbal extract made by dissolving herbs or plants in a solvent like alcohol or glycerin. Tinctures are usually taken sublingually (under the tongue) or mixed into beverages or food. They can be used for various purposes, such as for relaxation, pain relief, and more, depending on the active ingredients and dosages.\n\nIf you have any questions regarding tinctures or would like guidance on how to use them, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 169, + ""total_tokens"": 228 +}","Hello! It seems like you're interested in the Backpack Boyz Bubblegum Gelato Sizzurp Tincture with 1000mg potency. While I'm an AI language model and therefore unable to verify the availability or specific details of this product, I can provide you with general guidance about tinctures and their uses. + +A tincture is a concentrated liquid herbal extract made by dissolving herbs or plants in a solvent like alcohol or glycerin. Tinctures are usually taken sublingually (under the tongue) or mixed into beverages or food. They can be used for various purposes, such as for relaxation, pain relief, and more, depending on the active ingredients and dosages. + +If you have any questions regarding tinctures or would like guidance on how to use them, feel free to ask.","Hello! It seems like you're interested in the Backpack Boyz Bubblegum Gelato Sizzurp Tincture with 1000mg potency. While I'm an AI language model and therefore unable to verify the availability or specific details of this product, I can provide you with general guidance about tinctures and their uses. + +A tincture is a concentrated liquid herbal extract made by dissolving herbs or plants in a solvent like alcohol or glycerin. Tinctures are usually taken sublingually (under the tongue) or mixed into beverages or food. They can be used for various purposes, such as for relaxation, pain relief, and more, depending on the active ingredients and dosages. + +If you have any questions regarding tinctures or would like guidance on how to use them, feel free to ask.",0 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vlq21TCWkc9Tw336MWaGaTVg8Zu7,chat.completion,1687806414,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you might be interested in Raw Garden's Pink Lemonade Crushed Diamonds 1g, which is a Concentrate. Raw Garden is known for its high-quality cannabis products and this Pink Lemonade Crushed Diamonds is no exception.\n\nPink Lemonade Crushed Diamonds is a potent cannabis concentrate made from the hybrid Pink Lemonade strain. This product offers a flavorful taste profile with sweet, fruity, and tangy notes, reminiscent of the refreshing summer beverage it is named after. With 1.0 gram of concentrate, you can expect a smooth and enjoyable experience.\n\nPlease note that this product is meant for users who are familiar with the use of cannabis concentrates. Enjoy responsibly and remember to follow all guidelines and local regulations surrounding cannabis consumption.\n\nIf you have any further questions or need more information, feel free to ask."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 167, + ""total_tokens"": 221 +}","Hello! It looks like you might be interested in Raw Garden's Pink Lemonade Crushed Diamonds 1g, which is a Concentrate. Raw Garden is known for its high-quality cannabis products and this Pink Lemonade Crushed Diamonds is no exception. + +Pink Lemonade Crushed Diamonds is a potent cannabis concentrate made from the hybrid Pink Lemonade strain. This product offers a flavorful taste profile with sweet, fruity, and tangy notes, reminiscent of the refreshing summer beverage it is named after. With 1.0 gram of concentrate, you can expect a smooth and enjoyable experience. + +Please note that this product is meant for users who are familiar with the use of cannabis concentrates. Enjoy responsibly and remember to follow all guidelines and local regulations surrounding cannabis consumption. + +If you have any further questions or need more information, feel free to ask.","Hello! It looks like you might be interested in Raw Garden's Pink Lemonade Crushed Diamonds 1g, which is a Concentrate. Raw Garden is known for its high-quality cannabis products and this Pink Lemonade Crushed Diamonds is no exception. + +Pink Lemonade Crushed Diamonds is a potent cannabis concentrate made from the hybrid Pink Lemonade strain. This product offers a flavorful taste profile with sweet, fruity, and tangy notes, reminiscent of the refreshing summer beverage it is named after. With 1.0 gram of concentrate, you can expect a smooth and enjoyable experience. + +Please note that this product is meant for users who are familiar with the use of cannabis concentrates. Enjoy responsibly and remember to follow all guidelines and local regulations surrounding cannabis consumption. + +If you have any further questions or need more information, feel free to ask.",0 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlqKxQAMCwhu56jO3L34RViZjhcg,chat.completion,1687806432,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""**Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g \n\n**Brand:** Jeeter\n\n**Category:** Infused Prerolls\n\n**Description:** Baby Jeeter Peaches offers a pack of 5 infused prerolls, providing a total of 2.5g of cannabis. These prerolls are crafted to enhance your smoking experience by combining top-shelf flower with a rich infusion of flavorful terpenes from peaches. This unique combination results in a smooth, enjoyable smoke with a delightful peach aroma.\n\nPlease note that the potency and availability of this product may vary depending on your location. Always consume responsibly and be aware of the laws and regulations in your specific area."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 148, + ""total_tokens"": 207 +}","**Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g + +**Brand:** Jeeter + +**Category:** Infused Prerolls + +**Description:** Baby Jeeter Peaches offers a pack of 5 infused prerolls, providing a total of 2.5g of cannabis. These prerolls are crafted to enhance your smoking experience by combining top-shelf flower with a rich infusion of flavorful terpenes from peaches. This unique combination results in a smooth, enjoyable smoke with a delightful peach aroma. + +Please note that the potency and availability of this product may vary depending on your location. Always consume responsibly and be aware of the laws and regulations in your specific area.","**Product Name:** Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g + +**Brand:** Jeeter + +**Category:** Infused Prerolls + +**Description:** Baby Jeeter Peaches offers a pack of 5 infused prerolls, providing a total of 2.5g of cannabis. These prerolls are crafted to enhance your smoking experience by combining top-shelf flower with a rich infusion of flavorful terpenes from peaches. This unique combination results in a smooth, enjoyable smoke with a delightful peach aroma. + +Please note that the potency and availability of this product may vary depending on your location. Always consume responsibly and be aware of the laws and regulations in your specific area.",0 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vlqdk93JQInquTqlsMJ71cAEniCX,chat.completion,1687806451,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're inquiring about a product called \""Truffle Pupil\"" by Ocean Breeze Cultivators. \n\nTruffle Pupil is an indoor-grown cannabis strain offered in a 1g blunt. Ocean Breeze Cultivators is the company responsible for cultivating this strain. Unfortunately, more specific information about the strain or its effects is not provided in the given query. \n\nIf you have further questions or need additional information about Truffle Pupil or Ocean Breeze Cultivators, please feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 110, + ""total_tokens"": 176 +}","Hello! It looks like you're inquiring about a product called ""Truffle Pupil"" by Ocean Breeze Cultivators. + +Truffle Pupil is an indoor-grown cannabis strain offered in a 1g blunt. Ocean Breeze Cultivators is the company responsible for cultivating this strain. Unfortunately, more specific information about the strain or its effects is not provided in the given query. + +If you have further questions or need additional information about Truffle Pupil or Ocean Breeze Cultivators, please feel free to ask!","Hello! It looks like you're inquiring about a product called ""Truffle Pupil"" by Ocean Breeze Cultivators. + +Truffle Pupil is an indoor-grown cannabis strain offered in a 1g blunt. Ocean Breeze Cultivators is the company responsible for cultivating this strain. Unfortunately, more specific information about the strain or its effects is not provided in the given query. + +If you have further questions or need additional information about Truffle Pupil or Ocean Breeze Cultivators, please feel free to ask!",0 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlqncrBWE88cXyyTPok95anewunX,chat.completion,1687806461,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are mentioning a Triple Scoop Preroll 1g Joint from Cookies. Cookies is a popular cannabis brand known for its quality products. The Triple Scoop Preroll is a pre-rolled joint containing 1 gram of Triple Scoop strain, which is a hybrid strain known for its potent effects and flavorful terpenes. Enjoying this preroll can provide a balanced and relaxing experience suitable for both experienced and novice consumers. Always consume cannabis responsibly and be aware of the laws in your jurisdiction."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 65, + ""completion_tokens"": 105, + ""total_tokens"": 170 +}","It seems like you are mentioning a Triple Scoop Preroll 1g Joint from Cookies. Cookies is a popular cannabis brand known for its quality products. The Triple Scoop Preroll is a pre-rolled joint containing 1 gram of Triple Scoop strain, which is a hybrid strain known for its potent effects and flavorful terpenes. Enjoying this preroll can provide a balanced and relaxing experience suitable for both experienced and novice consumers. Always consume cannabis responsibly and be aware of the laws in your jurisdiction.","It seems like you are mentioning a Triple Scoop Preroll 1g Joint from Cookies. Cookies is a popular cannabis brand known for its quality products. The Triple Scoop Preroll is a pre-rolled joint containing 1 gram of Triple Scoop strain, which is a hybrid strain known for its potent effects and flavorful terpenes. Enjoying this preroll can provide a balanced and relaxing experience suitable for both experienced and novice consumers. Always consume cannabis responsibly and be aware of the laws in your jurisdiction.",0 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vlr1WpJoPnHWfiEUcM3lLMBGVf6T,chat.completion,1687806475,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are interested in the STIIIZY Birthday Cake 1g Pod. This product is part of the VAPE PENS 1G category and typically contains 1.0 gram of vape concentrate. This particular Birthday Cake flavor offers a sweet, delicious, and smooth vaping experience. Please let me know if you have any questions or need additional information!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 77, + ""total_tokens"": 131 +}","Hello! It looks like you are interested in the STIIIZY Birthday Cake 1g Pod. This product is part of the VAPE PENS 1G category and typically contains 1.0 gram of vape concentrate. This particular Birthday Cake flavor offers a sweet, delicious, and smooth vaping experience. Please let me know if you have any questions or need additional information!","Hello! It looks like you are interested in the STIIIZY Birthday Cake 1g Pod. This product is part of the VAPE PENS 1G category and typically contains 1.0 gram of vape concentrate. This particular Birthday Cake flavor offers a sweet, delicious, and smooth vaping experience. Please let me know if you have any questions or need additional information!",0 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vlr8Smej27RhlDoeZoQ7iM2ynf4g,chat.completion,1687806482,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like the information provided is incomplete and not in a proper format. Can you please provide more context or clarify your question? Are you looking for product details or information on this specific cannabis-infused joint?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 42, + ""total_tokens"": 98 +}",It seems like the information provided is incomplete and not in a proper format. Can you please provide more context or clarify your question? Are you looking for product details or information on this specific cannabis-infused joint?,It seems like the information provided is incomplete and not in a proper format. Can you please provide more context or clarify your question? Are you looking for product details or information on this specific cannabis-infused joint?,0 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VlrFd3zdJGsDoP3SVcEsrkexhTks,chat.completion,1687806489,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for providing information on Kanha Nano Blood Orange Bliss Indica Gummies. These gummies contain 100mg of THC per 10-count package, making each gummy contain 10mg of THC. Kanha is widely known for their high-quality cannabis-infused products. With a Blood Orange Bliss flavor, these Indica gummies offer a delightful and convenient way to enjoy the benefits of THC in a tasty and discreet form.\n\nPlease note that these gummies are meant for those who are of legal age and in areas where recreational or medicinal cannabis is permitted. It is crucial to start with a low dose if you're a first-timer or have a low tolerance, and to remember that the effects may take some time to kick in, so be patient before consuming more. Always consume responsibly and observe local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 167, + ""total_tokens"": 224 +}","Thank you for providing information on Kanha Nano Blood Orange Bliss Indica Gummies. These gummies contain 100mg of THC per 10-count package, making each gummy contain 10mg of THC. Kanha is widely known for their high-quality cannabis-infused products. With a Blood Orange Bliss flavor, these Indica gummies offer a delightful and convenient way to enjoy the benefits of THC in a tasty and discreet form. + +Please note that these gummies are meant for those who are of legal age and in areas where recreational or medicinal cannabis is permitted. It is crucial to start with a low dose if you're a first-timer or have a low tolerance, and to remember that the effects may take some time to kick in, so be patient before consuming more. Always consume responsibly and observe local laws and regulations.","Thank you for providing information on Kanha Nano Blood Orange Bliss Indica Gummies. These gummies contain 100mg of THC per 10-count package, making each gummy contain 10mg of THC. Kanha is widely known for their high-quality cannabis-infused products. With a Blood Orange Bliss flavor, these Indica gummies offer a delightful and convenient way to enjoy the benefits of THC in a tasty and discreet form. + +Please note that these gummies are meant for those who are of legal age and in areas where recreational or medicinal cannabis is permitted. It is crucial to start with a low dose if you're a first-timer or have a low tolerance, and to remember that the effects may take some time to kick in, so be patient before consuming more. Always consume responsibly and observe local laws and regulations.",0 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VlrXQwSkMt0rMBhBknjjuBfYsaL1,chat.completion,1687806507,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are interested in information about BOBBI HYLL Indoor flower at 3.5g. Here's a brief overview:\n\nProduct: BOBBI HYLL\nType: Indoor Flower\nBrand: Fresca\nWeight: 3.5g\n\nBOBBI HYLL is an indoor-grown cannabis flower by Fresca. The 3.5g weight makes this a suitable option for moderate users looking for a quality cannabis experience. As an indoor-grown product, BOBBI HYLL demonstrates careful cultivation practices, harnessing an optimal environment to produce quality buds. The brand, Fresca, is known for its commitment to producing flowers with natural flavors and fragrances.\n\nWhile the specific strain details aren't provided, you can generally expect a cannabis flower product like this to provide a range of effects based on its THC/CBD percentage and terpene profile.\n\nPlease make sure to use this product responsibly and follow your local regulations and laws surrounding cannabis usage."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 200, + ""total_tokens"": 251 +}","Hello! It looks like you are interested in information about BOBBI HYLL Indoor flower at 3.5g. Here's a brief overview: + +Product: BOBBI HYLL +Type: Indoor Flower +Brand: Fresca +Weight: 3.5g + +BOBBI HYLL is an indoor-grown cannabis flower by Fresca. The 3.5g weight makes this a suitable option for moderate users looking for a quality cannabis experience. As an indoor-grown product, BOBBI HYLL demonstrates careful cultivation practices, harnessing an optimal environment to produce quality buds. The brand, Fresca, is known for its commitment to producing flowers with natural flavors and fragrances. + +While the specific strain details aren't provided, you can generally expect a cannabis flower product like this to provide a range of effects based on its THC/CBD percentage and terpene profile. + +Please make sure to use this product responsibly and follow your local regulations and laws surrounding cannabis usage.","Hello! It looks like you are interested in information about BOBBI HYLL Indoor flower at 3.5g. Here's a brief overview: + +Product: BOBBI HYLL +Type: Indoor Flower +Brand: Fresca +Weight: 3.5g + +BOBBI HYLL is an indoor-grown cannabis flower by Fresca. The 3.5g weight makes this a suitable option for moderate users looking for a quality cannabis experience. As an indoor-grown product, BOBBI HYLL demonstrates careful cultivation practices, harnessing an optimal environment to produce quality buds. The brand, Fresca, is known for its commitment to producing flowers with natural flavors and fragrances. + +While the specific strain details aren't provided, you can generally expect a cannabis flower product like this to provide a range of effects based on its THC/CBD percentage and terpene profile. + +Please make sure to use this product responsibly and follow your local regulations and laws surrounding cannabis usage.",0 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlrrA1FGUKEfPX4SyRAlAKhvgeWH,chat.completion,1687806527,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Flav Blueberry Belts containing 100mg of THC. These are edible cannabis-infused gummies made by the company Flav. The product offers a delicious blueberry flavor and is designed to provide a consistent dose of THC for a reliable and enjoyable experience.\n\nPlease note that cannabis products are intended for individuals who are of legal age, and the effects of THC can vary from person-to-person. Always be sure to consume responsibly and adhere to local laws and guidelines.\n\nIf you have any further questions or need more information about this product, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 122, + ""total_tokens"": 173 +}","Hello! It looks like you're interested in Flav Blueberry Belts containing 100mg of THC. These are edible cannabis-infused gummies made by the company Flav. The product offers a delicious blueberry flavor and is designed to provide a consistent dose of THC for a reliable and enjoyable experience. + +Please note that cannabis products are intended for individuals who are of legal age, and the effects of THC can vary from person-to-person. Always be sure to consume responsibly and adhere to local laws and guidelines. + +If you have any further questions or need more information about this product, feel free to ask!","Hello! It looks like you're interested in Flav Blueberry Belts containing 100mg of THC. These are edible cannabis-infused gummies made by the company Flav. The product offers a delicious blueberry flavor and is designed to provide a consistent dose of THC for a reliable and enjoyable experience. + +Please note that cannabis products are intended for individuals who are of legal age, and the effects of THC can vary from person-to-person. Always be sure to consume responsibly and adhere to local laws and guidelines. + +If you have any further questions or need more information about this product, feel free to ask!",0 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vls7Dkg6oLhz6wwwgvcft433tAz9,chat.completion,1687806543,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems that you are searching for information on the \""Cherry Pie - 1g - Pod\"" product from Left Coast Extracts.\n\nCherry Pie is a cannabis strain that is well-known for its strong sweet and sour cherry flavor, as well as its calming and uplifting effects. The 1g pod refers to a vape cartridge containing 1 gram of Cherry Pie cannabis concentrate, specifically made for vaping. Left Coast Extracts is a popular cannabis brand focused on creating high-quality vape products.\n\nPlease note that vaping cannabis products is only legal in certain locations and for individuals of legal age, so make sure to check the laws in your area and consume responsibly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 46, + ""completion_tokens"": 132, + ""total_tokens"": 178 +}","It seems that you are searching for information on the ""Cherry Pie - 1g - Pod"" product from Left Coast Extracts. + +Cherry Pie is a cannabis strain that is well-known for its strong sweet and sour cherry flavor, as well as its calming and uplifting effects. The 1g pod refers to a vape cartridge containing 1 gram of Cherry Pie cannabis concentrate, specifically made for vaping. Left Coast Extracts is a popular cannabis brand focused on creating high-quality vape products. + +Please note that vaping cannabis products is only legal in certain locations and for individuals of legal age, so make sure to check the laws in your area and consume responsibly.","It seems that you are searching for information on the ""Cherry Pie - 1g - Pod"" product from Left Coast Extracts. + +Cherry Pie is a cannabis strain that is well-known for its strong sweet and sour cherry flavor, as well as its calming and uplifting effects. The 1g pod refers to a vape cartridge containing 1 gram of Cherry Pie cannabis concentrate, specifically made for vaping. Left Coast Extracts is a popular cannabis brand focused on creating high-quality vape products. + +Please note that vaping cannabis products is only legal in certain locations and for individuals of legal age, so make sure to check the laws in your area and consume responsibly.",0 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlsLFy3noD62CWyPowY5PpUbESTj,chat.completion,1687806557,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in \""Emerald Cut\"" - a 1g joint by Minntz designed for indoor use. Emerald Cut is a strain produced by Minntz that offers a unique smoking experience. Unfortunately, I don't have enough information about its specific effects and characteristics. \n\nTo get the most out of your experience, I recommend visiting Minntz's website or reaching out to a local dispensary for more information on the Emerald Cut strain. They can provide you with details about the strain's effects, potency, and any other attributes that you may be interested in learning about.\n\nRemember to consume responsibly and follow the laws and regulations in your area. Enjoy!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 139, + ""total_tokens"": 192 +}","Hello! It seems like you're interested in ""Emerald Cut"" - a 1g joint by Minntz designed for indoor use. Emerald Cut is a strain produced by Minntz that offers a unique smoking experience. Unfortunately, I don't have enough information about its specific effects and characteristics. + +To get the most out of your experience, I recommend visiting Minntz's website or reaching out to a local dispensary for more information on the Emerald Cut strain. They can provide you with details about the strain's effects, potency, and any other attributes that you may be interested in learning about. + +Remember to consume responsibly and follow the laws and regulations in your area. Enjoy!","Hello! It seems like you're interested in ""Emerald Cut"" - a 1g joint by Minntz designed for indoor use. Emerald Cut is a strain produced by Minntz that offers a unique smoking experience. Unfortunately, I don't have enough information about its specific effects and characteristics. + +To get the most out of your experience, I recommend visiting Minntz's website or reaching out to a local dispensary for more information on the Emerald Cut strain. They can provide you with details about the strain's effects, potency, and any other attributes that you may be interested in learning about. + +Remember to consume responsibly and follow the laws and regulations in your area. Enjoy!",0 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlsYCh12v0DT00SCpYSgISookL0n,chat.completion,1687806570,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're inquiring about The Growers Circle's Double Down, an Indoor-grown cannabis strain available in a 3.5g pack. However, there is not enough information provided for a detailed response. Can you please clarify your question or provide more information about what you're looking for?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 64, + ""total_tokens"": 115 +}","Hello! It seems like you're inquiring about The Growers Circle's Double Down, an Indoor-grown cannabis strain available in a 3.5g pack. However, there is not enough information provided for a detailed response. Can you please clarify your question or provide more information about what you're looking for?","Hello! It seems like you're inquiring about The Growers Circle's Double Down, an Indoor-grown cannabis strain available in a 3.5g pack. However, there is not enough information provided for a detailed response. Can you please clarify your question or provide more information about what you're looking for?",0 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VlsikaQsM3Q64mLeIWkzZkny2Wys,chat.completion,1687806580,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nProduct Category: Flowers\nDescription:\n\nThe Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a 14g bag of flowers that provides a delicious and highly enjoyable experience for cannabis enthusiasts. This premium shake features Blue Dream, a popular hybrid strain, that delivers a perfect balance between powerful full-body relaxation and uplifting cerebral stimulation. The product's Sativa-dominant effects make it suitable for controlling symptoms such as chronic pain, depression, and stress.\n\nThese sugar shakes are ideal for users who prefer to roll their own joints, pack bowls, or create their own cannabis-infused edibles. Pacific Stone's Blue Dream Roll Your Own 14g Bag ensures that you are working with a high-quality mixture of premium flowers.\n\nPlease note that effects may vary depending on the individual and their cannabis experience. Always follow your local cannabis regulations and consult with a healthcare professional if consuming cannabis for any medical reasons."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 199, + ""total_tokens"": 246 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Product Category: Flowers +Description: + +The Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a 14g bag of flowers that provides a delicious and highly enjoyable experience for cannabis enthusiasts. This premium shake features Blue Dream, a popular hybrid strain, that delivers a perfect balance between powerful full-body relaxation and uplifting cerebral stimulation. The product's Sativa-dominant effects make it suitable for controlling symptoms such as chronic pain, depression, and stress. + +These sugar shakes are ideal for users who prefer to roll their own joints, pack bowls, or create their own cannabis-infused edibles. Pacific Stone's Blue Dream Roll Your Own 14g Bag ensures that you are working with a high-quality mixture of premium flowers. + +Please note that effects may vary depending on the individual and their cannabis experience. Always follow your local cannabis regulations and consult with a healthcare professional if consuming cannabis for any medical reasons.","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Product Category: Flowers +Description: + +The Blue Dream Roll Your Own Sugar Shake by Pacific Stone is a 14g bag of flowers that provides a delicious and highly enjoyable experience for cannabis enthusiasts. This premium shake features Blue Dream, a popular hybrid strain, that delivers a perfect balance between powerful full-body relaxation and uplifting cerebral stimulation. The product's Sativa-dominant effects make it suitable for controlling symptoms such as chronic pain, depression, and stress. + +These sugar shakes are ideal for users who prefer to roll their own joints, pack bowls, or create their own cannabis-infused edibles. Pacific Stone's Blue Dream Roll Your Own 14g Bag ensures that you are working with a high-quality mixture of premium flowers. + +Please note that effects may vary depending on the individual and their cannabis experience. Always follow your local cannabis regulations and consult with a healthcare professional if consuming cannabis for any medical reasons.",0 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vlt2HqaqHVuwtuEruvfNAPucUprk,chat.completion,1687806600,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are referring to a product called \""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\"" This product appears to be a pack of pre-rolled joints containing a mix of two cannabis strains, Zoo Dawg and Cosa Nostra. Each pack contains 5 joints with a total weight of 2.5 grams. \n\nPlease note that if you are seeking information about a specific product, it is important to consult the manufacturer or retailer directly. Availability, pricing, and other information may vary depending on your location and the specific business in question.\n\nAlways remember to consume cannabis responsibly and legally according to your local regulations, and consult your doctor if you have any concerns or questions about your own consumption."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 161, + ""total_tokens"": 222 +}","Hello! It seems like you are referring to a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" This product appears to be a pack of pre-rolled joints containing a mix of two cannabis strains, Zoo Dawg and Cosa Nostra. Each pack contains 5 joints with a total weight of 2.5 grams. + +Please note that if you are seeking information about a specific product, it is important to consult the manufacturer or retailer directly. Availability, pricing, and other information may vary depending on your location and the specific business in question. + +Always remember to consume cannabis responsibly and legally according to your local regulations, and consult your doctor if you have any concerns or questions about your own consumption.","Hello! It seems like you are referring to a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" This product appears to be a pack of pre-rolled joints containing a mix of two cannabis strains, Zoo Dawg and Cosa Nostra. Each pack contains 5 joints with a total weight of 2.5 grams. + +Please note that if you are seeking information about a specific product, it is important to consult the manufacturer or retailer directly. Availability, pricing, and other information may vary depending on your location and the specific business in question. + +Always remember to consume cannabis responsibly and legally according to your local regulations, and consult your doctor if you have any concerns or questions about your own consumption.",0 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VltNllMVqq8jo9EnHCiiyfX6ZwhY,chat.completion,1687806621,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information on the product: Flight Bites - S'mores - Gummy - 10ct - 100mg.\n\nSince I received limited information, I am unable to provide you with specific details about the product. However, I can provide some general information about similar products.\n\nFlight Bites generally refers to a type of cannabis-infused edible in the form of gummies. In this case, the product seems to be a S'mores flavored gummy.\n\nThe mentioned 10ct probably refers to 10 individual gummies being in a pack, and 100mg might be the total THC content of the package. Usually, gummies are individually dosed for easier consumption and consistent dosage.\n\nPlease keep in mind that THC is the primary psychoactive compound found in cannabis, and products containing THC are generally not recommended for individuals under the legal consuming age in their respective jurisdiction. If you are looking for more information about this specific product, I would recommend visiting the official Flight Bites website or contacting the manufacturer directly.\n\nPlease remember to consume THC products responsibly and only when it is legal in your local area to do so."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 231, + ""total_tokens"": 288 +}","It seems like you are looking for information on the product: Flight Bites - S'mores - Gummy - 10ct - 100mg. + +Since I received limited information, I am unable to provide you with specific details about the product. However, I can provide some general information about similar products. + +Flight Bites generally refers to a type of cannabis-infused edible in the form of gummies. In this case, the product seems to be a S'mores flavored gummy. + +The mentioned 10ct probably refers to 10 individual gummies being in a pack, and 100mg might be the total THC content of the package. Usually, gummies are individually dosed for easier consumption and consistent dosage. + +Please keep in mind that THC is the primary psychoactive compound found in cannabis, and products containing THC are generally not recommended for individuals under the legal consuming age in their respective jurisdiction. If you are looking for more information about this specific product, I would recommend visiting the official Flight Bites website or contacting the manufacturer directly. + +Please remember to consume THC products responsibly and only when it is legal in your local area to do so.","It seems like you are looking for information on the product: Flight Bites - S'mores - Gummy - 10ct - 100mg. + +Since I received limited information, I am unable to provide you with specific details about the product. However, I can provide some general information about similar products. + +Flight Bites generally refers to a type of cannabis-infused edible in the form of gummies. In this case, the product seems to be a S'mores flavored gummy. + +The mentioned 10ct probably refers to 10 individual gummies being in a pack, and 100mg might be the total THC content of the package. Usually, gummies are individually dosed for easier consumption and consistent dosage. + +Please keep in mind that THC is the primary psychoactive compound found in cannabis, and products containing THC are generally not recommended for individuals under the legal consuming age in their respective jurisdiction. If you are looking for more information about this specific product, I would recommend visiting the official Flight Bites website or contacting the manufacturer directly. + +Please remember to consume THC products responsibly and only when it is legal in your local area to do so.",0 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VlthO1oQkfiS19FvciNcR9NXwd6i,chat.completion,1687806641,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're searching for information on Chill Medicated Watermelon Syrup with 250mg. Chill Medicated is known for their cannabis-infused products, which are designed for relaxation and pain relief.\n\nProduct: Chill Medicated - Watermelon - Syrup - 250mg\nBrand: Chill Medicated\n\nWhile specific details are not provided in your query, this product likely contains 250mg of cannabis-derived compounds, such as THC or CBD. These compounds are known for their medicinal properties and can help with various ailments such as pain, anxiety, and inflammation.\n\nWatermelon syrup is a flavored addition to beverages and can be mixed into drinks like soda, lemonade, or even water for a tasty and refreshing way to consume cannabis.\n\nPlease note that it is essential to follow proper dosing recommendations and be aware of the effects of THC or CBD on your body, especially if you're new to cannabis products. Also, ensure that you're of legal age and consuming it in an area where it is allowed.\n\nIf you have any more specific questions or need more information, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 223, + ""total_tokens"": 278 +}","Hello! It looks like you're searching for information on Chill Medicated Watermelon Syrup with 250mg. Chill Medicated is known for their cannabis-infused products, which are designed for relaxation and pain relief. + +Product: Chill Medicated - Watermelon - Syrup - 250mg +Brand: Chill Medicated + +While specific details are not provided in your query, this product likely contains 250mg of cannabis-derived compounds, such as THC or CBD. These compounds are known for their medicinal properties and can help with various ailments such as pain, anxiety, and inflammation. + +Watermelon syrup is a flavored addition to beverages and can be mixed into drinks like soda, lemonade, or even water for a tasty and refreshing way to consume cannabis. + +Please note that it is essential to follow proper dosing recommendations and be aware of the effects of THC or CBD on your body, especially if you're new to cannabis products. Also, ensure that you're of legal age and consuming it in an area where it is allowed. + +If you have any more specific questions or need more information, feel free to ask!","Hello! It looks like you're searching for information on Chill Medicated Watermelon Syrup with 250mg. Chill Medicated is known for their cannabis-infused products, which are designed for relaxation and pain relief. + +Product: Chill Medicated - Watermelon - Syrup - 250mg +Brand: Chill Medicated + +While specific details are not provided in your query, this product likely contains 250mg of cannabis-derived compounds, such as THC or CBD. These compounds are known for their medicinal properties and can help with various ailments such as pain, anxiety, and inflammation. + +Watermelon syrup is a flavored addition to beverages and can be mixed into drinks like soda, lemonade, or even water for a tasty and refreshing way to consume cannabis. + +Please note that it is essential to follow proper dosing recommendations and be aware of the effects of THC or CBD on your body, especially if you're new to cannabis products. Also, ensure that you're of legal age and consuming it in an area where it is allowed. + +If you have any more specific questions or need more information, feel free to ask!",0 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vlu4smDDBwy1CnhFsp2iSknvqylD,chat.completion,1687806664,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information regarding Feelz - Space Cowboy 3.5g.\n\nUnfortunately, the details provided are insufficient for me to assist you accurately. Can you please provide more context or clarify your request? If you're looking for information about a specific product, it would be helpful to provide more details about the product or the purpose of the inquiry."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 76, + ""total_tokens"": 128 +}","Hello! It seems like you are looking for information regarding Feelz - Space Cowboy 3.5g. + +Unfortunately, the details provided are insufficient for me to assist you accurately. Can you please provide more context or clarify your request? If you're looking for information about a specific product, it would be helpful to provide more details about the product or the purpose of the inquiry.","Hello! It seems like you are looking for information regarding Feelz - Space Cowboy 3.5g. + +Unfortunately, the details provided are insufficient for me to assist you accurately. Can you please provide more context or clarify your request? If you're looking for information about a specific product, it would be helpful to provide more details about the product or the purpose of the inquiry.",0 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VluDFzrC6lat27myyC3whUF0WJ23,chat.completion,1687806673,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're interested in purchasing the Champelli Xclusivo 3.5g Eighths. Here is some information on the product:\n\nProduct: Champelli Xclusivo 3.5g Eighths\nBrand: Champelli\nType: Packed Bud\n\nThe Champelli Xclusivo 3.5g Eighths is a high-quality cannabis product that offers an enjoyable and unique experience. This packed bud has been carefully cultivated by the reputable brand of Champelli, ensuring the best flavors and potency, providing you the ultimate satisfaction.\n\nTo make a purchase or get more information about this product, please visit a local dispensary or a reliable online store. Make sure to consume responsibly and follow local regulations on marijuana consumption."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 72, + ""completion_tokens"": 153, + ""total_tokens"": 225 +}","Hello! It seems like you're interested in purchasing the Champelli Xclusivo 3.5g Eighths. Here is some information on the product: + +Product: Champelli Xclusivo 3.5g Eighths +Brand: Champelli +Type: Packed Bud + +The Champelli Xclusivo 3.5g Eighths is a high-quality cannabis product that offers an enjoyable and unique experience. This packed bud has been carefully cultivated by the reputable brand of Champelli, ensuring the best flavors and potency, providing you the ultimate satisfaction. + +To make a purchase or get more information about this product, please visit a local dispensary or a reliable online store. Make sure to consume responsibly and follow local regulations on marijuana consumption.","Hello! It seems like you're interested in purchasing the Champelli Xclusivo 3.5g Eighths. Here is some information on the product: + +Product: Champelli Xclusivo 3.5g Eighths +Brand: Champelli +Type: Packed Bud + +The Champelli Xclusivo 3.5g Eighths is a high-quality cannabis product that offers an enjoyable and unique experience. This packed bud has been carefully cultivated by the reputable brand of Champelli, ensuring the best flavors and potency, providing you the ultimate satisfaction. + +To make a purchase or get more information about this product, please visit a local dispensary or a reliable online store. Make sure to consume responsibly and follow local regulations on marijuana consumption.",0 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VluXWir89qm23FNLk2sL3q118mEc,chat.completion,1687806693,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are interested in Mellowz #7, which is a 7-gram (7g) cannabis flower product. However, some details are missing or unclear in your message. If you have any specific questions or need further information, please let me know and I'd be more than happy to help."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 50, + ""completion_tokens"": 67, + ""total_tokens"": 117 +}","Hello! It seems like you are interested in Mellowz #7, which is a 7-gram (7g) cannabis flower product. However, some details are missing or unclear in your message. If you have any specific questions or need further information, please let me know and I'd be more than happy to help.","Hello! It seems like you are interested in Mellowz #7, which is a 7-gram (7g) cannabis flower product. However, some details are missing or unclear in your message. If you have any specific questions or need further information, please let me know and I'd be more than happy to help.",0 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VlujWxn2Egac5tPipeOHFivMYV97,chat.completion,1687806705,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are looking for information on the \""Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg\"" tincture. Unfortunately, I couldn't find any specific information about this product as my knowledge is based on pre-existing information up to September 2021. \n\nHowever, I can provide some general information about tinctures. Cannabis tinctures are alcohol or oil-based extracts that are usually taken sublingually (under the tongue) or added to food or beverages. They provide an alternative method of consumption for those who prefer not to smoke or vape. Tinctures can range in potency, and the 1000mg you mentioned likely refers to the amount of total cannabinoids present in the product.\n\nPlease make sure you consult with a qualified professional or visit a licensed dispensary for accurate and up-to-date information on any cannabis products you intend to use."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 183, + ""total_tokens"": 243 +}","Hello! It seems you are looking for information on the ""Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg"" tincture. Unfortunately, I couldn't find any specific information about this product as my knowledge is based on pre-existing information up to September 2021. + +However, I can provide some general information about tinctures. Cannabis tinctures are alcohol or oil-based extracts that are usually taken sublingually (under the tongue) or added to food or beverages. They provide an alternative method of consumption for those who prefer not to smoke or vape. Tinctures can range in potency, and the 1000mg you mentioned likely refers to the amount of total cannabinoids present in the product. + +Please make sure you consult with a qualified professional or visit a licensed dispensary for accurate and up-to-date information on any cannabis products you intend to use.","Hello! It seems you are looking for information on the ""Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg"" tincture. Unfortunately, I couldn't find any specific information about this product as my knowledge is based on pre-existing information up to September 2021. + +However, I can provide some general information about tinctures. Cannabis tinctures are alcohol or oil-based extracts that are usually taken sublingually (under the tongue) or added to food or beverages. They provide an alternative method of consumption for those who prefer not to smoke or vape. Tinctures can range in potency, and the 1000mg you mentioned likely refers to the amount of total cannabinoids present in the product. + +Please make sure you consult with a qualified professional or visit a licensed dispensary for accurate and up-to-date information on any cannabis products you intend to use.",0 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vlv0NgrY31V6an2cmINk6T4co565,chat.completion,1687806722,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are looking for information on Raw Garden Pink Lemonade Crushed Diamonds 1g. Raw Garden is a well-known brand that creates high-quality cannabis products, and in this case, they have a concentrate called Pink Lemonade Crushed Diamonds. It is a 1-gram product that is used for enjoying the terpenes and potency of the cannabis plant in a concentrated form. Concentrates are generally more potent than regular flower and are often used for faster and stronger effects. The Pink Lemonade Crushed Diamonds might have a fruity, citrusy flavor, reminiscent of pink lemonade. However, it's essential to use concentrates responsibly and in moderation to avoid any adverse effects."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 139, + ""total_tokens"": 194 +}","It seems like you are looking for information on Raw Garden Pink Lemonade Crushed Diamonds 1g. Raw Garden is a well-known brand that creates high-quality cannabis products, and in this case, they have a concentrate called Pink Lemonade Crushed Diamonds. It is a 1-gram product that is used for enjoying the terpenes and potency of the cannabis plant in a concentrated form. Concentrates are generally more potent than regular flower and are often used for faster and stronger effects. The Pink Lemonade Crushed Diamonds might have a fruity, citrusy flavor, reminiscent of pink lemonade. However, it's essential to use concentrates responsibly and in moderation to avoid any adverse effects.","It seems like you are looking for information on Raw Garden Pink Lemonade Crushed Diamonds 1g. Raw Garden is a well-known brand that creates high-quality cannabis products, and in this case, they have a concentrate called Pink Lemonade Crushed Diamonds. It is a 1-gram product that is used for enjoying the terpenes and potency of the cannabis plant in a concentrated form. Concentrates are generally more potent than regular flower and are often used for faster and stronger effects. The Pink Lemonade Crushed Diamonds might have a fruity, citrusy flavor, reminiscent of pink lemonade. However, it's essential to use concentrates responsibly and in moderation to avoid any adverse effects.",0 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VlvEEtVoQuWRIBCUEKBFDTsN6Bou,chat.completion,1687806736,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're looking for some information on the Baby Jeeter Peaches Infused Preroll 5-pack, which contains a total of 2.5g of product. \n\nProduct Name: Baby Jeeter Peaches Infused Preroll 5pk - 2.5g\nBrand: Jeeter\nType: Infused Prerolls\nTHC Content: Not provided\nCBD Content: Not provided\n\nUnfortunately, the THC and CBD contents are not specified. Baby Jeeter Peaches are cannabis-infused prerolls produced by Jeeter, a company well-known for its quality prerolls. These infused prerolls provide users with a convenient and flavorful way to enjoy their cannabis.\n\nSince the THC and CBD content is not mentioned, it is crucial to check with your local dispensaries or the manufacturer for an accurate description of the product's cannabinoid content. Always consume responsibly and follow the recommended dosages for your cannabis consumption."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 190, + ""total_tokens"": 250 +}","It seems like you're looking for some information on the Baby Jeeter Peaches Infused Preroll 5-pack, which contains a total of 2.5g of product. + +Product Name: Baby Jeeter Peaches Infused Preroll 5pk - 2.5g +Brand: Jeeter +Type: Infused Prerolls +THC Content: Not provided +CBD Content: Not provided + +Unfortunately, the THC and CBD contents are not specified. Baby Jeeter Peaches are cannabis-infused prerolls produced by Jeeter, a company well-known for its quality prerolls. These infused prerolls provide users with a convenient and flavorful way to enjoy their cannabis. + +Since the THC and CBD content is not mentioned, it is crucial to check with your local dispensaries or the manufacturer for an accurate description of the product's cannabinoid content. Always consume responsibly and follow the recommended dosages for your cannabis consumption.","It seems like you're looking for some information on the Baby Jeeter Peaches Infused Preroll 5-pack, which contains a total of 2.5g of product. + +Product Name: Baby Jeeter Peaches Infused Preroll 5pk - 2.5g +Brand: Jeeter +Type: Infused Prerolls +THC Content: Not provided +CBD Content: Not provided + +Unfortunately, the THC and CBD contents are not specified. Baby Jeeter Peaches are cannabis-infused prerolls produced by Jeeter, a company well-known for its quality prerolls. These infused prerolls provide users with a convenient and flavorful way to enjoy their cannabis. + +Since the THC and CBD content is not mentioned, it is crucial to check with your local dispensaries or the manufacturer for an accurate description of the product's cannabinoid content. Always consume responsibly and follow the recommended dosages for your cannabis consumption.",0 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VlvX1OIP1FxzBSfEBJHTZCDQEjHk,chat.completion,1687806755,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see you have an interest in Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt. Here's some information about it:\n\nProduct: Truffle Pupil Indoor Blunt\nProducer: Ocean Breeze Cultivators\nWeight: 1g\n\nTruffle Pupil is a unique blend crafted by Ocean Breeze Cultivators that offers a pleasant smoking experience. As an indoor-grow cultivar, Truffle Pupil is carefully developed in a controlled environment, ensuring optimal growth and potency.\n\nThe Truffle Pupil Indoor Blunt is pre-rolled and packed with 1 gram of high-quality cannabis. The strain boasts a diverse mix of flavors and aromas, combining earthy undertones with a hint of sweetness. The unique combination is reminiscent of truffles, giving it its memorable name.\n\nAs for the effects, Truffle Pupil offers a balanced high, with both uplifting and relaxing properties. You can expect a cerebral buzz that stimulates creativity and focus, making it ideal for artistic or intellectual tasks. As the experience progresses, you might also enjoy a soothing body effect that provides physical relaxation without causing couch-lock or sedation.\n\nRemember to consume responsibly and enjoy the unique experience offered by Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 258, + ""total_tokens"": 325 +}","Hello! I see you have an interest in Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt. Here's some information about it: + +Product: Truffle Pupil Indoor Blunt +Producer: Ocean Breeze Cultivators +Weight: 1g + +Truffle Pupil is a unique blend crafted by Ocean Breeze Cultivators that offers a pleasant smoking experience. As an indoor-grow cultivar, Truffle Pupil is carefully developed in a controlled environment, ensuring optimal growth and potency. + +The Truffle Pupil Indoor Blunt is pre-rolled and packed with 1 gram of high-quality cannabis. The strain boasts a diverse mix of flavors and aromas, combining earthy undertones with a hint of sweetness. The unique combination is reminiscent of truffles, giving it its memorable name. + +As for the effects, Truffle Pupil offers a balanced high, with both uplifting and relaxing properties. You can expect a cerebral buzz that stimulates creativity and focus, making it ideal for artistic or intellectual tasks. As the experience progresses, you might also enjoy a soothing body effect that provides physical relaxation without causing couch-lock or sedation. + +Remember to consume responsibly and enjoy the unique experience offered by Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt!","Hello! I see you have an interest in Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt. Here's some information about it: + +Product: Truffle Pupil Indoor Blunt +Producer: Ocean Breeze Cultivators +Weight: 1g + +Truffle Pupil is a unique blend crafted by Ocean Breeze Cultivators that offers a pleasant smoking experience. As an indoor-grow cultivar, Truffle Pupil is carefully developed in a controlled environment, ensuring optimal growth and potency. + +The Truffle Pupil Indoor Blunt is pre-rolled and packed with 1 gram of high-quality cannabis. The strain boasts a diverse mix of flavors and aromas, combining earthy undertones with a hint of sweetness. The unique combination is reminiscent of truffles, giving it its memorable name. + +As for the effects, Truffle Pupil offers a balanced high, with both uplifting and relaxing properties. You can expect a cerebral buzz that stimulates creativity and focus, making it ideal for artistic or intellectual tasks. As the experience progresses, you might also enjoy a soothing body effect that provides physical relaxation without causing couch-lock or sedation. + +Remember to consume responsibly and enjoy the unique experience offered by Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt!",0 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VlvzBDAxpCh5M6geXhv1u5Nffk2O,chat.completion,1687806783,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are mentioning a product: Cookies Triple Scoop Preroll 1g - a joint. \n\nCookies is a well-known cannabis brand, and their Triple Scoop Preroll is a pre-rolled joint containing 1 gram of cannabis. The Triple Scoop strain is a hybrid that offers a mix of cerebral stimulation and body relaxation. This preroll is perfect for those looking to enjoy the benefits of cannabis without the hassle of rolling their own joint. Remember to consume responsibly and follow local laws and regulations regarding cannabis use."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 109, + ""total_tokens"": 175 +}","It seems like you are mentioning a product: Cookies Triple Scoop Preroll 1g - a joint. + +Cookies is a well-known cannabis brand, and their Triple Scoop Preroll is a pre-rolled joint containing 1 gram of cannabis. The Triple Scoop strain is a hybrid that offers a mix of cerebral stimulation and body relaxation. This preroll is perfect for those looking to enjoy the benefits of cannabis without the hassle of rolling their own joint. Remember to consume responsibly and follow local laws and regulations regarding cannabis use.","It seems like you are mentioning a product: Cookies Triple Scoop Preroll 1g - a joint. + +Cookies is a well-known cannabis brand, and their Triple Scoop Preroll is a pre-rolled joint containing 1 gram of cannabis. The Triple Scoop strain is a hybrid that offers a mix of cerebral stimulation and body relaxation. This preroll is perfect for those looking to enjoy the benefits of cannabis without the hassle of rolling their own joint. Remember to consume responsibly and follow local laws and regulations regarding cannabis use.",0 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VlwGpa2mPVV25qiuaHDpXqchVmhk,chat.completion,1687806800,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen provides an enjoyable and convenient way to consume cannabis. Here are some details about the product:\n\nProduct Name: STIIIZY - Birthday Cake Pod 1g\nCategory: VAPE PENS 1G\nSize: 1.0 gram\n\nPlease note that the availability of this product may vary depending on your location and local regulations. Be sure to check with your nearest dispensary for further information. If you have any other questions or need assistance, feel free to ask!\n"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 122, + ""total_tokens"": 177 +}","Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen provides an enjoyable and convenient way to consume cannabis. Here are some details about the product: + +Product Name: STIIIZY - Birthday Cake Pod 1g +Category: VAPE PENS 1G +Size: 1.0 gram + +Please note that the availability of this product may vary depending on your location and local regulations. Be sure to check with your nearest dispensary for further information. If you have any other questions or need assistance, feel free to ask! +","Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen provides an enjoyable and convenient way to consume cannabis. Here are some details about the product: + +Product Name: STIIIZY - Birthday Cake Pod 1g +Category: VAPE PENS 1G +Size: 1.0 gram + +Please note that the availability of this product may vary depending on your location and local regulations. Be sure to check with your nearest dispensary for further information. If you have any other questions or need assistance, feel free to ask! +",0 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VlwRUfnRB7uNMcM20XgQpKOhthPJ,chat.completion,1687806811,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It appears you are inquiring about a specific product: TangEray Indoor Infused Joint by the collaboration of Cookies and The Grower Circle. This is a 1-gram pre-roll joint that has been infused for a more potent smoking experience. However, there is limited information provided in your message. \n\nTangEray is likely a cannabis strain derived from Tangie and possibly another strain, providing an invigorating experience with strong citrus flavors. The Indoor signifies that the flower was grown indoors, which often results in higher quality and more controlled growing conditions.\n\nInfused joints are pre-rolls that have been enhanced with additional cannabis concentrates, like kief, oil, or wax, to increase potency and enhance the overall smoking experience.\n\nPlease let me know if you need more information or have a specific question about this product."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 166, + ""total_tokens"": 223 +}","It appears you are inquiring about a specific product: TangEray Indoor Infused Joint by the collaboration of Cookies and The Grower Circle. This is a 1-gram pre-roll joint that has been infused for a more potent smoking experience. However, there is limited information provided in your message. + +TangEray is likely a cannabis strain derived from Tangie and possibly another strain, providing an invigorating experience with strong citrus flavors. The Indoor signifies that the flower was grown indoors, which often results in higher quality and more controlled growing conditions. + +Infused joints are pre-rolls that have been enhanced with additional cannabis concentrates, like kief, oil, or wax, to increase potency and enhance the overall smoking experience. + +Please let me know if you need more information or have a specific question about this product.","It appears you are inquiring about a specific product: TangEray Indoor Infused Joint by the collaboration of Cookies and The Grower Circle. This is a 1-gram pre-roll joint that has been infused for a more potent smoking experience. However, there is limited information provided in your message. + +TangEray is likely a cannabis strain derived from Tangie and possibly another strain, providing an invigorating experience with strong citrus flavors. The Indoor signifies that the flower was grown indoors, which often results in higher quality and more controlled growing conditions. + +Infused joints are pre-rolls that have been enhanced with additional cannabis concentrates, like kief, oil, or wax, to increase potency and enhance the overall smoking experience. + +Please let me know if you need more information or have a specific question about this product.",0 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vlwgbn0uZRZcfkoPuNawr9lKjFWI,chat.completion,1687806826,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for providing the information on the product \""Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg\"". It appears to be a pack of 10 gummies, each with a blood orange flavor and infused with Indica cannabis, resulting in a total of 100mg for the entire pack. The product is made by Kanha. Since some details provided are unclear, I would recommend checking the product packaging or consulting the manufacturer for further information and instructions on usage, ingredients, and potential benefits."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 110, + ""total_tokens"": 168 +}","Thank you for providing the information on the product ""Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg"". It appears to be a pack of 10 gummies, each with a blood orange flavor and infused with Indica cannabis, resulting in a total of 100mg for the entire pack. The product is made by Kanha. Since some details provided are unclear, I would recommend checking the product packaging or consulting the manufacturer for further information and instructions on usage, ingredients, and potential benefits.","Thank you for providing the information on the product ""Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg"". It appears to be a pack of 10 gummies, each with a blood orange flavor and infused with Indica cannabis, resulting in a total of 100mg for the entire pack. The product is made by Kanha. Since some details provided are unclear, I would recommend checking the product packaging or consulting the manufacturer for further information and instructions on usage, ingredients, and potential benefits.",0 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vlwsy4qY4eH0CjBilF3fK0VwnFjp,chat.completion,1687806838,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hi there! It looks like you're interested in the BOBBI HYLL Indoor - 3.5g Fresca flower. Let's go over some details!\n\nProduct: BOBBI HYLL Indoor - 3.5g\nStrain: Fresca\nType: Flower\nWeight: 3.5 grams\n\nBOBBI HYLL's Fresca flower is an indoor-grown cannabis strain perfect for users seeking a flavorful and smooth smoking experience. With 3.5 grams of premium flower, this product provides a generous amount for multiple sessions.\n\nFresca is known for its unique sweet and fruity aroma, with notes of grapefruit, citrus, and a hint of earthiness. This strain is well-suited for daytime use as it's uplifting, providing a balanced and focused high that won't leave you feeling overwhelmed or unproductive.\n\nWhether you're a seasoned cannabis connoisseur or a newcomer to the world of marijuana, BOBBI HYLL's 3.5g of Fresca flower is a solid choice for an enjoyable and uplifting experience."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 217, + ""total_tokens"": 269 +}","Hi there! It looks like you're interested in the BOBBI HYLL Indoor - 3.5g Fresca flower. Let's go over some details! + +Product: BOBBI HYLL Indoor - 3.5g +Strain: Fresca +Type: Flower +Weight: 3.5 grams + +BOBBI HYLL's Fresca flower is an indoor-grown cannabis strain perfect for users seeking a flavorful and smooth smoking experience. With 3.5 grams of premium flower, this product provides a generous amount for multiple sessions. + +Fresca is known for its unique sweet and fruity aroma, with notes of grapefruit, citrus, and a hint of earthiness. This strain is well-suited for daytime use as it's uplifting, providing a balanced and focused high that won't leave you feeling overwhelmed or unproductive. + +Whether you're a seasoned cannabis connoisseur or a newcomer to the world of marijuana, BOBBI HYLL's 3.5g of Fresca flower is a solid choice for an enjoyable and uplifting experience.","Hi there! It looks like you're interested in the BOBBI HYLL Indoor - 3.5g Fresca flower. Let's go over some details! + +Product: BOBBI HYLL Indoor - 3.5g +Strain: Fresca +Type: Flower +Weight: 3.5 grams + +BOBBI HYLL's Fresca flower is an indoor-grown cannabis strain perfect for users seeking a flavorful and smooth smoking experience. With 3.5 grams of premium flower, this product provides a generous amount for multiple sessions. + +Fresca is known for its unique sweet and fruity aroma, with notes of grapefruit, citrus, and a hint of earthiness. This strain is well-suited for daytime use as it's uplifting, providing a balanced and focused high that won't leave you feeling overwhelmed or unproductive. + +Whether you're a seasoned cannabis connoisseur or a newcomer to the world of marijuana, BOBBI HYLL's 3.5g of Fresca flower is a solid choice for an enjoyable and uplifting experience.",0 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VlxLM0LHGhayvjwoDLj6ElcnZfsB,chat.completion,1687806867,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""I see that you are looking for information about \""Flav Blueberry Belts 100mg\"". Flav Blueberry Belts are an edible cannabis-infused product made by the company Flav. Here are some details:\n\n- Flav Blueberry Belts are infused with 100mg of cannabis extract, providing a consistent dosage in every serving.\n- These belts are coated in blueberry-flavored sugar, offering a delicious and convenient way to consume cannabis.\n- The product comes in a resealable package, ensuring freshness and easy storage.\n\nPlease note that the consumption of cannabis products should be done responsibly and according to local laws and regulations. Start with a low dosage and monitor your body's reaction to determine the appropriate amount for your personal needs."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 151, + ""total_tokens"": 203 +}","I see that you are looking for information about ""Flav Blueberry Belts 100mg"". Flav Blueberry Belts are an edible cannabis-infused product made by the company Flav. Here are some details: + +- Flav Blueberry Belts are infused with 100mg of cannabis extract, providing a consistent dosage in every serving. +- These belts are coated in blueberry-flavored sugar, offering a delicious and convenient way to consume cannabis. +- The product comes in a resealable package, ensuring freshness and easy storage. + +Please note that the consumption of cannabis products should be done responsibly and according to local laws and regulations. Start with a low dosage and monitor your body's reaction to determine the appropriate amount for your personal needs.","I see that you are looking for information about ""Flav Blueberry Belts 100mg"". Flav Blueberry Belts are an edible cannabis-infused product made by the company Flav. Here are some details: + +- Flav Blueberry Belts are infused with 100mg of cannabis extract, providing a consistent dosage in every serving. +- These belts are coated in blueberry-flavored sugar, offering a delicious and convenient way to consume cannabis. +- The product comes in a resealable package, ensuring freshness and easy storage. + +Please note that the consumption of cannabis products should be done responsibly and according to local laws and regulations. Start with a low dosage and monitor your body's reaction to determine the appropriate amount for your personal needs.",0 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vlxfl4YscwkNvGG6hKlfLUD800EU,chat.completion,1687806887,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Title: Cherry Pie 1g Pod\nBrand: Left Coast Extracts\nCategory: Vape\n\nDescription: The Cherry Pie 1g Pod from Left Coast Extracts is a high-quality vape product for those looking for a strong and flavorful vaping experience. Cherry Pie is a popular hybrid strain, with a delightful mix of sweet berries and earthy undertones. With its powerful effects, users can expect a happy and uplifting experience that soothes the mind and body. This vape pod is compatible with various vape devices, making it a convenient option for those who enjoy vaping on the go."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 118, + ""total_tokens"": 165 +}","Title: Cherry Pie 1g Pod +Brand: Left Coast Extracts +Category: Vape + +Description: The Cherry Pie 1g Pod from Left Coast Extracts is a high-quality vape product for those looking for a strong and flavorful vaping experience. Cherry Pie is a popular hybrid strain, with a delightful mix of sweet berries and earthy undertones. With its powerful effects, users can expect a happy and uplifting experience that soothes the mind and body. This vape pod is compatible with various vape devices, making it a convenient option for those who enjoy vaping on the go.","Title: Cherry Pie 1g Pod +Brand: Left Coast Extracts +Category: Vape + +Description: The Cherry Pie 1g Pod from Left Coast Extracts is a high-quality vape product for those looking for a strong and flavorful vaping experience. Cherry Pie is a popular hybrid strain, with a delightful mix of sweet berries and earthy undertones. With its powerful effects, users can expect a happy and uplifting experience that soothes the mind and body. This vape pod is compatible with various vape devices, making it a convenient option for those who enjoy vaping on the go.",0 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VlxqlNy5Le1ohN846kmWns2ZDafk,chat.completion,1687806898,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Minntz's Emerald Cut, a 1g indoor joint. Unfortunately, you haven't provided specific details or questions. Please let me know what exactly you would like to know about this product, and I'll be happy to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 59, + ""total_tokens"": 113 +}","Hello! It seems like you are looking for information on Minntz's Emerald Cut, a 1g indoor joint. Unfortunately, you haven't provided specific details or questions. Please let me know what exactly you would like to know about this product, and I'll be happy to help!","Hello! It seems like you are looking for information on Minntz's Emerald Cut, a 1g indoor joint. Unfortunately, you haven't provided specific details or questions. Please let me know what exactly you would like to know about this product, and I'll be happy to help!",0 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VlxvSoLfzYLS3c0pKJdJItv3uDjW,chat.completion,1687806903,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you might be asking about a product called \""The Growers Circle - Double Down - Indoor - 3.5g.\"" Based on the information given, there seem to be some missing details. Can you please provide more context or clarify your question? This will help me provide you with accurate and relevant information."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 67, + ""total_tokens"": 119 +}","Hello! It looks like you might be asking about a product called ""The Growers Circle - Double Down - Indoor - 3.5g."" Based on the information given, there seem to be some missing details. Can you please provide more context or clarify your question? This will help me provide you with accurate and relevant information.","Hello! It looks like you might be asking about a product called ""The Growers Circle - Double Down - Indoor - 3.5g."" Based on the information given, there seem to be some missing details. Can you please provide more context or clarify your question? This will help me provide you with accurate and relevant information.",0 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vly4uW2o4TmxabptH6sBE9fUSHxl,chat.completion,1687806912,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\nPrice: Not mentioned\nDescription: Not provided\n\nFrom the information provided, it seems that the 'Blue Dream Roll Your Own Sugar Shake 14g Bag' is a cannabis flower product by the brand 'Pacific Stone'. The product is meant for those who prefer to roll their own joints using the sugar shake \u2013 a term that refers to the small, sugar-like trichomes and tiny pieces of cannabis that remain in the bottom of a storage container.\n\nPlease note that the price and full description of the product are not available. Make sure to check the product label for THC and CBD content and consult with a sales representative or budtender at the point of purchase for more details."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 160, + ""total_tokens"": 208 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers +Price: Not mentioned +Description: Not provided + +From the information provided, it seems that the 'Blue Dream Roll Your Own Sugar Shake 14g Bag' is a cannabis flower product by the brand 'Pacific Stone'. The product is meant for those who prefer to roll their own joints using the sugar shake – a term that refers to the small, sugar-like trichomes and tiny pieces of cannabis that remain in the bottom of a storage container. + +Please note that the price and full description of the product are not available. Make sure to check the product label for THC and CBD content and consult with a sales representative or budtender at the point of purchase for more details.","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers +Price: Not mentioned +Description: Not provided + +From the information provided, it seems that the 'Blue Dream Roll Your Own Sugar Shake 14g Bag' is a cannabis flower product by the brand 'Pacific Stone'. The product is meant for those who prefer to roll their own joints using the sugar shake – a term that refers to the small, sugar-like trichomes and tiny pieces of cannabis that remain in the bottom of a storage container. + +Please note that the price and full description of the product are not available. Make sure to check the product label for THC and CBD content and consult with a sales representative or budtender at the point of purchase for more details.",0 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VlyKBVcLuq1xd6FFARAwtcoAMt6F,chat.completion,1687806928,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're looking for information about a multi-pack of cannabis joints called \""The Grower Circle - Zoo Dawg x Cosa Nostra\"". This pack contains 5 pre-rolled joints with a total weight of 2.5g.\n\nUnfortunately, we cannot provide any more information about this product or any other cannabis-related topic. It's important to note that the usage, sale, and possession of cannabis are not legal everywhere and are subject to varying regulations depending on the location.\n\nPlease make sure to review the applicable laws and regulations before consuming or possessing any cannabis-related product and consult your physician for medical advice."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 125, + ""total_tokens"": 187 +}","It seems like you're looking for information about a multi-pack of cannabis joints called ""The Grower Circle - Zoo Dawg x Cosa Nostra"". This pack contains 5 pre-rolled joints with a total weight of 2.5g. + +Unfortunately, we cannot provide any more information about this product or any other cannabis-related topic. It's important to note that the usage, sale, and possession of cannabis are not legal everywhere and are subject to varying regulations depending on the location. + +Please make sure to review the applicable laws and regulations before consuming or possessing any cannabis-related product and consult your physician for medical advice.","It seems like you're looking for information about a multi-pack of cannabis joints called ""The Grower Circle - Zoo Dawg x Cosa Nostra"". This pack contains 5 pre-rolled joints with a total weight of 2.5g. + +Unfortunately, we cannot provide any more information about this product or any other cannabis-related topic. It's important to note that the usage, sale, and possession of cannabis are not legal everywhere and are subject to varying regulations depending on the location. + +Please make sure to review the applicable laws and regulations before consuming or possessing any cannabis-related product and consult your physician for medical advice.",0 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VlyYgcb3VZUM5fuVUVl6NapiDrk7,chat.completion,1687806942,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Flight Bites S'mores Gummy with 10 pieces containing a total of 100mg. However, you've provided some \""nan\"" values, which are typically placeholders for Not a Number or missing data. In order to provide you with accurate and proper information about the product, I will need more context or specific questions. Please feel free to ask more about Flight Bites or provide more details, and I would be happy to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 100, + ""total_tokens"": 158 +}","Hello! It seems like you are looking for information on Flight Bites S'mores Gummy with 10 pieces containing a total of 100mg. However, you've provided some ""nan"" values, which are typically placeholders for Not a Number or missing data. In order to provide you with accurate and proper information about the product, I will need more context or specific questions. Please feel free to ask more about Flight Bites or provide more details, and I would be happy to help!","Hello! It seems like you are looking for information on Flight Bites S'mores Gummy with 10 pieces containing a total of 100mg. However, you've provided some ""nan"" values, which are typically placeholders for Not a Number or missing data. In order to provide you with accurate and proper information about the product, I will need more context or specific questions. Please feel free to ask more about Flight Bites or provide more details, and I would be happy to help!",0 +gpt-4,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vm4VLLpp1t9ISA8RsHB9SOREpG8s,chat.completion,1687807311,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The product you are mentioning is Chill Medicated Watermelon Syrup, which contains 250mg of active components (likely THC or CBD). Chill Medicated is a brand that produces cannabis-infused products, such as syrups and edibles. It's essential to note that cannabis products can have varying effects on individuals and should be consumed responsibly. Also, make sure to follow any local or regional laws regarding the purchase and use of such items."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 90, + ""total_tokens"": 144 +}","The product you are mentioning is Chill Medicated Watermelon Syrup, which contains 250mg of active components (likely THC or CBD). Chill Medicated is a brand that produces cannabis-infused products, such as syrups and edibles. It's essential to note that cannabis products can have varying effects on individuals and should be consumed responsibly. Also, make sure to follow any local or regional laws regarding the purchase and use of such items.","The product you are mentioning is Chill Medicated Watermelon Syrup, which contains 250mg of active components (likely THC or CBD). Chill Medicated is a brand that produces cannabis-infused products, such as syrups and edibles. It's essential to note that cannabis products can have varying effects on individuals and should be consumed responsibly. Also, make sure to follow any local or regional laws regarding the purchase and use of such items.",0 +gpt-4,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7Vm4fMHuIogI8LIYNclHB4lsAU980,chat.completion,1687807321,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you might be looking for information about a specific cannabis strain called \""Feelz - Space Cowboy 3.5g\"" or a product that includes \""FLOWERS 3.5G.\"" Unfortunately, as an AI language model, I am not able to provide up-to-date information about specific products, their availability, or their effects.\n\nIt is important to note that cannabis products can vary in strength, composition, and effects depending on factors such as the strain, growing conditions, and production methods. If you are considering using a cannabis product, it is always a good idea to seek advice from a knowledgeable source, such as a licensed dispensary or a medical professional, to ensure that you select a product that is appropriate for your needs and legal in your area.\n\nPlease let me know if there's any other topic or general information you'd like me to help you with."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 179, + ""total_tokens"": 230 +}","Hello! It seems like you might be looking for information about a specific cannabis strain called ""Feelz - Space Cowboy 3.5g"" or a product that includes ""FLOWERS 3.5G."" Unfortunately, as an AI language model, I am not able to provide up-to-date information about specific products, their availability, or their effects. + +It is important to note that cannabis products can vary in strength, composition, and effects depending on factors such as the strain, growing conditions, and production methods. If you are considering using a cannabis product, it is always a good idea to seek advice from a knowledgeable source, such as a licensed dispensary or a medical professional, to ensure that you select a product that is appropriate for your needs and legal in your area. + +Please let me know if there's any other topic or general information you'd like me to help you with.","Hello! It seems like you might be looking for information about a specific cannabis strain called ""Feelz - Space Cowboy 3.5g"" or a product that includes ""FLOWERS 3.5G."" Unfortunately, as an AI language model, I am not able to provide up-to-date information about specific products, their availability, or their effects. + +It is important to note that cannabis products can vary in strength, composition, and effects depending on factors such as the strain, growing conditions, and production methods. If you are considering using a cannabis product, it is always a good idea to seek advice from a knowledgeable source, such as a licensed dispensary or a medical professional, to ensure that you select a product that is appropriate for your needs and legal in your area. + +Please let me know if there's any other topic or general information you'd like me to help you with.",0 +gpt-4,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7Vm4xLTbyMueCEvu8KF6bJqINlMYx,chat.completion,1687807339,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on Champelli Xclusivo 3.5g eighths. Champelli is a cannabis brand known for its high-quality products. Xclusivo, a product by Champelli, is available in 3.5g (eighths) pre-packaged quantities for convenience. PackedBud refers to the well-packed nature of the cannabis in the container, ensuring freshness and quality. So, you can expect to experience a great level of satisfaction from Champelli Xclusivo 3.5g eighths. Please let me know if you need more information or if you have any questions."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 71, + ""completion_tokens"": 133, + ""total_tokens"": 204 +}","Hello! It seems like you are looking for information on Champelli Xclusivo 3.5g eighths. Champelli is a cannabis brand known for its high-quality products. Xclusivo, a product by Champelli, is available in 3.5g (eighths) pre-packaged quantities for convenience. PackedBud refers to the well-packed nature of the cannabis in the container, ensuring freshness and quality. So, you can expect to experience a great level of satisfaction from Champelli Xclusivo 3.5g eighths. Please let me know if you need more information or if you have any questions.","Hello! It seems like you are looking for information on Champelli Xclusivo 3.5g eighths. Champelli is a cannabis brand known for its high-quality products. Xclusivo, a product by Champelli, is available in 3.5g (eighths) pre-packaged quantities for convenience. PackedBud refers to the well-packed nature of the cannabis in the container, ensuring freshness and quality. So, you can expect to experience a great level of satisfaction from Champelli Xclusivo 3.5g eighths. Please let me know if you need more information or if you have any questions.",0 +gpt-4,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7Vm59q98mj8vyuGVARSMP5CbdZodk,chat.completion,1687807351,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're inquiring about a product. Please provide more context or details about what information you'd like to know, and I'd be happy to help you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 37, + ""total_tokens"": 86 +}","Hello! It seems like you're inquiring about a product. Please provide more context or details about what information you'd like to know, and I'd be happy to help you.","Hello! It seems like you're inquiring about a product. Please provide more context or details about what information you'd like to know, and I'd be happy to help you.",0 +gpt-4,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7Vm5FIAbtaeVp7FAjawABXUff7Y7D,chat.completion,1687807357,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for Bubblegum Gelato Sizzurp 1000mg, a product from Backpack Boyz. This product is a tincture, which is a liquid extract made from plants, herbs or other materials for various purposes, including medicinal.\n\nPlease note that I am an AI language model and cannot provide specific information on the availability or effectiveness of a product. It's always best to consult a healthcare professional or your local dispensary for personalized advice on using any cannabis-related products.\n\nIf you have any other questions or need information, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 120, + ""total_tokens"": 179 +}","Hello! It seems like you are looking for Bubblegum Gelato Sizzurp 1000mg, a product from Backpack Boyz. This product is a tincture, which is a liquid extract made from plants, herbs or other materials for various purposes, including medicinal. + +Please note that I am an AI language model and cannot provide specific information on the availability or effectiveness of a product. It's always best to consult a healthcare professional or your local dispensary for personalized advice on using any cannabis-related products. + +If you have any other questions or need information, feel free to ask!","Hello! It seems like you are looking for Bubblegum Gelato Sizzurp 1000mg, a product from Backpack Boyz. This product is a tincture, which is a liquid extract made from plants, herbs or other materials for various purposes, including medicinal. + +Please note that I am an AI language model and cannot provide specific information on the availability or effectiveness of a product. It's always best to consult a healthcare professional or your local dispensary for personalized advice on using any cannabis-related products. + +If you have any other questions or need information, feel free to ask!",0 +gpt-4,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7Vm5Yrg4Ckp4c7GydaeS07LYcc4Tf,chat.completion,1687807376,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hi there, it seems like you want some information about Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. \n\nRaw Garden is well-known for producing high-quality cannabis concentrates. Their Pink Lemonade Crushed Diamonds is a 1-gram cannabis concentrate that offers a flavorful and potent experience for users.\n\nProduct: Pink Lemonade Crushed Diamonds\nBrand: Raw Garden\nType: Cannabis Concentrate\nSize: 1 gram\n\nUnfortunately, I cannot provide you with the pricing or availability information as it may vary depending on your location. To find out more about this product or to purchase it, I recommend visiting a local dispensary or checking out Raw Garden's official website. Make sure to follow your local laws and regulations when using cannabis products."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 152, + ""total_tokens"": 206 +}","Hi there, it seems like you want some information about Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. + +Raw Garden is well-known for producing high-quality cannabis concentrates. Their Pink Lemonade Crushed Diamonds is a 1-gram cannabis concentrate that offers a flavorful and potent experience for users. + +Product: Pink Lemonade Crushed Diamonds +Brand: Raw Garden +Type: Cannabis Concentrate +Size: 1 gram + +Unfortunately, I cannot provide you with the pricing or availability information as it may vary depending on your location. To find out more about this product or to purchase it, I recommend visiting a local dispensary or checking out Raw Garden's official website. Make sure to follow your local laws and regulations when using cannabis products.","Hi there, it seems like you want some information about Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. + +Raw Garden is well-known for producing high-quality cannabis concentrates. Their Pink Lemonade Crushed Diamonds is a 1-gram cannabis concentrate that offers a flavorful and potent experience for users. + +Product: Pink Lemonade Crushed Diamonds +Brand: Raw Garden +Type: Cannabis Concentrate +Size: 1 gram + +Unfortunately, I cannot provide you with the pricing or availability information as it may vary depending on your location. To find out more about this product or to purchase it, I recommend visiting a local dispensary or checking out Raw Garden's official website. Make sure to follow your local laws and regulations when using cannabis products.",0 +gpt-4,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7Vm5tXEO0odxVFrpy2xldskffLMK6,chat.completion,1687807397,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Baby Jeeter Peaches\nType: Infused Preroll 5-pack\nWeight: 2.5g\nBrand: Jeeter\n\nThe Baby Jeeter Peaches is a 5-pack of infused prerolls by the brand Jeeter. These prerolls contain a blend of flavorful peach essence and high-quality cannabis, ensuring a smooth and enjoyable smoking experience. With a total weight of 2.5 grams, each preroll is infused with a generous amount of cannabis, making them perfect for a satisfying smoke session with friends or when you need that extra relaxation alone. So, enjoy the fruity flavor and experience the delightful effects of Baby Jeeter Peaches, a delicious and convenient way to consume cannabis."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 145, + ""total_tokens"": 204 +}","Product: Baby Jeeter Peaches +Type: Infused Preroll 5-pack +Weight: 2.5g +Brand: Jeeter + +The Baby Jeeter Peaches is a 5-pack of infused prerolls by the brand Jeeter. These prerolls contain a blend of flavorful peach essence and high-quality cannabis, ensuring a smooth and enjoyable smoking experience. With a total weight of 2.5 grams, each preroll is infused with a generous amount of cannabis, making them perfect for a satisfying smoke session with friends or when you need that extra relaxation alone. So, enjoy the fruity flavor and experience the delightful effects of Baby Jeeter Peaches, a delicious and convenient way to consume cannabis.","Product: Baby Jeeter Peaches +Type: Infused Preroll 5-pack +Weight: 2.5g +Brand: Jeeter + +The Baby Jeeter Peaches is a 5-pack of infused prerolls by the brand Jeeter. These prerolls contain a blend of flavorful peach essence and high-quality cannabis, ensuring a smooth and enjoyable smoking experience. With a total weight of 2.5 grams, each preroll is infused with a generous amount of cannabis, making them perfect for a satisfying smoke session with friends or when you need that extra relaxation alone. So, enjoy the fruity flavor and experience the delightful effects of Baby Jeeter Peaches, a delicious and convenient way to consume cannabis.",0 +gpt-4,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7Vm67lqgdKbWNn8QsQvy9LZrZKspP,chat.completion,1687807411,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). Let me provide some details for you.\n\nProduct: Truffle Pupil Indoor Blunt\nCompany: Ocean Breeze Cultivators\nWeight: 1g\n\nUnfortunately, I don't have exact details about the specific strain and its effects, but if Truffle Pupil is a product from Ocean Breeze Cultivators, it's likely that they've taken great care in cultivating and processing it.\n\nTo ensure the best experience, it's always a good idea to consult with a knowledgeable dispensary or representative from the company, as they can provide more information on the product, its effects, and recommended usage.\n\nIf you have any other questions or need additional information, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 168, + ""total_tokens"": 234 +}","Hello! It seems like you're looking for information on Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). Let me provide some details for you. + +Product: Truffle Pupil Indoor Blunt +Company: Ocean Breeze Cultivators +Weight: 1g + +Unfortunately, I don't have exact details about the specific strain and its effects, but if Truffle Pupil is a product from Ocean Breeze Cultivators, it's likely that they've taken great care in cultivating and processing it. + +To ensure the best experience, it's always a good idea to consult with a knowledgeable dispensary or representative from the company, as they can provide more information on the product, its effects, and recommended usage. + +If you have any other questions or need additional information, feel free to ask!","Hello! It seems like you're looking for information on Ocean Breeze Cultivators' Truffle Pupil Indoor Blunt (1g). Let me provide some details for you. + +Product: Truffle Pupil Indoor Blunt +Company: Ocean Breeze Cultivators +Weight: 1g + +Unfortunately, I don't have exact details about the specific strain and its effects, but if Truffle Pupil is a product from Ocean Breeze Cultivators, it's likely that they've taken great care in cultivating and processing it. + +To ensure the best experience, it's always a good idea to consult with a knowledgeable dispensary or representative from the company, as they can provide more information on the product, its effects, and recommended usage. + +If you have any other questions or need additional information, feel free to ask!",0 +gpt-4,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7Vm6TcaoZ69np5b20T24mbrsZUStD,chat.completion,1687807433,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're referring to a Triple Scoop Preroll 1g Joint by Cookies, which is a cannabis product that comes in a pre-rolled joint form. Cookies is a brand known for its quality cannabis products, and Triple Scoop is one of their strains. The 1g designation indicates that each joint contains 1 gram of cannabis.\n\nTriple Scoop is a hybrid strain created by crossing three popular strains: Gelato, Sorbet, and Orange Sherbet. This combination creates a unique and flavorful experience for users, with sweet and fruity notes alongside a potent, balanced high.\n\nRemember that cannabis products are for adults 21 and over, and should be used responsibly and in accordance with local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 65, + ""completion_tokens"": 147, + ""total_tokens"": 212 +}","It seems like you're referring to a Triple Scoop Preroll 1g Joint by Cookies, which is a cannabis product that comes in a pre-rolled joint form. Cookies is a brand known for its quality cannabis products, and Triple Scoop is one of their strains. The 1g designation indicates that each joint contains 1 gram of cannabis. + +Triple Scoop is a hybrid strain created by crossing three popular strains: Gelato, Sorbet, and Orange Sherbet. This combination creates a unique and flavorful experience for users, with sweet and fruity notes alongside a potent, balanced high. + +Remember that cannabis products are for adults 21 and over, and should be used responsibly and in accordance with local laws and regulations.","It seems like you're referring to a Triple Scoop Preroll 1g Joint by Cookies, which is a cannabis product that comes in a pre-rolled joint form. Cookies is a brand known for its quality cannabis products, and Triple Scoop is one of their strains. The 1g designation indicates that each joint contains 1 gram of cannabis. + +Triple Scoop is a hybrid strain created by crossing three popular strains: Gelato, Sorbet, and Orange Sherbet. This combination creates a unique and flavorful experience for users, with sweet and fruity notes alongside a potent, balanced high. + +Remember that cannabis products are for adults 21 and over, and should be used responsibly and in accordance with local laws and regulations.",0 +gpt-4,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7Vm6ofkYp5UCthY7ZMYakVtmBaQG9,chat.completion,1687807454,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of vape product with a Birthday Cake flavor. Unfortunately, some information is missing from your input, such as the price and seller. If you have any specific questions about this product or need more information, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 77, + ""total_tokens"": 131 +}","Hello! It looks like you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of vape product with a Birthday Cake flavor. Unfortunately, some information is missing from your input, such as the price and seller. If you have any specific questions about this product or need more information, feel free to ask!","Hello! It looks like you are interested in the STIIIZY - Birthday Cake Pod 1g. This is a vape pen cartridge containing 1 gram of vape product with a Birthday Cake flavor. Unfortunately, some information is missing from your input, such as the price and seller. If you have any specific questions about this product or need more information, feel free to ask!",0 +gpt-4,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7Vm6vhr30TmyDQslyz8avC6MJ9WHx,chat.completion,1687807461,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you are looking for information on the Infused Joint product called TangEray, which is a collaboration between Cookies and The Grower Circle. This indoor-grown cannabis product contains 1g of product.\n\nUnfortunately, I couldn't find specific details on the THC percentage, CBD percentage, and other components. However, Cookies and The Grower Circle are reputable brands known for their high-quality cannabis products.\n\nTheir TangEray Infused Joint is likely to provide a smooth and potent experience for the user. As always, remember to consume responsibly and abide by your local laws and regulations on cannabis use."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 124, + ""total_tokens"": 180 +}","Hello! It seems like you are looking for information on the Infused Joint product called TangEray, which is a collaboration between Cookies and The Grower Circle. This indoor-grown cannabis product contains 1g of product. + +Unfortunately, I couldn't find specific details on the THC percentage, CBD percentage, and other components. However, Cookies and The Grower Circle are reputable brands known for their high-quality cannabis products. + +Their TangEray Infused Joint is likely to provide a smooth and potent experience for the user. As always, remember to consume responsibly and abide by your local laws and regulations on cannabis use.","Hello! It seems like you are looking for information on the Infused Joint product called TangEray, which is a collaboration between Cookies and The Grower Circle. This indoor-grown cannabis product contains 1g of product. + +Unfortunately, I couldn't find specific details on the THC percentage, CBD percentage, and other components. However, Cookies and The Grower Circle are reputable brands known for their high-quality cannabis products. + +Their TangEray Infused Joint is likely to provide a smooth and potent experience for the user. As always, remember to consume responsibly and abide by your local laws and regulations on cannabis use.",0 +gpt-4,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7Vm78Golxgq9CQ2QdKzH6V2l0TY1a,chat.completion,1687807474,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are providing information about a product. Let me help you summarize the details:\n\nProduct: Kanha - Nano Blood Orange Bliss Indica Gummy\nQuantity: 10 Count\nTotal Potency: 100mg\nBrand: Kanha\n\nThis product is a pack of 10 gummies from the brand Kanha, featuring a Nano Blood Orange Bliss Indica flavor. The entire pack has a total potency of 100mg."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 90, + ""total_tokens"": 147 +}","It seems like you are providing information about a product. Let me help you summarize the details: + +Product: Kanha - Nano Blood Orange Bliss Indica Gummy +Quantity: 10 Count +Total Potency: 100mg +Brand: Kanha + +This product is a pack of 10 gummies from the brand Kanha, featuring a Nano Blood Orange Bliss Indica flavor. The entire pack has a total potency of 100mg.","It seems like you are providing information about a product. Let me help you summarize the details: + +Product: Kanha - Nano Blood Orange Bliss Indica Gummy +Quantity: 10 Count +Total Potency: 100mg +Brand: Kanha + +This product is a pack of 10 gummies from the brand Kanha, featuring a Nano Blood Orange Bliss Indica flavor. The entire pack has a total potency of 100mg.",0 +gpt-4,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7Vm7II8Tk14g7UJlmUb10WjKU9zRU,chat.completion,1687807484,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're referring to a specific cannabis product: BOBBI HYLL Indoor 3.5g by Fresca. The information provided mentions that it is a flower product with a quantity of 3.5 grams. If you have any questions or need more information about this product, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 67, + ""total_tokens"": 118 +}","Hello! It seems like you're referring to a specific cannabis product: BOBBI HYLL Indoor 3.5g by Fresca. The information provided mentions that it is a flower product with a quantity of 3.5 grams. If you have any questions or need more information about this product, feel free to ask!","Hello! It seems like you're referring to a specific cannabis product: BOBBI HYLL Indoor 3.5g by Fresca. The information provided mentions that it is a flower product with a quantity of 3.5 grams. If you have any questions or need more information about this product, feel free to ask!",0 +gpt-4,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7Vm7RspewqFQUY2Rh1ZLynNAkyqt7,chat.completion,1687807493,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are inquiring about the Flav Blueberry Belts 100mg edible product. This is a cannabis-infused edible produced by Flav, and each pack contains 10 pieces with a dosage of 10mg of THC per piece. These Blueberry Belts offer a delicious blueberry flavor and can provide an enjoyable and discreet way to consume cannabis. It's important to start with a low dose, especially if you are inexperienced with cannabis edibles, and wait for the effects to set in before consuming more."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 108, + ""total_tokens"": 159 +}","Hello! It seems you are inquiring about the Flav Blueberry Belts 100mg edible product. This is a cannabis-infused edible produced by Flav, and each pack contains 10 pieces with a dosage of 10mg of THC per piece. These Blueberry Belts offer a delicious blueberry flavor and can provide an enjoyable and discreet way to consume cannabis. It's important to start with a low dose, especially if you are inexperienced with cannabis edibles, and wait for the effects to set in before consuming more.","Hello! It seems you are inquiring about the Flav Blueberry Belts 100mg edible product. This is a cannabis-infused edible produced by Flav, and each pack contains 10 pieces with a dosage of 10mg of THC per piece. These Blueberry Belts offer a delicious blueberry flavor and can provide an enjoyable and discreet way to consume cannabis. It's important to start with a low dose, especially if you are inexperienced with cannabis edibles, and wait for the effects to set in before consuming more.",0 +gpt-4,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7Vm7hlAAoFq0kdfiKwpCfhH8XpBuY,chat.completion,1687807509,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Cherry Pie - 1g - Pod\nProducer: Left Coast Extracts\nProduct Type: Vape\nTHC Content: Not specified\nCBD Content: Not specified\n\nDescription: The Cherry Pie 1g Pod by Left Coast Extracts provides a flavorful and enjoyable vaping experience. Loaded with the classic Cherry Pie strain, this vape pod offers a burst of sweet cherry flavors with earthy undertones that have the potential to produce both relaxing and uplifting effects. To fully enjoy this product, it's important to know that the exact THC/CBD content is not specified, so it might not be an ideal choice for users with particular preferences or requirements. Make sure to purchase from a reputable source to ensure product authenticity and quality."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 46, + ""completion_tokens"": 148, + ""total_tokens"": 194 +}","Product Name: Cherry Pie - 1g - Pod +Producer: Left Coast Extracts +Product Type: Vape +THC Content: Not specified +CBD Content: Not specified + +Description: The Cherry Pie 1g Pod by Left Coast Extracts provides a flavorful and enjoyable vaping experience. Loaded with the classic Cherry Pie strain, this vape pod offers a burst of sweet cherry flavors with earthy undertones that have the potential to produce both relaxing and uplifting effects. To fully enjoy this product, it's important to know that the exact THC/CBD content is not specified, so it might not be an ideal choice for users with particular preferences or requirements. Make sure to purchase from a reputable source to ensure product authenticity and quality.","Product Name: Cherry Pie - 1g - Pod +Producer: Left Coast Extracts +Product Type: Vape +THC Content: Not specified +CBD Content: Not specified + +Description: The Cherry Pie 1g Pod by Left Coast Extracts provides a flavorful and enjoyable vaping experience. Loaded with the classic Cherry Pie strain, this vape pod offers a burst of sweet cherry flavors with earthy undertones that have the potential to produce both relaxing and uplifting effects. To fully enjoy this product, it's important to know that the exact THC/CBD content is not specified, so it might not be an ideal choice for users with particular preferences or requirements. Make sure to purchase from a reputable source to ensure product authenticity and quality.",0 +gpt-4,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7Vm7vbSL4mlQ5kigWpOYHoReVJikW,chat.completion,1687807523,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are inquiring about the Minntz Emerald Cut Indoor Joint - 1g. Minntz is a cannabis brand known for producing high-quality products. The Emerald Cut Indoor Joint is a pre-rolled joint containing 1 gram of cannabis flower, which is intended for indoor consumption.\n\nPlease note that I am an AI language model and cannot provide information on the specific strain or effects of this product. It is essential to consult with a knowledgeable source or the product's packaging for accurate information on the strain, THC and CBD levels, and potential effects this particular joint may have. \n\nIn addition, it is crucial to be aware of your local laws regarding the purchase and consumption of cannabis products. If you have any questions or concerns, please consult with a legal expert or local authorities in your region."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 163, + ""total_tokens"": 216 +}","It seems like you are inquiring about the Minntz Emerald Cut Indoor Joint - 1g. Minntz is a cannabis brand known for producing high-quality products. The Emerald Cut Indoor Joint is a pre-rolled joint containing 1 gram of cannabis flower, which is intended for indoor consumption. + +Please note that I am an AI language model and cannot provide information on the specific strain or effects of this product. It is essential to consult with a knowledgeable source or the product's packaging for accurate information on the strain, THC and CBD levels, and potential effects this particular joint may have. + +In addition, it is crucial to be aware of your local laws regarding the purchase and consumption of cannabis products. If you have any questions or concerns, please consult with a legal expert or local authorities in your region.","It seems like you are inquiring about the Minntz Emerald Cut Indoor Joint - 1g. Minntz is a cannabis brand known for producing high-quality products. The Emerald Cut Indoor Joint is a pre-rolled joint containing 1 gram of cannabis flower, which is intended for indoor consumption. + +Please note that I am an AI language model and cannot provide information on the specific strain or effects of this product. It is essential to consult with a knowledgeable source or the product's packaging for accurate information on the strain, THC and CBD levels, and potential effects this particular joint may have. + +In addition, it is crucial to be aware of your local laws regarding the purchase and consumption of cannabis products. If you have any questions or concerns, please consult with a legal expert or local authorities in your region.",0 +gpt-4,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7Vm8BmnXsUAsk4MvSskJKJwzb6WCH,chat.completion,1687807539,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello and thank you for your query. It appears that you are inquiring about a product called \""The Growers Circle - Double Down - Indoor - 3.5g.\"" This product is likely to be high-quality cannabis, often used for recreational or medicinal purposes.\n\nThe Growers Circle refers to a group or a company responsible for growing and supplying cannabis products. \""Double Down\"" is likely a specific strain or variety of cannabis produced by The Growers Circle, with its own distinctive characteristics, effects, and flavors.\n\nConsidering it's grown indoors, The Growers Circle might be utilizing climate-controlled, hydroponic, or other advanced techniques to cultivate cannabis. This typically results in high-quality products.\n\nThe \""3.5g\"" in the name denotes the weight of the product, indicating that it is available in packages containing 3.5 grams of cannabis.\n\nPlease note that the legality of purchasing or consuming cannabis products depends on the jurisdiction you are in, so make sure to check your local laws and regulations beforehand."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 204, + ""total_tokens"": 255 +}","Hello and thank you for your query. It appears that you are inquiring about a product called ""The Growers Circle - Double Down - Indoor - 3.5g."" This product is likely to be high-quality cannabis, often used for recreational or medicinal purposes. + +The Growers Circle refers to a group or a company responsible for growing and supplying cannabis products. ""Double Down"" is likely a specific strain or variety of cannabis produced by The Growers Circle, with its own distinctive characteristics, effects, and flavors. + +Considering it's grown indoors, The Growers Circle might be utilizing climate-controlled, hydroponic, or other advanced techniques to cultivate cannabis. This typically results in high-quality products. + +The ""3.5g"" in the name denotes the weight of the product, indicating that it is available in packages containing 3.5 grams of cannabis. + +Please note that the legality of purchasing or consuming cannabis products depends on the jurisdiction you are in, so make sure to check your local laws and regulations beforehand.","Hello and thank you for your query. It appears that you are inquiring about a product called ""The Growers Circle - Double Down - Indoor - 3.5g."" This product is likely to be high-quality cannabis, often used for recreational or medicinal purposes. + +The Growers Circle refers to a group or a company responsible for growing and supplying cannabis products. ""Double Down"" is likely a specific strain or variety of cannabis produced by The Growers Circle, with its own distinctive characteristics, effects, and flavors. + +Considering it's grown indoors, The Growers Circle might be utilizing climate-controlled, hydroponic, or other advanced techniques to cultivate cannabis. This typically results in high-quality products. + +The ""3.5g"" in the name denotes the weight of the product, indicating that it is available in packages containing 3.5 grams of cannabis. + +Please note that the legality of purchasing or consuming cannabis products depends on the jurisdiction you are in, so make sure to check your local laws and regulations beforehand.",0 +gpt-4,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7Vm8UIVSykVsi1IUzy0X9dXBRmBAH,chat.completion,1687807558,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription: The Blue Dream Roll Your Own Sugar Shake is a 14g bag of cannabis shake, ideal for rolling your own joints or using it in edibles. This popular strain is well-known among cannabis enthusiasts for its balanced high and sweet, berry-like flavor. Manufactured by Pacific Stone, you can trust the quality and consistency of these flowers. Prices may vary based on location and availability. Patients with a valid medical marijuana card should consult with their healthcare provider to ensure appropriate use."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 121, + ""total_tokens"": 168 +}","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: The Blue Dream Roll Your Own Sugar Shake is a 14g bag of cannabis shake, ideal for rolling your own joints or using it in edibles. This popular strain is well-known among cannabis enthusiasts for its balanced high and sweet, berry-like flavor. Manufactured by Pacific Stone, you can trust the quality and consistency of these flowers. Prices may vary based on location and availability. Patients with a valid medical marijuana card should consult with their healthcare provider to ensure appropriate use.","Product Name: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: The Blue Dream Roll Your Own Sugar Shake is a 14g bag of cannabis shake, ideal for rolling your own joints or using it in edibles. This popular strain is well-known among cannabis enthusiasts for its balanced high and sweet, berry-like flavor. Manufactured by Pacific Stone, you can trust the quality and consistency of these flowers. Prices may vary based on location and availability. Patients with a valid medical marijuana card should consult with their healthcare provider to ensure appropriate use.",0 +gpt-4,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7Vm8gZ09sBnzx1zkj03TTeYEVyzjI,chat.completion,1687807570,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems that you are looking for information about a product called \""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\"" I apologize, but I need more information or a clear question to help you better with this inquiry. Please feel free to ask any specific question about this product or any other related topic, and I'll be happy to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 88, + ""total_tokens"": 149 +}","Hello! It seems that you are looking for information about a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" I apologize, but I need more information or a clear question to help you better with this inquiry. Please feel free to ask any specific question about this product or any other related topic, and I'll be happy to assist you.","Hello! It seems that you are looking for information about a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" I apologize, but I need more information or a clear question to help you better with this inquiry. Please feel free to ask any specific question about this product or any other related topic, and I'll be happy to assist you.",0 +gpt-4,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7Vm8uzbMqdV5Q17vb16Q0Y9VK3TBg,chat.completion,1687807584,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information about \""Flight Bites - S'mores - Gummy - 10ct - 100mg\"" product. Here's a brief description for you:\n\nFlight Bites are delicious and enjoyable s'mores-flavored gummies that come in a 10-count pack, with each gummy containing 10mg of active ingredient, resulting in a total of 100mg per package. These gummies are perfect for those who love the classic taste of s'mores and are looking for a convenient, precisely dosed, and portable edible option.\n\nPlease note that I am an AI language model, and I do not have the ability to provide exact product details or availability, as well as any legal concerns or restrictions in your area. Always ensure to follow regulations and purchase from authorized retailers.\n\nIf you have any further questions or need assistance, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 182, + ""total_tokens"": 239 +}","Hello! It seems like you're looking for information about ""Flight Bites - S'mores - Gummy - 10ct - 100mg"" product. Here's a brief description for you: + +Flight Bites are delicious and enjoyable s'mores-flavored gummies that come in a 10-count pack, with each gummy containing 10mg of active ingredient, resulting in a total of 100mg per package. These gummies are perfect for those who love the classic taste of s'mores and are looking for a convenient, precisely dosed, and portable edible option. + +Please note that I am an AI language model, and I do not have the ability to provide exact product details or availability, as well as any legal concerns or restrictions in your area. Always ensure to follow regulations and purchase from authorized retailers. + +If you have any further questions or need assistance, feel free to ask!","Hello! It seems like you're looking for information about ""Flight Bites - S'mores - Gummy - 10ct - 100mg"" product. Here's a brief description for you: + +Flight Bites are delicious and enjoyable s'mores-flavored gummies that come in a 10-count pack, with each gummy containing 10mg of active ingredient, resulting in a total of 100mg per package. These gummies are perfect for those who love the classic taste of s'mores and are looking for a convenient, precisely dosed, and portable edible option. + +Please note that I am an AI language model, and I do not have the ability to provide exact product details or availability, as well as any legal concerns or restrictions in your area. Always ensure to follow regulations and purchase from authorized retailers. + +If you have any further questions or need assistance, feel free to ask!",0 +gpt-4,2,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7Vm9KTRUIof7A3ctrfrmJNs7cjW7t,chat.completion,1687807610,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are inquiring about Chill Medicated Watermelon Syrup with 250mg strength. Unfortunately, I am an AI language model and cannot provide real-time information on product availability or current pricing. However, I am happy to provide you with general information about the product.\n\nChill Medicated Watermelon Syrup is an infused syrup that can be used to enhance your food or beverage experience. It contains 250mg of THC, which is a psychoactive compound found in cannabis. This syrup may provide relief from pain, stress, and anxiety while promoting relaxation and a sense of euphoria, depending on the individual's tolerance and dosage. It might also be an effective sleep aid for some users.\n\nTo use Chill Medicated Watermelon Syrup, you can measure out your desired dose and mix it into your favorite drinks, like lemonades, teas, or smoothies. You can also drizzle it on top of your favorite desserts or mix it into recipes for an elevated culinary experience.\n\nPlease note that it is essential to start with a low dose, especially if you are new to edibles or have a low tolerance. Effects can take anywhere from 30 minutes to 2 hours to onset, so be patient and give the syrup enough time to take effect before consuming more. Additionally, please remember to keep this product out of the reach of children and consume it responsibly.\n\nIf you are interested in purchasing Chill Medicated Watermelon Syrup, I recommend contacting your local dispensaries or searching for online retailers that ship to your area.\n\nIf you have additional questions or require information about this product, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 326, + ""total_tokens"": 381 +}","Hello! It seems you are inquiring about Chill Medicated Watermelon Syrup with 250mg strength. Unfortunately, I am an AI language model and cannot provide real-time information on product availability or current pricing. However, I am happy to provide you with general information about the product. + +Chill Medicated Watermelon Syrup is an infused syrup that can be used to enhance your food or beverage experience. It contains 250mg of THC, which is a psychoactive compound found in cannabis. This syrup may provide relief from pain, stress, and anxiety while promoting relaxation and a sense of euphoria, depending on the individual's tolerance and dosage. It might also be an effective sleep aid for some users. + +To use Chill Medicated Watermelon Syrup, you can measure out your desired dose and mix it into your favorite drinks, like lemonades, teas, or smoothies. You can also drizzle it on top of your favorite desserts or mix it into recipes for an elevated culinary experience. + +Please note that it is essential to start with a low dose, especially if you are new to edibles or have a low tolerance. Effects can take anywhere from 30 minutes to 2 hours to onset, so be patient and give the syrup enough time to take effect before consuming more. Additionally, please remember to keep this product out of the reach of children and consume it responsibly. + +If you are interested in purchasing Chill Medicated Watermelon Syrup, I recommend contacting your local dispensaries or searching for online retailers that ship to your area. + +If you have additional questions or require information about this product, feel free to ask!","Hello! It seems you are inquiring about Chill Medicated Watermelon Syrup with 250mg strength. Unfortunately, I am an AI language model and cannot provide real-time information on product availability or current pricing. However, I am happy to provide you with general information about the product. + +Chill Medicated Watermelon Syrup is an infused syrup that can be used to enhance your food or beverage experience. It contains 250mg of THC, which is a psychoactive compound found in cannabis. This syrup may provide relief from pain, stress, and anxiety while promoting relaxation and a sense of euphoria, depending on the individual's tolerance and dosage. It might also be an effective sleep aid for some users. + +To use Chill Medicated Watermelon Syrup, you can measure out your desired dose and mix it into your favorite drinks, like lemonades, teas, or smoothies. You can also drizzle it on top of your favorite desserts or mix it into recipes for an elevated culinary experience. + +Please note that it is essential to start with a low dose, especially if you are new to edibles or have a low tolerance. Effects can take anywhere from 30 minutes to 2 hours to onset, so be patient and give the syrup enough time to take effect before consuming more. Additionally, please remember to keep this product out of the reach of children and consume it responsibly. + +If you are interested in purchasing Chill Medicated Watermelon Syrup, I recommend contacting your local dispensaries or searching for online retailers that ship to your area. + +If you have additional questions or require information about this product, feel free to ask!",0 +gpt-4,2,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VmA1e4qLxt6CyrZ91XlFO38rUJjP,chat.completion,1687807653,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Feelz - Space Cowboy 3.5g flowers. Space Cowboy is a unique strain that often provides users with an uplifting and creative experience. If you need any assistance or information about this strain or any other product, please feel free to ask, and I'll be happy to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 67, + ""total_tokens"": 119 +}","Hello! It looks like you're interested in Feelz - Space Cowboy 3.5g flowers. Space Cowboy is a unique strain that often provides users with an uplifting and creative experience. If you need any assistance or information about this strain or any other product, please feel free to ask, and I'll be happy to help!","Hello! It looks like you're interested in Feelz - Space Cowboy 3.5g flowers. Space Cowboy is a unique strain that often provides users with an uplifting and creative experience. If you need any assistance or information about this strain or any other product, please feel free to ask, and I'll be happy to help!",0 +gpt-4,2,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VmACPLuFJeEcbGGiPxBGaz8Z3jZR,chat.completion,1687807664,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the Champelli Xclusivo 3.5g Eighths. This premium cannabis strain is pre-packed in a 3.5-gram container, providing a convenient option for those who enjoy high-quality cannabis products.\n\nChampelli is known for its quality, craftsmanship, and dedication to producing an exclusive and refined cannabis experience. The Xclusivo strain in 3.5g Eighths is perfect for those who wish to indulge in the luxuries that the Champelli brand offers, while still enjoying the convenience of pre-packaged quantities.\n\nPlease note that the availability of this product may vary depending on your location and local regulations. Always ensure that you are purchasing and using cannabis products responsibly and within the boundaries set by your local laws."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 72, + ""completion_tokens"": 159, + ""total_tokens"": 231 +}","Hello! It looks like you're interested in the Champelli Xclusivo 3.5g Eighths. This premium cannabis strain is pre-packed in a 3.5-gram container, providing a convenient option for those who enjoy high-quality cannabis products. + +Champelli is known for its quality, craftsmanship, and dedication to producing an exclusive and refined cannabis experience. The Xclusivo strain in 3.5g Eighths is perfect for those who wish to indulge in the luxuries that the Champelli brand offers, while still enjoying the convenience of pre-packaged quantities. + +Please note that the availability of this product may vary depending on your location and local regulations. Always ensure that you are purchasing and using cannabis products responsibly and within the boundaries set by your local laws.","Hello! It looks like you're interested in the Champelli Xclusivo 3.5g Eighths. This premium cannabis strain is pre-packed in a 3.5-gram container, providing a convenient option for those who enjoy high-quality cannabis products. + +Champelli is known for its quality, craftsmanship, and dedication to producing an exclusive and refined cannabis experience. The Xclusivo strain in 3.5g Eighths is perfect for those who wish to indulge in the luxuries that the Champelli brand offers, while still enjoying the convenience of pre-packaged quantities. + +Please note that the availability of this product may vary depending on your location and local regulations. Always ensure that you are purchasing and using cannabis products responsibly and within the boundaries set by your local laws.",0 +gpt-4,2,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VmARsatLOqlk8La0TDpDKLivlUP7,chat.completion,1687807679,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're trying to inquire about a product, \""Mellowz #7 7g\"" in the \""FLOWERS 7G\"" category. However, some parts of the provided information are unclear or missing (nan values). To better assist you, can you please provide more context and specific information about what you're looking for?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 50, + ""completion_tokens"": 72, + ""total_tokens"": 122 +}","Hello! It seems like you're trying to inquire about a product, ""Mellowz #7 7g"" in the ""FLOWERS 7G"" category. However, some parts of the provided information are unclear or missing (nan values). To better assist you, can you please provide more context and specific information about what you're looking for?","Hello! It seems like you're trying to inquire about a product, ""Mellowz #7 7g"" in the ""FLOWERS 7G"" category. However, some parts of the provided information are unclear or missing (nan values). To better assist you, can you please provide more context and specific information about what you're looking for?",0 +gpt-4,2,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VmAYeGlvnyGqOzFzoC0SDJ5f3rtt,chat.completion,1687807686,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg. Backpack Boyz is a brand known for its premium cannabis products, and Bubblegum Gelato Sizzurp is a tincture with 1000mg of THC content.\n\nUnfortunately, I could not find specific details or reviews of this product. It is important to note that products containing cannabis may not be legal in your area, so please research your local laws before attempting to purchase any cannabis-related goods.\n\nIf you have any specific questions or need more information on Backpack Boyz or their products, please feel free to ask, and I'll do my best to help you out."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 146, + ""total_tokens"": 206 +}","Hello! It seems like you're looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg. Backpack Boyz is a brand known for its premium cannabis products, and Bubblegum Gelato Sizzurp is a tincture with 1000mg of THC content. + +Unfortunately, I could not find specific details or reviews of this product. It is important to note that products containing cannabis may not be legal in your area, so please research your local laws before attempting to purchase any cannabis-related goods. + +If you have any specific questions or need more information on Backpack Boyz or their products, please feel free to ask, and I'll do my best to help you out.","Hello! It seems like you're looking for information on Backpack Boyz Bubblegum Gelato Sizzurp 1000mg. Backpack Boyz is a brand known for its premium cannabis products, and Bubblegum Gelato Sizzurp is a tincture with 1000mg of THC content. + +Unfortunately, I could not find specific details or reviews of this product. It is important to note that products containing cannabis may not be legal in your area, so please research your local laws before attempting to purchase any cannabis-related goods. + +If you have any specific questions or need more information on Backpack Boyz or their products, please feel free to ask, and I'll do my best to help you out.",0 +gpt-4,2,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VmAmijk4KMNnHk9Axg2hPY4yVqlB,chat.completion,1687807700,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds. This is a 1g concentrate that offers a delightful and flavorful cannabis experience. Raw Garden is known for its high-quality products, and this concentrate is no exception.\n\nThe Pink Lemonade Crushed Diamonds is a type of cannabis concentrate that provides a potent and enjoyable experience for users. Keep in mind that concentrates can be quite strong, so start with a smaller dose if you're new to this form of consumption, and gradually increase as needed.\n\nWhile the price may vary based on location and availability, you can typically expect to pay around $45-60 for 1g of this product. Make sure to visit your local dispensary or check online for availability and current pricing in your area.\n\nFeel free to ask any additional questions you may have!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 168, + ""total_tokens"": 223 +}","Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds. This is a 1g concentrate that offers a delightful and flavorful cannabis experience. Raw Garden is known for its high-quality products, and this concentrate is no exception. + +The Pink Lemonade Crushed Diamonds is a type of cannabis concentrate that provides a potent and enjoyable experience for users. Keep in mind that concentrates can be quite strong, so start with a smaller dose if you're new to this form of consumption, and gradually increase as needed. + +While the price may vary based on location and availability, you can typically expect to pay around $45-60 for 1g of this product. Make sure to visit your local dispensary or check online for availability and current pricing in your area. + +Feel free to ask any additional questions you may have!","Hello! It looks like you're interested in Raw Garden's Pink Lemonade Crushed Diamonds. This is a 1g concentrate that offers a delightful and flavorful cannabis experience. Raw Garden is known for its high-quality products, and this concentrate is no exception. + +The Pink Lemonade Crushed Diamonds is a type of cannabis concentrate that provides a potent and enjoyable experience for users. Keep in mind that concentrates can be quite strong, so start with a smaller dose if you're new to this form of consumption, and gradually increase as needed. + +While the price may vary based on location and availability, you can typically expect to pay around $45-60 for 1g of this product. Make sure to visit your local dispensary or check online for availability and current pricing in your area. + +Feel free to ask any additional questions you may have!",0 +gpt-4,2,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VmB2PdmPhwOX7bigF6Y0VoDTeQVt,chat.completion,1687807716,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product Name: Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g\nBrand: Jeeter\nCategory: Infused Prerolls\nDescription: Unfortunately, I am an AI language model and do not have the capacity to provide product descriptions. However, I can tell you that this product appears to be a 5-pack of Baby Jeeter Peaches infused prerolls, which may contain cannabis and are potentially flavored or enhanced to resemble the taste or aroma of peaches. The total weight of the product is 2.5 grams. It is advisable to check the retailer's site or contact the brand for more information on their products."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 60, + ""completion_tokens"": 137, + ""total_tokens"": 197 +}","Product Name: Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g +Brand: Jeeter +Category: Infused Prerolls +Description: Unfortunately, I am an AI language model and do not have the capacity to provide product descriptions. However, I can tell you that this product appears to be a 5-pack of Baby Jeeter Peaches infused prerolls, which may contain cannabis and are potentially flavored or enhanced to resemble the taste or aroma of peaches. The total weight of the product is 2.5 grams. It is advisable to check the retailer's site or contact the brand for more information on their products.","Product Name: Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g +Brand: Jeeter +Category: Infused Prerolls +Description: Unfortunately, I am an AI language model and do not have the capacity to provide product descriptions. However, I can tell you that this product appears to be a 5-pack of Baby Jeeter Peaches infused prerolls, which may contain cannabis and are potentially flavored or enhanced to resemble the taste or aroma of peaches. The total weight of the product is 2.5 grams. It is advisable to check the retailer's site or contact the brand for more information on their products.",0 +gpt-4,2,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VmBHMUVCiNoRy821L9rmQ2LNXzI9,chat.completion,1687807731,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're looking for information about a product:\n\nProduct Name: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g\n\nBrand: Ocean Breeze Cultivators\n\nStrain: Truffle Pupil\n\nType: Indoor Grown\n\nForm: Blunt\n\nWeight: 1 gram\n\nUnfortunately, I am currently unable to pull up specific information about this product, as I am an AI language model and do not have real-time information. However, you can usually find detailed information about products like this on the brand's website or through a licensed cannabis dispensary.\n\nIf you have any questions about cannabis or related products, feel free to ask and I'll do my best to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 151, + ""total_tokens"": 218 +}","Hello! It seems like you're looking for information about a product: + +Product Name: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g + +Brand: Ocean Breeze Cultivators + +Strain: Truffle Pupil + +Type: Indoor Grown + +Form: Blunt + +Weight: 1 gram + +Unfortunately, I am currently unable to pull up specific information about this product, as I am an AI language model and do not have real-time information. However, you can usually find detailed information about products like this on the brand's website or through a licensed cannabis dispensary. + +If you have any questions about cannabis or related products, feel free to ask and I'll do my best to help!","Hello! It seems like you're looking for information about a product: + +Product Name: Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g + +Brand: Ocean Breeze Cultivators + +Strain: Truffle Pupil + +Type: Indoor Grown + +Form: Blunt + +Weight: 1 gram + +Unfortunately, I am currently unable to pull up specific information about this product, as I am an AI language model and do not have real-time information. However, you can usually find detailed information about products like this on the brand's website or through a licensed cannabis dispensary. + +If you have any questions about cannabis or related products, feel free to ask and I'll do my best to help!",0 +gpt-4,2,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VmBWSXysPqzYxh0hwV6onkFsO2JY,chat.completion,1687807746,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're interested in Cookies Triple Scoop Preroll 1g joints.\n\nCookies Triple Scoop Preroll joints are made with high-quality cannabis flower, expertly rolled for a smooth, even burn. A 1g preroll joint is a convenient way to enjoy the effects of this hybrid strain for both beginners and experienced cannabis users.\n\nTriple Scoop is a cross between Gelato and Sorbet, producing a balanced and flavorful experience with notes of berry, citrus, and cream. It's known for its uplifting and relaxing effects, making it perfect for socializing or kicking back after a long day.\n\nEnjoy your Cookies Triple Scoop Preroll responsibly and remember to always follow the guidelines in your jurisdiction."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 66, + ""completion_tokens"": 146, + ""total_tokens"": 212 +}","It seems like you're interested in Cookies Triple Scoop Preroll 1g joints. + +Cookies Triple Scoop Preroll joints are made with high-quality cannabis flower, expertly rolled for a smooth, even burn. A 1g preroll joint is a convenient way to enjoy the effects of this hybrid strain for both beginners and experienced cannabis users. + +Triple Scoop is a cross between Gelato and Sorbet, producing a balanced and flavorful experience with notes of berry, citrus, and cream. It's known for its uplifting and relaxing effects, making it perfect for socializing or kicking back after a long day. + +Enjoy your Cookies Triple Scoop Preroll responsibly and remember to always follow the guidelines in your jurisdiction.","It seems like you're interested in Cookies Triple Scoop Preroll 1g joints. + +Cookies Triple Scoop Preroll joints are made with high-quality cannabis flower, expertly rolled for a smooth, even burn. A 1g preroll joint is a convenient way to enjoy the effects of this hybrid strain for both beginners and experienced cannabis users. + +Triple Scoop is a cross between Gelato and Sorbet, producing a balanced and flavorful experience with notes of berry, citrus, and cream. It's known for its uplifting and relaxing effects, making it perfect for socializing or kicking back after a long day. + +Enjoy your Cookies Triple Scoop Preroll responsibly and remember to always follow the guidelines in your jurisdiction.",0 +gpt-4,2,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VmBsDbyZ1KwxbjVPkH7tPRWdfoKF,chat.completion,1687807768,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen cartridge contains 1 gram of Birthday Cake strain, which is an appealing option for vaping enthusiasts. Unfortunately, some information is missing in your message, such as the price. Please provide more details or ask any questions you may have so I can help you better."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 77, + ""total_tokens"": 132 +}","Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen cartridge contains 1 gram of Birthday Cake strain, which is an appealing option for vaping enthusiasts. Unfortunately, some information is missing in your message, such as the price. Please provide more details or ask any questions you may have so I can help you better.","Hello! It looks like you're interested in the STIIIZY - Birthday Cake Pod 1g. This vape pen cartridge contains 1 gram of Birthday Cake strain, which is an appealing option for vaping enthusiasts. Unfortunately, some information is missing in your message, such as the price. Please provide more details or ask any questions you may have so I can help you better.",0 +gpt-4,2,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VmC1pEa2fVLtylYU86aambqqtl2B,chat.completion,1687807777,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are inquiring about a product called \""TangEray,\"" which is a 1g Indoor Infused Joint offered by Cookies x The Grower Circle. \n\nTangEray is a cannabis pre-roll joint infused with a blend of potent cannabis oils and/or concentrates to elevate the smoking experience and deliver an impactful high. Cookies x The Grower Circle is likely a collaboration between two cannabis brands or growers, known for their quality products.\n\nKeep in mind that this product is intended for adult use only and should be consumed responsibly. It's important to use cannabis products in accordance with your local laws and regulations."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 57, + ""completion_tokens"": 126, + ""total_tokens"": 183 +}","It seems like you are inquiring about a product called ""TangEray,"" which is a 1g Indoor Infused Joint offered by Cookies x The Grower Circle. + +TangEray is a cannabis pre-roll joint infused with a blend of potent cannabis oils and/or concentrates to elevate the smoking experience and deliver an impactful high. Cookies x The Grower Circle is likely a collaboration between two cannabis brands or growers, known for their quality products. + +Keep in mind that this product is intended for adult use only and should be consumed responsibly. It's important to use cannabis products in accordance with your local laws and regulations.","It seems like you are inquiring about a product called ""TangEray,"" which is a 1g Indoor Infused Joint offered by Cookies x The Grower Circle. + +TangEray is a cannabis pre-roll joint infused with a blend of potent cannabis oils and/or concentrates to elevate the smoking experience and deliver an impactful high. Cookies x The Grower Circle is likely a collaboration between two cannabis brands or growers, known for their quality products. + +Keep in mind that this product is intended for adult use only and should be consumed responsibly. It's important to use cannabis products in accordance with your local laws and regulations.",0 +gpt-4,2,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VmCBGhrrMFKXttg7jtPTGiKMFl75,chat.completion,1687807787,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are interested in the Kanha Nano Blood Orange Bliss Indica Gummies. These gummies come in a pack of 10, with a total of 100mg of THC. They are infused with indica cannabis extract, providing a relaxing and soothing effect. These blood orange-flavored gummies are also nano-infused, which means they have a faster onset time and more efficient absorption. As with all cannabis products, it is important to start with a low dosage and gradually adjust to find the right dose for you. Enjoy responsibly and keep out of the reach of children."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 120, + ""total_tokens"": 178 +}","Hello! It looks like you are interested in the Kanha Nano Blood Orange Bliss Indica Gummies. These gummies come in a pack of 10, with a total of 100mg of THC. They are infused with indica cannabis extract, providing a relaxing and soothing effect. These blood orange-flavored gummies are also nano-infused, which means they have a faster onset time and more efficient absorption. As with all cannabis products, it is important to start with a low dosage and gradually adjust to find the right dose for you. Enjoy responsibly and keep out of the reach of children.","Hello! It looks like you are interested in the Kanha Nano Blood Orange Bliss Indica Gummies. These gummies come in a pack of 10, with a total of 100mg of THC. They are infused with indica cannabis extract, providing a relaxing and soothing effect. These blood orange-flavored gummies are also nano-infused, which means they have a faster onset time and more efficient absorption. As with all cannabis products, it is important to start with a low dosage and gradually adjust to find the right dose for you. Enjoy responsibly and keep out of the reach of children.",0 +gpt-4,2,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VmCNw4Px2vlIpgk36rFv8YqviGax,chat.completion,1687807799,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you are inquiring about a product called \""BOBBI HYLL Indoor - 3.5g\"" which is a Fresca Flower. Here is the information you have provided:\n\n- Brand: BOBBI HYLL\n- Strain: Fresca\n- Product type: Flower\n- Undefined value: nan\n- Quantity: 3.5g\n\nIf you have any questions or need more information about this product, please let me know and I'll be happy to help!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 104, + ""total_tokens"": 156 +}","Hello! It looks like you are inquiring about a product called ""BOBBI HYLL Indoor - 3.5g"" which is a Fresca Flower. Here is the information you have provided: + +- Brand: BOBBI HYLL +- Strain: Fresca +- Product type: Flower +- Undefined value: nan +- Quantity: 3.5g + +If you have any questions or need more information about this product, please let me know and I'll be happy to help!","Hello! It looks like you are inquiring about a product called ""BOBBI HYLL Indoor - 3.5g"" which is a Fresca Flower. Here is the information you have provided: + +- Brand: BOBBI HYLL +- Strain: Fresca +- Product type: Flower +- Undefined value: nan +- Quantity: 3.5g + +If you have any questions or need more information about this product, please let me know and I'll be happy to help!",0 +gpt-4,2,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VmCXiZDIw30cKZwZ8qf3C183cri3,chat.completion,1687807809,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Flav Blueberry Belts 100mg\nBrand: Flav\nCategory: Edible\n\nDescription:\nFlav Blueberry Belts are deliciously sweet and tangy blueberry-flavored edible belts infused with 100mg of THC. These belts provide a tasty and convenient way to enjoy the relaxing and therapeutic effects of cannabis.\n\nEach Flav Blueberry Belt is pre-dosed with a consistent amount of THC, ensuring a reliable and enjoyable experience. They are perfect for both new and experienced users looking to indulge in a delicious and discreet way to consume cannabis.\n\nIf you are trying Flav Blueberry Belts 100mg or other edibles for the first time, it's important to start with a low dose and gradually increase it to find your desired effect. As with all edibles, the onset of effects can take up to 2 hours, so be patient and enjoy responsibly."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 181, + ""total_tokens"": 233 +}","Product: Flav Blueberry Belts 100mg +Brand: Flav +Category: Edible + +Description: +Flav Blueberry Belts are deliciously sweet and tangy blueberry-flavored edible belts infused with 100mg of THC. These belts provide a tasty and convenient way to enjoy the relaxing and therapeutic effects of cannabis. + +Each Flav Blueberry Belt is pre-dosed with a consistent amount of THC, ensuring a reliable and enjoyable experience. They are perfect for both new and experienced users looking to indulge in a delicious and discreet way to consume cannabis. + +If you are trying Flav Blueberry Belts 100mg or other edibles for the first time, it's important to start with a low dose and gradually increase it to find your desired effect. As with all edibles, the onset of effects can take up to 2 hours, so be patient and enjoy responsibly.","Product: Flav Blueberry Belts 100mg +Brand: Flav +Category: Edible + +Description: +Flav Blueberry Belts are deliciously sweet and tangy blueberry-flavored edible belts infused with 100mg of THC. These belts provide a tasty and convenient way to enjoy the relaxing and therapeutic effects of cannabis. + +Each Flav Blueberry Belt is pre-dosed with a consistent amount of THC, ensuring a reliable and enjoyable experience. They are perfect for both new and experienced users looking to indulge in a delicious and discreet way to consume cannabis. + +If you are trying Flav Blueberry Belts 100mg or other edibles for the first time, it's important to start with a low dose and gradually increase it to find your desired effect. As with all edibles, the onset of effects can take up to 2 hours, so be patient and enjoy responsibly.",0 +gpt-4,2,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VmCrWn4WRZSRmDaW7vYdgd4YrWtM,chat.completion,1687807829,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you're looking for information about \""Cherry Pie - 1g - Pod\"" by Left Coast Extracts. This product is a vape pod containing 1 gram of Cherry Pie cannabis extract.\n\nCherry Pie is a hybrid cannabis strain known for its balanced effects, combining the energizing qualities of a Sativa with the relaxing properties of an Indica. The strain is a cross between Granddaddy Purple and Durban Poison, providing users with a delightful flavor reminiscent of sweet and sour cherries, with a touch of earthiness. \n\nLeft Coast Extracts is a company specializing in producing high-quality, lab-tested vape cartridges and pods made from premium cannabis extracts. They emphasize purity, potency, and consistency in their products.\n\nPlease note that the use of cannabis products is subject to legal regulations and varies depending on the location. Always ensure you are aware of and following local laws and guidelines pertaining to cannabis use."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 47, + ""completion_tokens"": 185, + ""total_tokens"": 232 +}","It seems like you're looking for information about ""Cherry Pie - 1g - Pod"" by Left Coast Extracts. This product is a vape pod containing 1 gram of Cherry Pie cannabis extract. + +Cherry Pie is a hybrid cannabis strain known for its balanced effects, combining the energizing qualities of a Sativa with the relaxing properties of an Indica. The strain is a cross between Granddaddy Purple and Durban Poison, providing users with a delightful flavor reminiscent of sweet and sour cherries, with a touch of earthiness. + +Left Coast Extracts is a company specializing in producing high-quality, lab-tested vape cartridges and pods made from premium cannabis extracts. They emphasize purity, potency, and consistency in their products. + +Please note that the use of cannabis products is subject to legal regulations and varies depending on the location. Always ensure you are aware of and following local laws and guidelines pertaining to cannabis use.","It seems like you're looking for information about ""Cherry Pie - 1g - Pod"" by Left Coast Extracts. This product is a vape pod containing 1 gram of Cherry Pie cannabis extract. + +Cherry Pie is a hybrid cannabis strain known for its balanced effects, combining the energizing qualities of a Sativa with the relaxing properties of an Indica. The strain is a cross between Granddaddy Purple and Durban Poison, providing users with a delightful flavor reminiscent of sweet and sour cherries, with a touch of earthiness. + +Left Coast Extracts is a company specializing in producing high-quality, lab-tested vape cartridges and pods made from premium cannabis extracts. They emphasize purity, potency, and consistency in their products. + +Please note that the use of cannabis products is subject to legal regulations and varies depending on the location. Always ensure you are aware of and following local laws and guidelines pertaining to cannabis use.",0 +gpt-4,2,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VmDCC5kaiN84xgtOZBN2Ej4PbXtU,chat.completion,1687807850,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It looks like you're interested in the Minntz - Emerald Cut, a 1g indoor joint. The Emerald Cut strain is known for its unique flavor profile and powerful effects.\n\nMinntz is a well-known cannabis brand that produces high-quality products. Unfortunately, I don't have the THC and CBD levels for the Emerald Cut strain, as they may vary between batches. To get the most accurate information, I'd recommend checking with the dispensary or retailer where you plan on purchasing the product.\n\nIf you have any other questions about this joint or cannabis in general, feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 54, + ""completion_tokens"": 122, + ""total_tokens"": 176 +}","Hello! It looks like you're interested in the Minntz - Emerald Cut, a 1g indoor joint. The Emerald Cut strain is known for its unique flavor profile and powerful effects. + +Minntz is a well-known cannabis brand that produces high-quality products. Unfortunately, I don't have the THC and CBD levels for the Emerald Cut strain, as they may vary between batches. To get the most accurate information, I'd recommend checking with the dispensary or retailer where you plan on purchasing the product. + +If you have any other questions about this joint or cannabis in general, feel free to ask!","Hello! It looks like you're interested in the Minntz - Emerald Cut, a 1g indoor joint. The Emerald Cut strain is known for its unique flavor profile and powerful effects. + +Minntz is a well-known cannabis brand that produces high-quality products. Unfortunately, I don't have the THC and CBD levels for the Emerald Cut strain, as they may vary between batches. To get the most accurate information, I'd recommend checking with the dispensary or retailer where you plan on purchasing the product. + +If you have any other questions about this joint or cannabis in general, feel free to ask!",0 +gpt-4,2,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VmDUwkOrPhHrwu05oKD3rXJvwwE9,chat.completion,1687807868,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems like you're inquiring about \""The Growers Circle - Double Down - Indoor - 3.5g.\"" The Growers Circle is a brand known for their cannabis products, and the \""Double Down\"" is one of their strains. This particular product comes in a 3.5g pack, perfect for personal or shared use. Note that it is an indoor-grown cannabis strain, which typically yields higher quality and potency compared to outdoor-grown products.\n\nHowever, it's important to remember that the effects and experience may vary depending on individual tolerance, method of consumption, and other factors. Always consume responsibly and talk to a professional or experienced user if you're unsure."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 52, + ""completion_tokens"": 140, + ""total_tokens"": 192 +}","Hello! It seems like you're inquiring about ""The Growers Circle - Double Down - Indoor - 3.5g."" The Growers Circle is a brand known for their cannabis products, and the ""Double Down"" is one of their strains. This particular product comes in a 3.5g pack, perfect for personal or shared use. Note that it is an indoor-grown cannabis strain, which typically yields higher quality and potency compared to outdoor-grown products. + +However, it's important to remember that the effects and experience may vary depending on individual tolerance, method of consumption, and other factors. Always consume responsibly and talk to a professional or experienced user if you're unsure.","Hello! It seems like you're inquiring about ""The Growers Circle - Double Down - Indoor - 3.5g."" The Growers Circle is a brand known for their cannabis products, and the ""Double Down"" is one of their strains. This particular product comes in a 3.5g pack, perfect for personal or shared use. Note that it is an indoor-grown cannabis strain, which typically yields higher quality and potency compared to outdoor-grown products. + +However, it's important to remember that the effects and experience may vary depending on individual tolerance, method of consumption, and other factors. Always consume responsibly and talk to a professional or experienced user if you're unsure.",0 +gpt-4,2,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VmDlF0EEn3pZ7aYcr9ZkzKSika8b,chat.completion,1687807885,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Product: Blue Dream Roll Your Own Sugar Shake 14g Bag\nBrand: Pacific Stone\nCategory: Flowers\n\nDescription:\nPacific Stone's Blue Dream Roll Your Own Sugar Shake provides a convenient and cost-effective way to enjoy the classic Blue Dream strain. This 14-gram bag of shake features sugar trimmings that retain the flavors and effects of the Blue Dream cannabis plant. \n\nBlue Dream is a sativa-dominant hybrid strain, with a sweet berry aroma produced by its blend of Blueberry and Haze genetics. This strain is popular for its uplifting and creative effects, accompanied by a smooth, relaxing body high. Pacific Stone's Blue Dream Sugar Shake is perfect for those seeking a quality cannabis experience without breaking the bank. \n\nTo use this product, simply roll it into your preferred smoking delivery method or use it in a vaporizer."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 170, + ""total_tokens"": 218 +}","Product: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: +Pacific Stone's Blue Dream Roll Your Own Sugar Shake provides a convenient and cost-effective way to enjoy the classic Blue Dream strain. This 14-gram bag of shake features sugar trimmings that retain the flavors and effects of the Blue Dream cannabis plant. + +Blue Dream is a sativa-dominant hybrid strain, with a sweet berry aroma produced by its blend of Blueberry and Haze genetics. This strain is popular for its uplifting and creative effects, accompanied by a smooth, relaxing body high. Pacific Stone's Blue Dream Sugar Shake is perfect for those seeking a quality cannabis experience without breaking the bank. + +To use this product, simply roll it into your preferred smoking delivery method or use it in a vaporizer.","Product: Blue Dream Roll Your Own Sugar Shake 14g Bag +Brand: Pacific Stone +Category: Flowers + +Description: +Pacific Stone's Blue Dream Roll Your Own Sugar Shake provides a convenient and cost-effective way to enjoy the classic Blue Dream strain. This 14-gram bag of shake features sugar trimmings that retain the flavors and effects of the Blue Dream cannabis plant. + +Blue Dream is a sativa-dominant hybrid strain, with a sweet berry aroma produced by its blend of Blueberry and Haze genetics. This strain is popular for its uplifting and creative effects, accompanied by a smooth, relaxing body high. Pacific Stone's Blue Dream Sugar Shake is perfect for those seeking a quality cannabis experience without breaking the bank. + +To use this product, simply roll it into your preferred smoking delivery method or use it in a vaporizer.",0 +gpt-4,2,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VmE1i0tNTIsYo0R1F0jyMknUyOpT,chat.completion,1687807901,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""It seems like you are referring to a product called \""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g.\"" I am not completely certain about the context or the information you're seeking. However, I can try to help. The description suggests that this product is a pack of 5 pre-rolled joints with a total weight of 2.5 grams. The strain appears to be a combination of Zoo Dawg and Cosa Nostra, which are likely cannabis strains.\n\nPlease provide more context or specific questions if you need further assistance."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 62, + ""completion_tokens"": 124, + ""total_tokens"": 186 +}","It seems like you are referring to a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" I am not completely certain about the context or the information you're seeking. However, I can try to help. The description suggests that this product is a pack of 5 pre-rolled joints with a total weight of 2.5 grams. The strain appears to be a combination of Zoo Dawg and Cosa Nostra, which are likely cannabis strains. + +Please provide more context or specific questions if you need further assistance.","It seems like you are referring to a product called ""The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g."" I am not completely certain about the context or the information you're seeking. However, I can try to help. The description suggests that this product is a pack of 5 pre-rolled joints with a total weight of 2.5 grams. The strain appears to be a combination of Zoo Dawg and Cosa Nostra, which are likely cannabis strains. + +Please provide more context or specific questions if you need further assistance.",0 +gpt-4,2,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VmEMF7ah28KxpGIsyIOZd6NdKOjL,chat.completion,1687807922,gpt-4-0314,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! It seems you are inquiring about Flight Bites S'mores Gummy 10ct 100mg. Flight Bites are a delicious and convenient way to enjoy the benefits of THC. Each gummy contains 10 mg of THC, making them perfect for microdosing and controlled consumption. The S'mores flavor offers a tasty treat that satisfies your craving for the classic campfire snack while providing the relaxation and therapeutic effects of THC. If you have any further questions, please feel free to ask!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 103, + ""total_tokens"": 161 +}","Hello! It seems you are inquiring about Flight Bites S'mores Gummy 10ct 100mg. Flight Bites are a delicious and convenient way to enjoy the benefits of THC. Each gummy contains 10 mg of THC, making them perfect for microdosing and controlled consumption. The S'mores flavor offers a tasty treat that satisfies your craving for the classic campfire snack while providing the relaxation and therapeutic effects of THC. If you have any further questions, please feel free to ask!","Hello! It seems you are inquiring about Flight Bites S'mores Gummy 10ct 100mg. Flight Bites are a delicious and convenient way to enjoy the benefits of THC. Each gummy contains 10 mg of THC, making them perfect for microdosing and controlled consumption. The S'mores flavor offers a tasty treat that satisfies your craving for the classic campfire snack while providing the relaxation and therapeutic effects of THC. If you have any further questions, please feel free to ask!",0 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VmEYkCHctea1eIcPbI3JGqC0rUQs,chat.completion,1687807934,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: The product with ID co-2MFE5QVF is Chill Medicated - Watermelon - Syrup - 250mg, manufactured by Chill Medicated. However, the information provided for the product's category, subcategory, and class is not complete. Please update the product information."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 62, + ""total_tokens"": 118 +}","System Message: The product with ID co-2MFE5QVF is Chill Medicated - Watermelon - Syrup - 250mg, manufactured by Chill Medicated. However, the information provided for the product's category, subcategory, and class is not complete. Please update the product information.","System Message: The product with ID co-2MFE5QVF is Chill Medicated - Watermelon - Syrup - 250mg, manufactured by Chill Medicated. However, the information provided for the product's category, subcategory, and class is not complete. Please update the product information.",0 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VmEbSTgSO5xLvv5DZTdCc3nKrntO,chat.completion,1687807937,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Welcome to our system!\n\nWe have received your order with the following details:\n\nOrder Number: bl-111630024545\nProduct 1: Feelz - Space Cowboy 3.5g\nProduct 2: FLOWERS 3.5G\n\nWe will process your order as soon as possible. Thank you for choosing our service!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 70, + ""total_tokens"": 123 +}","Welcome to our system! + +We have received your order with the following details: + +Order Number: bl-111630024545 +Product 1: Feelz - Space Cowboy 3.5g +Product 2: FLOWERS 3.5G + +We will process your order as soon as possible. Thank you for choosing our service!","Welcome to our system! + +We have received your order with the following details: + +Order Number: bl-111630024545 +Product 1: Feelz - Space Cowboy 3.5g +Product 2: FLOWERS 3.5G + +We will process your order as soon as possible. Thank you for choosing our service!",0 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VmEejKVd8agpTNtLwHckrTZTAkJw,chat.completion,1687807940,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: \n\nThank you for your order! Your order number is fl-8voAjt83sD. You have purchased 1 unit of Champelli | Xclusivo 3.5g | Eighths. The strain is Champelli and it will be in PackedBud form. The quantity purchased is 3.5. We will notify you once your order has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you for choosing us!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 73, + ""completion_tokens"": 105, + ""total_tokens"": 178 +}","System Message: + +Thank you for your order! Your order number is fl-8voAjt83sD. You have purchased 1 unit of Champelli | Xclusivo 3.5g | Eighths. The strain is Champelli and it will be in PackedBud form. The quantity purchased is 3.5. We will notify you once your order has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you for choosing us!","System Message: + +Thank you for your order! Your order number is fl-8voAjt83sD. You have purchased 1 unit of Champelli | Xclusivo 3.5g | Eighths. The strain is Champelli and it will be in PackedBud form. The quantity purchased is 3.5. We will notify you once your order has been shipped. If you have any questions or concerns, please don't hesitate to contact us. Thank you for choosing us!",0 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VmEje0fjqZwD7309H7RXTtYTvzVU,chat.completion,1687807945,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! This is a system message from GPT4. It appears that you have provided some product information, specifically an item code and product details of \""CAM - Mellowz #7 7g, FLOWERS 7G\"". However, the second part of the product details seems to be missing a value - it says \""nan,nan\"". Can you provide more information so I can assist you better? Thank you!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 51, + ""completion_tokens"": 88, + ""total_tokens"": 139 +}","Hello there! This is a system message from GPT4. It appears that you have provided some product information, specifically an item code and product details of ""CAM - Mellowz #7 7g, FLOWERS 7G"". However, the second part of the product details seems to be missing a value - it says ""nan,nan"". Can you provide more information so I can assist you better? Thank you!","Hello there! This is a system message from GPT4. It appears that you have provided some product information, specifically an item code and product details of ""CAM - Mellowz #7 7g, FLOWERS 7G"". However, the second part of the product details seems to be missing a value - it says ""nan,nan"". Can you provide more information so I can assist you better? Thank you!",0 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VmEnrkBsw0ypXHpdVyRNsb7aQ9Wx,chat.completion,1687807949,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: \n\nI'm sorry, but I don't understand the content of the message. Can you please provide me with more context or information so I can better assist you?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 36, + ""total_tokens"": 97 +}","System message: + +I'm sorry, but I don't understand the content of the message. Can you please provide me with more context or information so I can better assist you?","System message: + +I'm sorry, but I don't understand the content of the message. Can you please provide me with more context or information so I can better assist you?",0 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VmEp4BD0ubAFYS1wo6HY99BPs95g,chat.completion,1687807951,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Welcome! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. This product is a high-quality cannabis extract crafted using state-of-the-art techniques. With its potent and delicious flavor profile, Pink Lemonade Crushed Diamonds is the perfect choice for cannabis enthusiasts who seek a premium concentrate. If you have any questions, please do not hesitate to ask, and we'll be happy to assist you."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 87, + ""total_tokens"": 143 +}","Welcome! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. This product is a high-quality cannabis extract crafted using state-of-the-art techniques. With its potent and delicious flavor profile, Pink Lemonade Crushed Diamonds is the perfect choice for cannabis enthusiasts who seek a premium concentrate. If you have any questions, please do not hesitate to ask, and we'll be happy to assist you.","Welcome! Thank you for your interest in Raw Garden's Pink Lemonade Crushed Diamonds 1g concentrate. This product is a high-quality cannabis extract crafted using state-of-the-art techniques. With its potent and delicious flavor profile, Pink Lemonade Crushed Diamonds is the perfect choice for cannabis enthusiasts who seek a premium concentrate. If you have any questions, please do not hesitate to ask, and we'll be happy to assist you.",0 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VmEtoZgI78iluB0KXuZRagaL2w42,chat.completion,1687807955,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see that you have entered the product code \""md-1159983\"". Can you please provide me with more information about what you need help with regarding this product?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 61, + ""completion_tokens"": 36, + ""total_tokens"": 97 +}","Hello! I see that you have entered the product code ""md-1159983"". Can you please provide me with more information about what you need help with regarding this product?","Hello! I see that you have entered the product code ""md-1159983"". Can you please provide me with more information about what you need help with regarding this product?",0 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VmEvjB5BVx6Wo6PVEHWBVih39Wfv,chat.completion,1687807957,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order of 1g Ocean Breeze Cultivators' Truffle Pupil strain. Our team will process and package your order, and it will be shipped within the next 24 hours. Please keep an eye out for a confirmation email with your tracking information. Enjoy your purchase, and thank you for choosing Ocean Breeze Cultivators!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 68, + ""completion_tokens"": 73, + ""total_tokens"": 141 +}","Thank you for your order of 1g Ocean Breeze Cultivators' Truffle Pupil strain. Our team will process and package your order, and it will be shipped within the next 24 hours. Please keep an eye out for a confirmation email with your tracking information. Enjoy your purchase, and thank you for choosing Ocean Breeze Cultivators!","Thank you for your order of 1g Ocean Breeze Cultivators' Truffle Pupil strain. Our team will process and package your order, and it will be shipped within the next 24 hours. Please keep an eye out for a confirmation email with your tracking information. Enjoy your purchase, and thank you for choosing Ocean Breeze Cultivators!",0 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VmEyY9MIWJ6Db6gEfEkm53E4FYn6,chat.completion,1687807960,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello there! Based on the information you provided, it seems like you have purchased a product called \""Cookies | Triple Scoop Preroll 1g\"" which is a joint containing 1 gram of cannabis. Is there anything else I can assist you with?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 67, + ""completion_tokens"": 53, + ""total_tokens"": 120 +}","Hello there! Based on the information you provided, it seems like you have purchased a product called ""Cookies | Triple Scoop Preroll 1g"" which is a joint containing 1 gram of cannabis. Is there anything else I can assist you with?","Hello there! Based on the information you provided, it seems like you have purchased a product called ""Cookies | Triple Scoop Preroll 1g"" which is a joint containing 1 gram of cannabis. Is there anything else I can assist you with?",0 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VmF1BAiYMrtZPChkP51oMZiWEAbf,chat.completion,1687807963,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your inquiry. It looks like you are interested in the STIIIZY Birthday Cake Pod 1g. Unfortunately, we could not find any information on the \""nan, VAPE PENS 1G, nan, 1.0\"" part of your message. Can you please provide more information or clarify your request?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 56, + ""completion_tokens"": 71, + ""total_tokens"": 127 +}","Hello! Thank you for your inquiry. It looks like you are interested in the STIIIZY Birthday Cake Pod 1g. Unfortunately, we could not find any information on the ""nan, VAPE PENS 1G, nan, 1.0"" part of your message. Can you please provide more information or clarify your request?","Hello! Thank you for your inquiry. It looks like you are interested in the STIIIZY Birthday Cake Pod 1g. Unfortunately, we could not find any information on the ""nan, VAPE PENS 1G, nan, 1.0"" part of your message. Can you please provide more information or clarify your request?",0 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VmF4rwx8orPcVOc6NQgTGAYxXYdu,chat.completion,1687807966,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: Your request is unclear. Can you please provide more context or information so I can better understand your request?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 58, + ""completion_tokens"": 24, + ""total_tokens"": 82 +}",System Message: Your request is unclear. Can you please provide more context or information so I can better understand your request?,System Message: Your request is unclear. Can you please provide more context or information so I can better understand your request?,0 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VmF60Qi5onjWVImQETl8rOJelCeA,chat.completion,1687807968,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Your order with the code co-7YGGNHBR for Kanha Nano Blood Orange Bliss Indica Gummies (10 count, 100mg) has been received and is currently being processed. Thank you for choosing Kanha!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 49, + ""total_tokens"": 108 +}","Hello! Your order with the code co-7YGGNHBR for Kanha Nano Blood Orange Bliss Indica Gummies (10 count, 100mg) has been received and is currently being processed. Thank you for choosing Kanha!","Hello! Your order with the code co-7YGGNHBR for Kanha Nano Blood Orange Bliss Indica Gummies (10 count, 100mg) has been received and is currently being processed. Thank you for choosing Kanha!",0 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VmF87aoz4yUfneDtl8v2iW27GAPB,chat.completion,1687807970,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Thank you for your order, Bobbi Hyll! Your order number is md-1242517.\n\nYou have ordered Indoor Flores-3.5g of Fresca strain from Nan brand. Your order will be processed and shipped out to you as soon as possible. Thank you for choosing our services and we hope you enjoy your purchase!"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 68, + ""total_tokens"": 121 +}","Thank you for your order, Bobbi Hyll! Your order number is md-1242517. + +You have ordered Indoor Flores-3.5g of Fresca strain from Nan brand. Your order will be processed and shipped out to you as soon as possible. Thank you for choosing our services and we hope you enjoy your purchase!","Thank you for your order, Bobbi Hyll! Your order number is md-1242517. + +You have ordered Indoor Flores-3.5g of Fresca strain from Nan brand. Your order will be processed and shipped out to you as soon as possible. Thank you for choosing our services and we hope you enjoy your purchase!",0 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VmFCmm6Ga5eg0jTEdSL9H5LPDlg2,chat.completion,1687807974,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! I see that you are interested in Flav's Blueberry Belts 100mg edible. Can I help you with anything today?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 29, + ""total_tokens"": 82 +}",Hello! I see that you are interested in Flav's Blueberry Belts 100mg edible. Can I help you with anything today?,Hello! I see that you are interested in Flav's Blueberry Belts 100mg edible. Can I help you with anything today?,0 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VmFDuaB0DQ05Vqg5lI0m3B3fBSh2,chat.completion,1687807975,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hi there! Your order with the ID md-1347497 for a Cherry Pie 1g Pod from Left Coast Extracts has been received. This is for a vape product and the THC and CBD levels are both currently unknown (nan). Thank you for your purchase and we will update you as soon as the order has shipped."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 48, + ""completion_tokens"": 67, + ""total_tokens"": 115 +}",Hi there! Your order with the ID md-1347497 for a Cherry Pie 1g Pod from Left Coast Extracts has been received. This is for a vape product and the THC and CBD levels are both currently unknown (nan). Thank you for your purchase and we will update you as soon as the order has shipped.,Hi there! Your order with the ID md-1347497 for a Cherry Pie 1g Pod from Left Coast Extracts has been received. This is for a vape product and the THC and CBD levels are both currently unknown (nan). Thank you for your purchase and we will update you as soon as the order has shipped.,0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VmFHBOd422KasneD9AjxCvNlz7Ax,chat.completion,1687807979,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System message: Cannot find information for the specified product code and strain. Please provide a valid code and strain."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 55, + ""completion_tokens"": 22, + ""total_tokens"": 77 +}",System message: Cannot find information for the specified product code and strain. Please provide a valid code and strain.,System message: Cannot find information for the specified product code and strain. Please provide a valid code and strain.,0 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VmFIlPE0akdCntJnOawMlpeuva3R,chat.completion,1687807980,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""System Message: Sorry, I am not able to understand the prompt. Can you please provide me with more information or context regarding the message?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 53, + ""completion_tokens"": 28, + ""total_tokens"": 81 +}","System Message: Sorry, I am not able to understand the prompt. Can you please provide me with more information or context regarding the message?","System Message: Sorry, I am not able to understand the prompt. Can you please provide me with more information or context regarding the message?",0 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VmFKUi45mI9C8OGL1jxEbnKU07s1,chat.completion,1687807982,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Greetings! This is a system message regarding your recent purchase. Your order number is md-1195389. You have purchased a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. The product falls under the Flowers category with nan THC and nan CBD content. We hope you enjoy your purchase. Thank you for choosing our services."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 49, + ""completion_tokens"": 70, + ""total_tokens"": 119 +}",Greetings! This is a system message regarding your recent purchase. Your order number is md-1195389. You have purchased a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. The product falls under the Flowers category with nan THC and nan CBD content. We hope you enjoy your purchase. Thank you for choosing our services.,Greetings! This is a system message regarding your recent purchase. Your order number is md-1195389. You have purchased a Blue Dream Roll Your Own Sugar Shake 14g Bag from Pacific Stone. The product falls under the Flowers category with nan THC and nan CBD content. We hope you enjoy your purchase. Thank you for choosing our services.,0 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VmFbJLw0mgNtD8EIvd1r1GBCod1J,chat.completion,1687807999,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. However, I am not sure what you are requesting. Can you please clarify or provide additional details?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 63, + ""completion_tokens"": 28, + ""total_tokens"": 91 +}","Hello! Thank you for your message. However, I am not sure what you are requesting. Can you please clarify or provide additional details?","Hello! Thank you for your message. However, I am not sure what you are requesting. Can you please clarify or provide additional details?",0 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VmFcexBrUIbB98eGr9dT9aBMwFFx,chat.completion,1687808000,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Hello! Thank you for your message. Can you please provide more information about your request so that I can assist you better?"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 59, + ""completion_tokens"": 25, + ""total_tokens"": 84 +}",Hello! Thank you for your message. Can you please provide more information about your request so that I can assist you better?,Hello! Thank you for your message. Can you please provide more information about your request so that I can assist you better?,0 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VmFeww0Hvmo9Sl5BwNP0CHiuVO9k,chat.completion,1687808002,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Watermelon,Syrup,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 186, + ""completion_tokens"": 13, + ""total_tokens"": 199 +}","Chill Medicated,Watermelon,Syrup,250mg","Chill Medicated,Watermelon,Syrup,250mg",0 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VmFfWUPQesC7VNpxwk9IRhi1uALY,chat.completion,1687808003,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 14, + ""total_tokens"": 197 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VmFg0GuzuRupVor3tob0EaJvfJFx,chat.completion,1687808004,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 203, + ""completion_tokens"": 16, + ""total_tokens"": 219 +}","Champelli,Flower,Packed Bud,Xclusivo,3.5","Champelli,Flower,Packed Bud,Xclusivo,3.5",4 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VmFjlz6CO9lzhBDtca6Ft83bCL1T,chat.completion,1687808007,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 181, + ""completion_tokens"": 13, + ""total_tokens"": 194 +}","CAM,Mellowz #7,Flower,Bud,7","CAM,Mellowz #7,Flower,Bud,7",2 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VmFkANdiCyXJtY0nQ5vgNu8UHG23,chat.completion,1687808008,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 191, + ""completion_tokens"": 21, + ""total_tokens"": 212 +}","Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg","Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg",1 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VmFmkyEpzpuhRLnCrrJn4nsWfS8l,chat.completion,1687808010,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1.0g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 186, + ""completion_tokens"": 18, + ""total_tokens"": 204 +}","Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1.0g","Raw Garden,Pink Lemonade Crushed Diamonds,Concentrate,1.0g",0 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VmFnZUj5a81g9wu53Ye7RC12il5w,chat.completion,1687808011,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 191, + ""completion_tokens"": 17, + ""total_tokens"": 208 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VmFoKQO4ljbUBvDtFwy9p504GYwQ,chat.completion,1687808012,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Truffle Pupil,Indoor,Blunt,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 198, + ""completion_tokens"": 20, + ""total_tokens"": 218 +}","Ocean Breeze Cultivators,Truffle Pupil,Indoor,Blunt,1g","Ocean Breeze Cultivators,Truffle Pupil,Indoor,Blunt,1g",1 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VmFqzEAiMi827ovMHX1qZI902E8F,chat.completion,1687808014,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Triple Scoop,Joint,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 197, + ""completion_tokens"": 16, + ""total_tokens"": 213 +}","Cookies,Preroll,Triple Scoop,Joint,1.0","Cookies,Preroll,Triple Scoop,Joint,1.0",2 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VmFruvf4Y7rM38vxXphhDinUxOCs,chat.completion,1687808015,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Birthday Cake,1.0g,Pod"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 186, + ""completion_tokens"": 17, + ""total_tokens"": 203 +}","STIIIZY,Vape Pen,Birthday Cake,1.0g,Pod","STIIIZY,Vape Pen,Birthday Cake,1.0g,Pod",1 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VmFtfnQMnSTEMhtl6sP4uXRMTnoS,chat.completion,1687808017,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g."" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 188, + ""completion_tokens"": 21, + ""total_tokens"": 209 +}","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g.","Cookies x The Grower Circle,Infused Joint,TangEray,Indoor,1g.",0 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VmFu6DaM05BjIPHVC76FOncbpKyF,chat.completion,1687808018,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 189, + ""completion_tokens"": 20, + ""total_tokens"": 209 +}","Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg","Kanha,Nano Gummies,Blood Orange Bliss,Indica,10ct,100mg",1 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VmFwg1uAvbmK1IlyHqIE4FO6K5Oe,chat.completion,1687808020,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Indoor,Flower/Bud,Fresca,3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 21, + ""total_tokens"": 204 +}","BOBBI HYLL,Indoor,Flower/Bud,Fresca,3.5g","BOBBI HYLL,Indoor,Flower/Bud,Fresca,3.5g",0 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VmFy9l5U6zsT4xBQTSDNF6ZQM6Jd,chat.completion,1687808022,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 13, + ""total_tokens"": 196 +}","Flav,Edible,Blueberry Belts,100mg","Flav,Edible,Blueberry Belts,100mg",0 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VmFzGIAgCd47nloh3NVoodkSK3ns,chat.completion,1687808023,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Left Coast Extracts,Vape Pod,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 178, + ""completion_tokens"": 14, + ""total_tokens"": 192 +}","Cherry Pie,Left Coast Extracts,Vape Pod,1g","Cherry Pie,Left Coast Extracts,Vape Pod,1g",0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VmG1SCXI4ETTJvVm19JNYHg92bcy,chat.completion,1687808025,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Indoor,Emerald Cut,Joint,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 185, + ""completion_tokens"": 15, + ""total_tokens"": 200 +}","Minntz,Indoor,Emerald Cut,Joint,1g","Minntz,Indoor,Emerald Cut,Joint,1g",1 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VmG3UTQM7rE20FveiWiZOAp6iWKW,chat.completion,1687808027,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,Flower,Bud,3.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 183, + ""completion_tokens"": 20, + ""total_tokens"": 203 +}","The Growers Circle,Double Down,Indoor,Flower,Bud,3.5g","The Growers Circle,Double Down,Indoor,Flower,Bud,3.5g",1 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VmG5Iey66HwsqET6lVnppG5sYj3y,chat.completion,1687808029,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Sugar Shake,Blue Dream,14g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 179, + ""completion_tokens"": 11, + ""total_tokens"": 190 +}","Pacific Stone,Sugar Shake,Blue Dream,14g","Pacific Stone,Sugar Shake,Blue Dream,14g",0 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VmG6ZCNFjlCLPmwYMuMYKQ6zdVtM,chat.completion,1687808030,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,Infused Preroll,5pk,2.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 193, + ""completion_tokens"": 30, + ""total_tokens"": 223 +}","The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,Infused Preroll,5pk,2.5g","The Grower Circle,Multi Joint,Zoo Dawg x Cosa Nostra,Infused Preroll,5pk,2.5g",0 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VmG8L9UM3ZTrXeRTGPBFZyrlv5OJ,chat.completion,1687808032,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummies,S'mores,10 count,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 189, + ""completion_tokens"": 14, + ""total_tokens"": 203 +}","Flight Bites,Gummies,S'mores,10 count,100mg","Flight Bites,Gummies,S'mores,10 count,100mg",1 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VmG9pgVrLgnwTGpnGVwePLRvHhtz,chat.completion,1687808033,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 13, + ""total_tokens"": 280 +}","Chill Medicated,Syrup,Watermelon,250mg","Chill Medicated,Syrup,Watermelon,250mg",0 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VmGAfKtJ2auTjrmeEAEGgJQ2TT3A,chat.completion,1687808034,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 14, + ""total_tokens"": 278 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VmGBcZWxG5Dm9oqMIWXTcpO4PvyO,chat.completion,1687808035,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Eighth,Packed Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 284, + ""completion_tokens"": 15, + ""total_tokens"": 299 +}","Champelli,Eighth,Packed Bud,Xclusivo,3.5","Champelli,Eighth,Packed Bud,Xclusivo,3.5",3 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VmGDjNcLO7GC6nB53qx4YLBBByFw,chat.completion,1687808037,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 262, + ""completion_tokens"": 13, + ""total_tokens"": 275 +}","CAM,Mellowz #7,Flower,Bud,7","CAM,Mellowz #7,Flower,Bud,7",2 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VmGE7qw45vT6gahAHn7jYJOdA8wh,chat.completion,1687808038,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 21, + ""total_tokens"": 293 +}","Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg","Backpack Boyz,Sizzurp,Tincture,Bubblegum Gelato,1000mg",1 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VmGGV7vTnDn4foSS2fHsPYpSDvfH,chat.completion,1687808040,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 17, + ""total_tokens"": 284 +}","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0","Raw Garden,Concentrate,Pink Lemonade Crushed Diamonds,1.0",0 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VmGH5X5JHPAYOLvuTW1ezPphVN7q,chat.completion,1687808041,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 272, + ""completion_tokens"": 17, + ""total_tokens"": 289 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VmGI11D9T2GaQ8nlq6cBZ5RXvkWc,chat.completion,1687808042,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 279, + ""completion_tokens"": 20, + ""total_tokens"": 299 +}","Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g","Ocean Breeze Cultivators,Truffle Pupil,Blunt,Indoor,1g",2 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VmGKH3kXdcI7sEPr0btg4A0tSPol,chat.completion,1687808044,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 278, + ""completion_tokens"": 14, + ""total_tokens"": 292 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VmGLbeUyDNRNtsFhWQKq0cXtsJbn,chat.completion,1687808045,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Birthday Cake,Pod,Vape Pen,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 267, + ""completion_tokens"": 16, + ""total_tokens"": 283 +}","STIIIZY,Birthday Cake,Pod,Vape Pen,1.0","STIIIZY,Birthday Cake,Pod,Vape Pen,1.0",1 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VmGNOOYOs61UDrR9v5hMyNyasCXs,chat.completion,1687808047,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Indoor,Grower Circle Infused Joint,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 269, + ""completion_tokens"": 22, + ""total_tokens"": 291 +}","Cookies x The Grower Circle,TangEray,Indoor,Grower Circle Infused Joint,1","Cookies x The Grower Circle,TangEray,Indoor,Grower Circle Infused Joint,1",1 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VmGPNXRshbnaKjKGHnUgxyyP1YXS,chat.completion,1687808049,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Nano Gummies,Indica,Blood Orange Bliss,10ct-100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 20, + ""total_tokens"": 290 +}","Kanha,Nano Gummies,Indica,Blood Orange Bliss,10ct-100mg","Kanha,Nano Gummies,Indica,Blood Orange Bliss,10ct-100mg",1 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VmGQg3at7rm82p5F72uyWtu8ZaLM,chat.completion,1687808050,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Bobbi Hyll, Flower, Indoor, 3.5g, Fresca"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 17, + ""total_tokens"": 281 +}","Bobbi Hyll, Flower, Indoor, 3.5g, Fresca","Bobbi Hyll, Flower, Indoor, 3.5g, Fresca",0 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VmGTf3BVFPFlHhzOF0KvSZHI4U5s,chat.completion,1687808053,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Blueberry Belts,100mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 13, + ""total_tokens"": 277 +}","Flav,Edible,Blueberry Belts,100mg","Flav,Edible,Blueberry Belts,100mg",0 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VmGVtSx4jnakVRndKbdlQlHcXWAi,chat.completion,1687808055,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Pod,Vape Cartridge,Left Coast Extracts,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 259, + ""completion_tokens"": 18, + ""total_tokens"": 277 +}","Cherry Pie,Pod,Vape Cartridge,Left Coast Extracts,1.0","Cherry Pie,Pod,Vape Cartridge,Left Coast Extracts,1.0",0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VmGXpyFeXO3OaUgfxhhUFBED7oNd,chat.completion,1687808057,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Indoor,Joint,Emerald Cut,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 266, + ""completion_tokens"": 14, + ""total_tokens"": 280 +}","Minntz,Indoor,Joint,Emerald Cut,1","Minntz,Indoor,Joint,Emerald Cut,1",4 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VmGYMRw4vUUTOI4ybSB6DOdt0uqD,chat.completion,1687808058,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Indoor,Flower,Bud,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 264, + ""completion_tokens"": 19, + ""total_tokens"": 283 +}","The Growers Circle,Double Down,Indoor,Flower,Bud,3.5","The Growers Circle,Double Down,Indoor,Flower,Bud,3.5",1 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VmGZsHUCGv08FFTI2kq4aLXYOG4J,chat.completion,1687808059,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Flower,Sugar Shake,Blue Dream,14"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 260, + ""completion_tokens"": 13, + ""total_tokens"": 273 +}","Pacific Stone,Flower,Sugar Shake,Blue Dream,14","Pacific Stone,Flower,Sugar Shake,Blue Dream,14",3 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VmGfUFeBCtiNEoTzqIoL4Wd6VSJN,chat.completion,1687808065,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5 Pack,2.5g"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 274, + ""completion_tokens"": 24, + ""total_tokens"": 298 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5 Pack,2.5g","The Grower Circle,Zoo Dawg x Cosa Nostra,Multi Joint,5 Pack,2.5g",0 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VmGgxAiSAaTyN7GkhQLSnWMekDSK,chat.completion,1687808066,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Gummies,S'mores flavor,10 count package,100 mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 270, + ""completion_tokens"": 16, + ""total_tokens"": 286 +}","Flight Bites,Gummies,S'mores flavor,10 count package,100 mg","Flight Bites,Gummies,S'mores flavor,10 count package,100 mg",1 +gpt-3.5-turbo,1,0,"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","Chill Medicated,Edible,Beverage,nan,nan",chatcmpl-7VmGimz690IFarI5Xq0MftmuqVfCZ,chat.completion,1687808068,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Chill Medicated,Syrup,Watermelon,250mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 13, + ""total_tokens"": 401 +}","Chill Medicated,Syrup,Watermelon,250mg","Chill Medicated,Syrup,Watermelon,250mg",0 +gpt-3.5-turbo,1,0,"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","Feelz,Flower,Bud,Space Cowboy,3.5",chatcmpl-7VmGk0ujpf8XfOcUFrkj9SqqEY6yI,chat.completion,1687808070,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Feelz,Flower,Bud,Space Cowboy,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 14, + ""total_tokens"": 399 +}","Feelz,Flower,Bud,Space Cowboy,3.5","Feelz,Flower,Bud,Space Cowboy,3.5",5 +gpt-3.5-turbo,1,0,"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","Champelli,Flower,Bud,Xclusivo,3.5",chatcmpl-7VmGljIZyEgrqsjJKlqcmLaEaQpTn,chat.completion,1687808071,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Champelli,Flower,Bud,Xclusivo,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 405, + ""completion_tokens"": 15, + ""total_tokens"": 420 +}","Champelli,Flower,Bud,Xclusivo,3.5","Champelli,Flower,Bud,Xclusivo,3.5",5 +gpt-3.5-turbo,1,0,"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","CAM,Flower,Bud,Mellowz #7,7",chatcmpl-7VmGmSYvJqcnQAq0xR9hV7p1cwRzD,chat.completion,1687808072,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""CAM,Mellowz #7,Flower,Bud,7"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 383, + ""completion_tokens"": 13, + ""total_tokens"": 396 +}","CAM,Mellowz #7,Flower,Bud,7","CAM,Mellowz #7,Flower,Bud,7",2 +gpt-3.5-turbo,1,0,"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","Backpack Boyz,Edible,CBD Tincture/Caps/etc,nan,nan",chatcmpl-7VmGn1IF7NwVhakXpNbgmbolP7Xgr,chat.completion,1687808073,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 21, + ""total_tokens"": 414 +}","Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg","Backpack Boyz,Tincture,Sizzurp,Bubblegum Gelato,1000mg",1 +gpt-3.5-turbo,1,0,"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1",chatcmpl-7VmGpfYAlhZ8SYCLr9XC2Kr8ajtPK,chat.completion,1687808075,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 17, + ""total_tokens"": 405 +}","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0","Raw Garden,Concentrate,Diamonds,Pink Lemonade,1.0",4 +gpt-3.5-turbo,1,0,"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","Jeeter,Preroll,Infused Joint,Peaches,12.5",chatcmpl-7VmGrCwFS3fiSvn18MpH9t6PDffAY,chat.completion,1687808077,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Jeeter,Preroll,Infused Joint,Peaches,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 393, + ""completion_tokens"": 17, + ""total_tokens"": 410 +}","Jeeter,Preroll,Infused Joint,Peaches,12.5","Jeeter,Preroll,Infused Joint,Peaches,12.5",5 +gpt-3.5-turbo,1,0,"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1",chatcmpl-7VmGsls6B6xjISSQXSY2blfoBakjz,chat.completion,1687808078,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 400, + ""completion_tokens"": 18, + ""total_tokens"": 418 +}","Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0","Ocean Breeze Cultivators,Blunt,Truffle Pupil,1.0",0 +gpt-3.5-turbo,1,0,"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","Cookies,Preroll,Joint,Triple Scoop,1",chatcmpl-7VmGurtIl8XuixvXB3xbiiRwrBlm5,chat.completion,1687808080,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies,Preroll,Joint,Triple Scoop,1"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 399, + ""completion_tokens"": 14, + ""total_tokens"": 413 +}","Cookies,Preroll,Joint,Triple Scoop,1","Cookies,Preroll,Joint,Triple Scoop,1",5 +gpt-3.5-turbo,1,0,"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","STIIIZY,Vape,Vape,Birthday Cake,1",chatcmpl-7VmGv9M3CZSaVbVNH6Lj8VgSi86ry,chat.completion,1687808081,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""STIIIZY,Vape Pen,Birthday Cake,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 388, + ""completion_tokens"": 14, + ""total_tokens"": 402 +}","STIIIZY,Vape Pen,Birthday Cake,1.0","STIIIZY,Vape Pen,Birthday Cake,1.0",0 +gpt-3.5-turbo,1,0,"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","Cookies,Preroll,Infused Joint,TangEray,1",chatcmpl-7VmGwJ91CBDCL4kJWV185Pistp4QI,chat.completion,1687808082,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 390, + ""completion_tokens"": 21, + ""total_tokens"": 411 +}","Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0","Cookies x The Grower Circle,TangEray,Infused Joint,Indoor,1.0",1 +gpt-3.5-turbo,1,0,"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","Kanha,Edible,Gummies,nan,nan",chatcmpl-7VmGyhy9WvMSGQK8fKQ2IpqfNExWH,chat.completion,1687808084,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg,10ct"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 391, + ""completion_tokens"": 20, + ""total_tokens"": 411 +}","Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg,10ct","Kanha,Edible,Gummies,Blood Orange Bliss Indica,100mg,10ct",3 +gpt-3.5-turbo,1,0,"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","Fresca,Flower,Bud,BOBBI HYLL,3.5",chatcmpl-7VmGzYnF49ZaFnmm3DLk1nDrz72Y0,chat.completion,1687808085,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""BOBBI HYLL,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 17, + ""total_tokens"": 402 +}","BOBBI HYLL,Flower,Bud,Indoor,3.5","BOBBI HYLL,Flower,Bud,Indoor,3.5",3 +gpt-3.5-turbo,1,0,"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","Flav,Edible,Gummies,nan,nan",chatcmpl-7VmH1svaI1B4h30J6OdcJgZJj2soA,chat.completion,1687808087,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flav,Edible,Gummies,nan,nan"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 11, + ""total_tokens"": 396 +}","Flav,Edible,Gummies,nan,nan","Flav,Edible,Gummies,nan,nan",5 +gpt-3.5-turbo,1,0,"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","Left Coast Extracts,Vape,510 cart,Cherry Pie,1",chatcmpl-7VmH3RToL1qmgi3cUaJATwREAWnNX,chat.completion,1687808089,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Cherry Pie,Pod,Vape,1.0,Left Coast Extracts"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 380, + ""completion_tokens"": 16, + ""total_tokens"": 396 +}","Cherry Pie,Pod,Vape,1.0,Left Coast Extracts","Cherry Pie,Pod,Vape,1.0,Left Coast Extracts",0 +gpt-3.5-turbo,1,0,"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","Minntz,Preroll,Joint,Emerald Cut,1",chatcmpl-7VmH4nJFQApgLCXsN9sxowC3TbV1b,chat.completion,1687808090,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Minntz,Preroll,Joint,Emerald Cut,1.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 387, + ""completion_tokens"": 17, + ""total_tokens"": 404 +}","Minntz,Preroll,Joint,Emerald Cut,1.0","Minntz,Preroll,Joint,Emerald Cut,1.0",4 +gpt-3.5-turbo,1,0,"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","The Growers Circle,Flower,Bud,Double Down,3.5",chatcmpl-7VmH5v2hMKItKUIT54HgDpnDklXZW,chat.completion,1687808091,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Growers Circle,Double Down,Flower,Bud,Indoor,3.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 385, + ""completion_tokens"": 19, + ""total_tokens"": 404 +}","The Growers Circle,Double Down,Flower,Bud,Indoor,3.5","The Growers Circle,Double Down,Flower,Bud,Indoor,3.5",1 +gpt-3.5-turbo,1,0,"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","Pacific Stone,Flower,Bud,nan,14",chatcmpl-7VmH7fOTkbTDqvdgMCsrXsyc8wXji,chat.completion,1687808093,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Pacific Stone,Sugar Shake,Blue Dream,14.0"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 381, + ""completion_tokens"": 12, + ""total_tokens"": 393 +}","Pacific Stone,Sugar Shake,Blue Dream,14.0","Pacific Stone,Sugar Shake,Blue Dream,14.0",0 +gpt-3.5-turbo,1,0,"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5",chatcmpl-7VmH8ZuN6PAPdKPYlnVXqb3bl2v7v,chat.completion,1687808094,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""The Grower Circle,Zoo Dawg x Cosa Nostra,Multijoint,Joint,12.5"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 395, + ""completion_tokens"": 23, + ""total_tokens"": 418 +}","The Grower Circle,Zoo Dawg x Cosa Nostra,Multijoint,Joint,12.5","The Grower Circle,Zoo Dawg x Cosa Nostra,Multijoint,Joint,12.5",1 +gpt-3.5-turbo,1,0,"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","Flight Bites,Edible,Gummies,nan,nan",chatcmpl-7VmHADIXFokbBPpnayIWBLRvjCBEM,chat.completion,1687808096,gpt-3.5-turbo-0301,"[ JSON: { + ""index"": 0, + ""message"": { + ""role"": ""assistant"", + ""content"": ""Flight Bites,Edible,Gummies,S'mores,100mg,10ct"" + }, + ""finish_reason"": ""stop"" +}]","{ + ""prompt_tokens"": 391, + ""completion_tokens"": 17, + ""total_tokens"": 408 +}","Flight Bites,Edible,Gummies,S'mores,100mg,10ct","Flight Bites,Edible,Gummies,S'mores,100mg,10ct",3 diff --git a/data/cookies_test.jsonl b/data/cookies_test.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a931bde6c5ae95b8a81c4bbc21aa78bbf028c17e --- /dev/null +++ b/data/cookies_test.jsonl @@ -0,0 +1,20 @@ +{"prompt":"co-2MFE5QVF,Chill Medicated - Watermelon - Syrup - 250mg,Chill Medicated,nan,nan,nan","completion":"Chill Medicated,Edible,Beverage,nan,nan"} +{"prompt":"bl-111630024545,Feelz - Space Cowboy 3.5g,nan,FLOWERS 3.5G,nan,nan","completion":"Feelz,Flower,Bud,Space Cowboy,3.5"} +{"prompt":"fl-8voAjt83sD,Champelli | Xclusivo 3.5g | Eighths,Champelli,PackedBud,Champelli | Xclusivo 3.5g,3.5","completion":"Champelli,Flower,Bud,Xclusivo,3.5"} +{"prompt":"bl-073133213364,CAM - Mellowz #7 7g,nan,FLOWERS 7G,nan,nan","completion":"CAM,Flower,Bud,Mellowz #7,7"} +{"prompt":"fl-fwJQL2AWnS,Backpack Boyz | Bubblegum Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","completion":"Backpack Boyz,Edible,CBD Tincture\/Caps\/etc,nan,nan"} +{"prompt":"fl-dXE5cH45AQ,Raw Garden | Pink Lemonade Crushed Diamonds 1g,Raw Garden,Concentrate,nan,1.0","completion":"Raw Garden,Concentrate,Diamonds,Pink Lemonade,1"} +{"prompt":"md-1159983,Baby Jeeter Peaches | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","completion":"Jeeter,Preroll,Infused Joint,Peaches,12.5"} +{"prompt":"co-6WGV1Z0H,Ocean Breeze Cultivators - Truffle Pupil - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Truffle Pupil,nan","completion":"Ocean Breeze Cultivators,Preroll,Blunt,Truffle Pupil,1"} +{"prompt":"fl-doWkMzvFq2,Cookies | Triple Scoop Preroll 1g | Joints,Cookies,Joint,Cookies | Triple Scoop Preroll 1g,1.0","completion":"Cookies,Preroll,Joint,Triple Scoop,1"} +{"prompt":"bl-842922110296,STIIIZY - Birthday Cake Pod 1g,nan,VAPE PENS 1G,nan,1.0","completion":"STIIIZY,Vape,Vape,Birthday Cake,1"} +{"prompt":"co-6GGKA0GV,Cookies x The Grower Circle - TangEray - Indoor - Infused Joint - 1g,nan,nan,nan,nan","completion":"Cookies,Preroll,Infused Joint,TangEray,1"} +{"prompt":"co-7YGGNHBR,Kanha - Nano Blood Orange Bliss Indica - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","completion":"Kanha,Edible,Gummies,nan,nan"} +{"prompt":"md-1242517,BOBBI HYLL | Indoor - 3.5g,Fresca,Flower,nan,3.5","completion":"Fresca,Flower,Bud,BOBBI HYLL,3.5"} +{"prompt":"fl-9nEPGsnYtY,Flav | Blueberry Belts 100mg,Flav,Edible,nan,nan","completion":"Flav,Edible,Gummies,nan,nan"} +{"prompt":"md-1347497,Cherry Pie - 1g - Pod,Left Coast Extracts,Vape,nan,nan","completion":"Left Coast Extracts,Vape,510 cart,Cherry Pie,1"} +{"prompt":"co-76GP441T,Minntz - Emerald Cut - Indoor - Joint - 1g,Minntz,nan,Emerald Cut,nan","completion":"Minntz,Preroll,Joint,Emerald Cut,1"} +{"prompt":"co-5RAWYHYQ,The Growers Circle - Double Down - Indoor - 3.5g,nan,nan,nan,nan","completion":"The Growers Circle,Flower,Bud,Double Down,3.5"} +{"prompt":"md-1195389,Blue Dream Roll Your Own Sugar Shake 14g Bag,Pacific Stone,Flowers,nan,nan","completion":"Pacific Stone,Flower,Bud,nan,14"} +{"prompt":"co-847ZXF37,The Grower Circle - Zoo Dawg x Cosa Nostra - Multi Joint - 5pk - 2.5g,nan,nan,nan,nan","completion":"The Growers Circle,Preroll,Joint,Zoo Dawg x Cosa Nostra,12.5"} +{"prompt":"co-8EMW15ZM,Flight Bites - S'mores - Gummy - 10ct - 100mg,Flight Bites,nan,nan,nan","completion":"Flight Bites,Edible,Gummies,nan,nan"} diff --git a/data/cookies_train.jsonl b/data/cookies_train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d443bf96e7e689a527c03d9b88b77d20060dcddc --- /dev/null +++ b/data/cookies_train.jsonl @@ -0,0 +1,80 @@ +{"prompt":"bl-111630024873,Feelz - Guava Gelato 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Feelz,Flower,Bud,Guava Gelato,3.5"} +{"prompt":"md-1324761,White Raspberry Cartridge 1g,Stiiizy,Vape,nan,nan","completion":"Stiiizy,Vape,510 cart,White Raspberry,1"} +{"prompt":"bl-090035986745,Eighth Brother - Assorted Holiday Gummies 100mg,nan,GUMMIES,nan,nan","completion":"Eighth Brother,Edible,Gummies,nan,nan"} +{"prompt":"fl-4i92XvAPc7,Cookies | Cookies & Cream Cookies 100mg,Cookies,Edible,nan,nan","completion":"Cookies,Edible,Cookies,nan,nan"} +{"prompt":"md-1151653,White Russian | Indoor 3.5g,Cookies,Flower,nan,3.5","completion":"Cookies,Flower,Bud,White Russian,3.5"} +{"prompt":"co-AC1H3560,The Grower Circle - Double Down - Indoor - Joint - 1g,nan,nan,nan,nan","completion":"The Growers Circle,Preroll,Joint,Double Down,1"} +{"prompt":"bl-840071901284,Cookies - Mint Chocolate Chip 10pk Cookies 100mg,Cookies,EDIBLES,nan,nan","completion":"Cookies,Edible,Cookies,nan,nan"} +{"prompt":"md-1275397,Green Cheese Tank w\/Battery 1g,Napalm,Vape,nan,nan","completion":"Napalm,Concentrate,nan,Green Cheese,1"} +{"prompt":"fl-dqyA6Qfkce,(Review Promo) | CannaKings | King Louis Preroll 1g | Joints,CannaKings,Joint,(Review Promo) | CannaKings | King Louis Preroll 1g,1.0","completion":"CannaKings,Preroll,Joint,nan,1"} +{"prompt":"md-1167117,Black Cherry Gelato 3.5g,Backpack Boyz,Flower 3.5g,nan,nan","completion":"Backpack Boyz,Flower,Bud,Black Cherry Gelato,3.5"} +{"prompt":"co-4DCQP2GH,LP Exotics - Mac 1 - Indoor - Joint - 1g,LP Exotic,nan,nan,nan","completion":"LP Exotic,Preroll,Joint,Mac 1,1"} +{"prompt":"bl-757540324072,CAM - Dosi Kush 7g,nan,FLOWERS 7G,nan,nan","completion":"CAM,Flower,Bud,Dosi Kush,7"} +{"prompt":"md-1139856,That Juice 1g Cartridge,Plug N Play,Cartridge,nan,nan","completion":"Plug N Play,Concentrate,510 cart,That Juice,1"} +{"prompt":"md-1045944,Pear CBG Gummy,WYLD,Edible,nan,nan","completion":"WYLD,Edible,Gummies,nan,nan"} +{"prompt":"co-7FCAHUUQ,Eyce - Spoon - Silicone - Pipe - Assorted,Eyce,nan,nan,nan","completion":"Eyce,Accessory,nan,nan,nan"} +{"prompt":"co-6RVJZ5HK,Cookies - Heavy Eye - Indoor - Joint - 1g,Cookies,nan,Heavy Eye,nan","completion":"Cookies,Preroll,Joint,Heavy Eye,1"} +{"prompt":"fl-CkJ56JCfAJ,LA Traffic x Gramercy | Loganberry Zlushie 3.5g | Eighths,LA Traffic x Gramercy,PackedBud,LA Traffic x Gramercy | Loganberry Zlushie 3.5g,3.5","completion":"LA Traffic x Gramercy,Flower,Bud,Loganberry Zlushie,3.5"} +{"prompt":"fl-DQhTmYAJmp,Rollup | Medical | Lilac Cookies,Rollup,BulkBud,Rollup | Medical | Lilac Cookies,7.0","completion":"Rollup,Flower,Bud,Lilac Cookies,7"} +{"prompt":"fl-DWtoECb6M4,Drops | Singles Cherry Live Rosin Jellies 100mg,Drops,Edible,nan,nan","completion":"Drops,Edible,Gummies,nan,nan"} +{"prompt":"bl-850002822014,GRIZZLY PEAK - Sativa Bone Infused Pre-roll 1G,nan,INFUSED PREROLLS,nan,1.0","completion":"GRIZZLY PEAK,Preroll,Infused Joint,nan,1"} +{"prompt":"bl-090035985823,Eighth Brother - Ice Cream Cake 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Eighth Brother,Flower,Bud,Ice Cream Cake,3.5"} +{"prompt":"fl-cuTkYs5htS,Wyld | Peach 2:1 CBD Gummies 100mg,Wyld,Edible,nan,nan","completion":"Wyld,Edible,Gummies,nan,nan"} +{"prompt":"fl-2A2qfrdQdE,Khalifa Kush | Khalifa Mints Preroll 1g | Joints,Khalifa Kush,Joint,Khalifa Kush | Khalifa Mints Preroll 1g,1.0","completion":"Khalifa Kush,Preroll,Joint,Khalifa Mints,1"} +{"prompt":"fl-8100247708301,Cookies Battery,Cookies,Accessory,nan,1.0","completion":"Cookies,Accessory,nan,nan,nan"} +{"prompt":"md-1047899,Pear THC 1:1 CBG 10pk | Gummies - 100mg\/100mg,Wyld,Edible,nan,nan","completion":"Wyld,Edible,Gummies,nan,nan"} +{"prompt":"co-836V18HP,Kingroll - Gorilla Cookies x Zookies - Indoor - Infused Joint - 1.3g,Kingroll,nan,nan,nan","completion":"Kingroll,Preroll,Infused Joint,Gorilla Cookies x Zookies,1.3"} +{"prompt":"bl-628634142004,Green Monke - Tropical Citrus 120z can 3mg THC\/ 6mg CBD,nan,DRINKS,nan,nan","completion":"Green Monke,Edible,Beverage,nan,nan"} +{"prompt":"bl-688201996942,Dee - Jackfruit Rosin Gummies 100mg,nan,GUMMIES,nan,nan","completion":"Dee,Edible,Gummies,nan,nan"} +{"prompt":"co-2TDRRWMX,Root and Bloom - Ghost Dawg - Indoor - 3.5g,Root and Bloom,nan,Ghost Dawg,nan","completion":"Root and Bloom,Flower,Bud,Ghost Dawg,3.5"} +{"prompt":"co-AAGHHPTQ,The Grower Circle - Family Secret - Indoor - Joint - 1g,nan,nan,nan,nan","completion":"The Growers Circle,Preroll,Joint,Family Secret,1"} +{"prompt":"md-1230924,Baby Jeeter Maui Wowie | Infused Preroll 5pk - 2.5g,Jeeter,Infused Prerolls,nan,nan","completion":"Jeeter,Preroll,Infused Joint,Maui Wowie,12.5"} +{"prompt":"bl-850002822274,GRIZZLY PEAK - Indica Bone 0.5g 7PK Prerolls,nan,PREROLL PACKS,nan,nan","completion":"GRIZZLY PEAK,Preroll,Joint,nan,3.5"} +{"prompt":"md-1230938,Horchata | Infused Preroll - 1g,Jeeter,Infused Prerolls,nan,nan","completion":"Jeeter,Preroll,Infused Joint,Horchata,1"} +{"prompt":"fl-8fvKPJtM7M,Imperial Extracts | Animal Mintz Diamond Sauce 1g,Imperial Extracts,Concentrate,Animal Mintz,1.0","completion":"Imperial Extracts,Concentrate,Diamonds and Sauce,Animal Mintz,1"} +{"prompt":"co-1H7KPNQE,Green Life - Baby J - Miss X - Indoor - Multi Joint - 6pk - 1.8g,Green Life,nan,Miss X,nan","completion":"Green Life,Preroll,Joint,Miss X,10.8"} +{"prompt":"md-1172100,Cereal Milk | Blunt - 2g,Cookies,Prerolls,nan,nan","completion":"Cookies,Preroll,Blunt,Cereal Milk,2"} +{"prompt":"co-0WF3BFBA,Happy Valley - Jacks Peaches #3 - Indoor - Joint - 1g,Happy Valley,nan,Jacks Peaches #3,nan","completion":"Happy Valley,Preroll,Joint,Jacks Peaches #3,1"} +{"prompt":"co-1A0MMZJJ,Custom - Lilac - Indoor - 3.5g,Custom,nan,Lilac,nan","completion":"Custom,Flower,Bud,Lilac,3.5"} +{"prompt":"bl-816716026056,Cosmic Fog - Disposable Pen 1.0g Indica Apple Butter Gelato,nan,DISPOSABLE VAPE PENS,nan,1.0","completion":"Cosmic Fog,Vape,Disposable,Apple Butter Gelato,1"} +{"prompt":"md-1347269,Full Gram Superman,Left Coast Extracts,Vape,nan,nan","completion":"Left Coast Extracts,Vape,510 cart,Superman,1"} +{"prompt":"bl-210000146985,Midzotics - Tigers Milk - 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Midzotics,Flower,Bud,Tigers Milk,3.5"} +{"prompt":"md-1349647,Cherry Pie,Froot,Edibles,nan,nan","completion":"Froot,Edible,nan,nan,nan"} +{"prompt":"bl-111630024590,Feelz - Papaya Paradise 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Feelz,Flower,Bud,Papaya Paradise,3.5"} +{"prompt":"fl-cSx36EvqrK,Backpack Boyz | Black Cherry Gelato Sizzurp 1000mg,Backpack Boyz,Tincture,nan,nan","completion":"Backpack Boyz,Edible,CBD Tincture\/Caps\/etc,nan,nan"} +{"prompt":"bl-090035986004,Eighth Brother - Ice Cream Cake 1Oz,nan,FLOWERS 28G,nan,nan","completion":"Eighth Brother,Flower,Bud,Ice Cream Cake,28"} +{"prompt":"fl-GA9f4qAp47,Big Gas | ProPain 3.5g | Eighths,Big Gas,PackedBud,Big Gas | ProPain 3.5g,3.5","completion":"Big Gas,Flower,Bud,ProPain,3.5"} +{"prompt":"bl-603365888759,CAM - La Paleta 7g,nan,FLOWERS 7G,nan,nan","completion":"CAM,Flower,Bud,La Paleta,7"} +{"prompt":"co-A56PJJB3,Custom - Space Guava - Indoor - 3.5g,Custom,nan,Space Guava,nan","completion":"Custom,Flower,Bud,Space Guava,3.5"} +{"prompt":"fl-dkRsEniqyj,Backpack Boyz | Crypto Gelato 3.5g | Eighths,nan,PackedBud,Backpack Boyz | Crypto Gelato 3.5g,3.5","completion":"Backpack Boyz,Flower,Bud,Crypto Gelato,3.5"} +{"prompt":"bl-686751390708,Heavenly Sweets - Classic Treat 100mg,nan,EDIBLES,nan,nan","completion":"Heavenly Sweets,Edible,nan,nan,nan"} +{"prompt":"co-1Y2DH5R0,Ocean Breeze Cultivators - Money Shot - Indoor - Blunt - 1g,Ocean Breeze Cultivators,nan,Money Shot,nan","completion":"Ocean Breeze Cultivators,Preroll,Blunt,Money Shot,1"} +{"prompt":"md-1037823,Pecan Shortbread Cookies,Dr. Norms,Edibles,nan,nan","completion":"Dr. Norms,Edible,Cookies,nan,nan"} +{"prompt":"md-1195386,Blue Dream OZ,Pacific Stone,Flowers,nan,nan","completion":"Pacific Stone,Flower,Bud,Blue Dream,28"} +{"prompt":"bl-090035985779,Eighth Brother - Stardust OG 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Eighth Brother,Flower,Bud,Stardust OG,3.5"} +{"prompt":"md-1346646,BLACK OUT Guavalicious,Product of Los Angeles,Edibles,nan,nan","completion":"Product of Los Angeles,Edible,nan,nan,nan"} +{"prompt":"fl-dhLF5ePcRh,Flavors | Black Lime Gelato 3.5g | Eighths,nan,PackedBud,Flavors | Black Lime Gelato 3.5g,3.5","completion":"Flavors,Flower,Bud,Black Lime Gelato,3.5"} +{"prompt":"co-444XJ7ZF,Nature's Chemistry - Miracle Mints - Indoor - 3.5g,nan,nan,nan,nan","completion":"Nature's Chemistry,Flower,Bud,Miracle Mints,3.5"} +{"prompt":"co-8JKLGM53,Kushy Punch - Watermelon - Gummy - 100mg,Kushy Punch,nan,nan,nan","completion":"Kushy Punch,Edible,Gummies,nan,nan"} +{"prompt":"fl-5ez5baEM68,Exit Bag,Cookies,Accessory,nan,1.0","completion":"Cookies,Accessory,nan,nan,nan"} +{"prompt":"fl-f8H7THHCYJ,Super Dope Brand | Cherry Popperz 3.5g | Eighths,Super Dope Brand,PackedBud,Super Dope Brand | Cherry Popperz 3.5g,3.5","completion":"Super Dope Brand,Flower,Bud,Cherry Popperz,3.5"} +{"prompt":"md-1151648,Hawaiian Rain | Indoor - 3.5g,Cookies,Flower,nan,3.5","completion":"Cookies,Flower,Bud,Hawaiian Rain,3.5"} +{"prompt":"fl-FPbxdQkyXR,Dripp | Sour Berry Badder 1g,Dripp,Concentrate,Sour Berry,1.0","completion":"Dripp,Concentrate,Badder,Sour Berry,1"} +{"prompt":"bl-816716026209,Cosmic Fog - Disposable Pen 1.0g Sativa Galactic Orange Crack,nan,DISPOSABLE VAPE PENS,nan,1.0","completion":"Cosmic Fog,Vape,Disposable,Galactic Orange Crack,1"} +{"prompt":"co-6GRD3V4E,Kanha - Nano - Fruit Punch Fusion - Gummy - 10ct - 100mg,Kanha,nan,nan,nan","completion":"Kanha,Edible,Gummies,nan,nan"} +{"prompt":"co-6ARLLX12,SMASH Hits - Hippie Slayer - Indoor - 1g,SMASH Hits,nan,Hippie Slayer,nan","completion":"SMASH Hits,Preroll,Joint,Hippie Slayer,1"} +{"prompt":"bl-090035986479,Eighth Brothers - Northern Lights 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Eighth Brothers,Flower,Bud,Northern Lights,3.5"} +{"prompt":"fl-FiZNoFDxST,Raw Garden | Slurm Fuel Diamond Infused Prerolls 3pk,Raw Garden,Concentrate,nan,nan","completion":"Raw Garden,Preroll,Infused Joint,Slurm Fuel,unknown"} +{"prompt":"bl-090035986141,Eighth Brothers - Black Jack 1g Preroll,nan,PREROLLS,nan,nan","completion":"Eighth Brothers,Preroll,Joint,Black Jack,1"} +{"prompt":"md-1191207,Baby Jeeter Apple Fritter 0.5g x 5,Jeeter,Joints,nan,nan","completion":"Jeeter,Preroll,Infused Joint,Apple Fritter,2.5"} +{"prompt":"md-1126441,1g Strawberry Cheesecake Jeeter Juice,Jeeter,Vape,nan,nan","completion":"Jeeter,Vape,510 cart,Strawberry Cheesecake,1"} +{"prompt":"md-1347510,Full Gram Trainwreck,Left Coast Extracts,Vape,nan,nan","completion":"Left Coast Extracts,Vape,510 cart,Trainwreck,1"} +{"prompt":"md-1271227,Oz Kush 3.5g,Alien Labs,Flower 3.5g,nan,nan","completion":"Alien Labs,Flower,Bud,Oz Kush,3.5"} +{"prompt":"fl-FCwFzjNh9J,Harmony | Granddaddy Pluto | Natural Terp Cartridge, 500mg,Harmony,Concentrate,nan,0.5","completion":"Harmony,Vape,510 cart,Granddaddy Pluto,0.5"} +{"prompt":"bl-628634142196,Green Monke - Orange Passionfruit 120z Can 3mg THC\/ 6mg CBD,nan,DRINKS,nan,nan","completion":"Green Monke,Edible,Beverage,nan,nan"} +{"prompt":"fl-EL7QdiF374,Baby Jeeter | Strawberry Shortcake Infused Prerolls 5pk,Jeeter,Concentrate,nan,nan","completion":"Jeeter,Preroll,Infused Joint,Strawberry Shortcake,unknown"} +{"prompt":"fl-eZCWCSx3Zk,Backpack Boyz | COCO-LATO 3.5g | Eighths,nan,PackedBud,Backpack Boyz | COCO-LATO 3.5g,3.5","completion":"Backpack Boyz,Flower,Bud,COCO-LATO,3.5"} +{"prompt":"md-1142742,White Cherry Gelato 3.5g,Backpack Boyz,Flower 3.5g,nan,3.5","completion":"Backpack Boyz,Flower,Bud,White Cherry Gelato,3.5"} +{"prompt":"co-ABCKN1GR,Happy Valley - Super Lemon Haze - Indoor - Joint - 1g,nan,nan,nan,nan","completion":"Happy Valley,Preroll,Joint,Super Lemon Haze,1"} +{"prompt":"bl-814725024544,Vibes - King Size Slim Hemp,nan,ACCESSORIES,nan,nan","completion":"Vibes,Accessory,nan,nan,nan"} +{"prompt":"bl-090035986851,Eighth Brother - Blueberry Cookies 3.5g,nan,FLOWERS 3.5G,nan,3.5","completion":"Eighth Brother,Flower,Bud,Blueberry Cookies,3.5"} diff --git a/hf-space-upload.ipynb b/hf-space-upload.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..d0ba8c5b7fe782711fb536b384a1bc29d894b7f1 --- /dev/null +++ b/hf-space-upload.ipynb @@ -0,0 +1,34 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from huggingface_hub import HfApi\n", + "api = HfApi()\n", + "\n", + "api.upload_folder(\n", + " folder_path=\"/path/to/local/space\",\n", + " repo_id=\"username/my-cool-space\",\n", + " repo_type=\"space\",\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "kd-llm-dc", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.10.11" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/prompts/gpt4-system-message.txt b/prompts/gpt4-system-message.txt new file mode 100644 index 0000000000000000000000000000000000000000..c96d44e8c1490354c6e9ba755d2dd77bf757b608 --- /dev/null +++ b/prompts/gpt4-system-message.txt @@ -0,0 +1,81 @@ +I am going to provide a data set of marijuana products and their metadata. Using the information I provide, I want you to provide me with the following information about the products. + +sku +product_name +Brand (brand) +product category (product_category) +sub product category (sub_product_category) +strain name (strain_name) +the product’s weight in grams (product_weight_grams) + +The only acceptable values for product category are below. Only respond with a product category in the list below. + +Grow Products +Concentrate +Preroll +Vape +Edible +Accessory +Wellness +Flower + +The only acceptable values for sub product category are below. Only respond with a sub product category in the list below. + +Cookies Dough +Packwoods Blunt +Promo/ Sample +Natural Terp Series +Capsule +Mushroom Caps +Beverage +Cookies +Live Flower Series +Cured Resin +Mint +Napalm +CBD Tincture/Caps/etc +Liquid Flower +Cookie Dough +Badder +510 cart +Gpen 0.5 +Blunt +Shatter +Solventless Rosin +Diamonds +Raw Garden +Diamonds and Sauce +Sugar +Dry Flower Series +Cubano +Chocolate +Flan +Infused Blunt +Terp Sauce +Bud +Disposable +Gummies +Infused Joint +Dart Pod 0.5 +Rosin +Joint + +Additional requirements: + +Do not automatically assume that the information in the data set I provide is accurate. +Break out the response into multiple messages if necessary, do not give me an incomplete response. +Format the response in a csv codeblock +Take note to convert units into grams when necessary. +Product weights and strain names are only applicable for the following product categories: concentrate, preroll, vape, flower +Only provide product weights and strain nam +Break out the response into multiple messages if necessary, do not give an incomplete response. +Give preference to the β€œBud” sub product category instead of β€œDry flower series” unless you are confident. +Take note there are some products with multiple units, make sure to multiply the amount by the weight to calculate product weight. +Look for clues in the product name to determine what brand/ product category/ sub product category/ and strain name the product should fall under. For Vape products, consider the words before 'Cartridge' or 'Cart' in the product name as potential strain names. + + + +Return clean dataset in csv format with the following columns + +product_name, brand, product_category, strain_name, product_weight_grams + diff --git a/prompts/gpt4-system-message2.txt b/prompts/gpt4-system-message2.txt new file mode 100644 index 0000000000000000000000000000000000000000..e4ab125b7b63b9f7461d2c3d7cc217fce825ce23 --- /dev/null +++ b/prompts/gpt4-system-message2.txt @@ -0,0 +1,81 @@ +I am going to provide a data set of marijuana products and their metadata. Using the information I provide, I want you to provide me with the following information about the products. + +sku +product_name +Brand (brand) +product category (product_category) +sub product category (sub_product_category) +strain name (strain_name) +the product’s weight in grams (product_weight_grams) + +The only acceptable values for product category are below. Only respond with a product category in the list below. + +Grow Products +Concentrate +Preroll +Vape +Edible +Accessory +Wellness +Flower + +The only acceptable values for sub product category are below. Only respond with a sub product category in the list below. + +Cookies Dough +Packwoods Blunt +Promo/ Sample +Natural Terp Series +Capsule +Mushroom Caps +Beverage +Cookies +Live Flower Series +Cured Resin +Mint +Napalm +CBD Tincture/Caps/etc +Liquid Flower +Cookie Dough +Badder +510 cart +Gpen 0.5 +Blunt +Shatter +Solventless Rosin +Diamonds +Raw Garden +Diamonds and Sauce +Sugar +Dry Flower Series +Cubano +Chocolate +Flan +Infused Blunt +Terp Sauce +Bud +Disposable +Gummies +Infused Joint +Dart Pod 0.5 +Rosin +Joint + +Additional requirements: + +Do not automatically assume that the information in the data set I provide is accurate. +Break out the response into multiple messages if necessary, do not give me an incomplete response. +Format the response in a csv codeblock +Take note to convert units into grams when necessary. +Product weights and strain names are only applicable for the following product categories: concentrate, preroll, vape, flower +Only provide product weights and strain nam +Break out the response into multiple messages if necessary, do not give an incomplete response. +Give preference to the β€œBud” sub product category instead of β€œDry flower series” unless you are confident. +Take note there are some products with multiple units, make sure to multiply the amount by the weight to calculate product weight. +Look for clues in the product name to determine what brand/ product category/ sub product category/ and strain name the product should fall under. For Vape products, consider the words before 'Cartridge' or 'Cart' in the product name as potential strain names. + +#### + +Return clean dataset in csv format with the following columns + +product_name, brand, product_category, strain_name, product_weight_grams + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..790d74835ecd5a904f46a6e1fc941102a2408b0e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +datasets==2.13.0 +numpy==1.24.3 +openai==0.27.8 +pandas==2.0.2 +python-dotenv==1.0.0 +scikit_learn==1.2.2 +tenacity==8.2.2