# Frequently Asked Questions ## 🔍 Common Issues and Solutions --- ### 💬 Q1: Why am I failing to parse LLM output format / How to select the right LLM?
Solution: Small language models often struggle to follow prompts and generate responses in the expected format. For better results, we recommend using large reasoning models such as:
These models provide superior reasoning capabilities and are more likely to produce correctly formatted outputs.
Error Message:
Solution: This issue is typically caused by network access problems to Hugging Face. Try these solutions:
Solution: This is a common issue with asyncio in Jupyter notebooks. Install nest_asyncio
and add the following code to the top of your notebook:
Step 1: Install the required package
```bash pip install nest_asyncio ```Step 2: Add these lines to the beginning of your notebook
```python import nest_asyncio nest_asyncio.apply() ```