This repository contains small Python utilities for interacting with AI models.
All scripts are located in the scripts/ directory.
Create the conda environment and install the required Python packages:
conda env create -f environment.yml
conda activate myscripts- claude_call.py – Query Anthropic's Claude model and save results to a DOCX and HTML file.
- groq_simple_chatbot.py – Simple terminal chatbot using the Groq API.
- read_mp3_summary.py – Transcribe an MP3 file, summarize it, and generate expert opinions using the Groq API.
- testing_local_model.py – Evaluate local models with Ollama and save the outputs.
See scripts/README.md for more details on each script.
The repository also includes a simple monitoring demo located in
monitoring-app/. Consult its README for instructions on running the FastAPI
backend and React frontend.