--- license: mit tags: - grocery-list language: - en base_model: - openai/gpt-oss-120b --- # tonyduxx/grocery-list This is a text generation model fine-tuned for generating grocery lists. ## Usage You can use this model with the Hugging Face Inference API: ```python import requests API_URL = "https://api-inference.huggingface.co/models/tonyduxx/grocery-list" headers = {"Authorization": "Bearer YOUR_HF_API_KEY"} data = { "inputs": "Generate a grocery list for a week of healthy meals." } response = requests.post(API_URL, headers=headers, json=data) print(response.json()) ``` ## Example Input Generate a grocery list for a week of healthy meals. ## Example Output Chicken Breat Brown Rice Broccoli Eggs Oats ...