{"library":"marvin","install":[{"cmd":"pip install marvin","imports":["import marvin\n\nresult = marvin.extract(\n    'i found $30 on the ground and bought 5 bagels for $10',\n    int,\n    instructions='only USD amounts'\n)\nprint(result)  # [30, 10]","import marvin\n\n@marvin.fn\ndef sentiment(text: str) -> float:\n    \"\"\"Returns sentiment score from -1.0 (negative) to 1.0 (positive).\"\"\"\n\nscore = sentiment('I love this product!')\nprint(score)  # ~0.9","import marvin\n\nwith marvin.Thread() as thread:\n    marvin.run('What is quantum computing?')\n    marvin.run('How does that relate to AI?')"]}]}