Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a Python-based AI agent project built with CrewAI framework. The project uses OpenAI's models (specifically o4-mini) and integrates with various LangChain components for building AI agents and workflows.
This project uses
uv as the package manager (evident from uv.lock file).
.env file which contains:
OPENAI_API_KEY - OpenAI API key for model accessSERPER_API_KET - Serper API key for search functionality (note: typo in variable name)Key dependencies include:
crewai - Main framework for multi-agent AI systemslangchain ecosystem - For LLM integration and toolsopenai - OpenAI API clientpython-dotenv - Environment variable managementyfinance - Financial data integrationuv sync
python main.py
main.py - Simple entry point that loads environment variables and sets up OpenAI model configurationOPENAI_MODEL_NAME = "o4-mini"python-dotenvThis project is built around CrewAI which provides:
Agent - Individual AI agents with specific rolesTask - Specific tasks agents can performCrew - Coordination of multiple agents working togetherThe incomplete main.py suggests this is a starter template for building multi-agent AI systems.