- Neurips Workshop 2025 Paper on Pokemon LLM Tournament Bench. Pre print version Link. Demo
- Author of Hands-on Agentic AI (Manning Publications, upcoming)
- MREB: Multimodal Benchmarks for small language models. Blog and Repo
- Devyan: Multi-Agent System simulating a full SDE team to build applications from a single prompt. This was built before the likes of bolt or lovable existed, as a fun side project. Repo. Demo
- Accepted and Presented 3 of my research papers at 10th or above international conferences. I currently have a total of 5 research papers completed, and a few more research projects which I will be doing over the coming few months.
- Most recent research I did: On the Structure of Floating-Point N
- Neurips Workshop 2025 Paper on Pokemon LLM Tournament Bench. Pre print version Link. Demo
- Author of Hands-on Agentic AI (Manning Publications, upcoming)
- MREB: Multimodal Benchmarks for small language models. Blog and Repo
- Devyan: Multi-Agent System simulating a full SDE team to build applications from a single prompt. This was built before the likes of bolt or lovable existed, as a fun side project. Repo. Demo
- Accepted and Presented 3 of my research papers at 10th or above international conferences. I currently have a total of 5 research papers completed, and a few more research projects which I will be doing over the coming few months.
- Most recent research I did: On the Structure of Floating-Point N
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ###### Out of the box example doesnt work: | |
| def load_environment(**kwargs): | |
| """Load and configure the environment.""" | |
| # 1. Load dataset | |
| dataset = vf.load_example_dataset("gsm8k", split="train") | |
| # 2. Configure parser | |
| parser = vf.ThinkParser() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import numpy as np | |
| import sounddevice as sd | |
| from pathlib import Path | |
| import moviepy.editor as mp | |
| import os | |
| from agents import ( | |
| Agent, | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "apple": { | |
| "serving_size": "1 medium", | |
| "calories": 95, | |
| "protein_g": 0.5, | |
| "carbs_g": 25, | |
| "fat_g": 0.3, | |
| "fiber_g": 4 | |
| }, | |
| "avocado": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INFO Exception in thread Thread-8 (_execute): | |
| INFO Traceback (most recent call last): | |
| INFO File "/usr/local/lib/python3.11/threading.py", line 1045, in _bootstrap_inner | |
| INFO self.run() | |
| INFO File "/usr/local/lib/python3.11/threading.py", line 982, in run | |
| INFO self._target(*self._args, **self._kwargs) | |
| INFO File "/opt/render/project/src/.venv/lib/python3.11/site-packages/crewai/task.py", line 112, in _execute | |
| INFO result = agent.execute_task(task=task_prompt, context=context, tools=tools) | |
| INFO ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |