- Manage multiple models easily with llama.cpp server
- add
-hf <user>/<model>[:quant]to add Hugging Face models to the cache support for llama.cpp server:- Hugging Face model repository; quant is optional, case-insensitive, default to Q4_K_M, or falls back to the first file in the repo if Q4_K_M doesn't exist. mmproj is also downloaded automatically if available.
- example:
ggml-org/GLM-4.7-Flash-GGUF:Q4_K_M
- add model presets (
llama-server --models-preset ./my-models.ini) when using multiple models support for llama.cpp server - ggml-org/llama.cpp#17859 - Check the status of Feature Request: tool to list and delete cached models
- add
- Support PDF in the RAG pipeline:
- Explore Jina AI Embeddings, Rerankers amd Small LMs:
Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled: a27Bparameter reasoning specialist. This model was distilled from Claude's reasoning patterns into Qwen's architecture, creating a powerful chain-of-thought thinker that's surprisingly accessible.- Chunking:
- Reranking:
- Test Flash attention:
- https://github.com/JuliusBrussee/caveman/blob/main/caveman/SKILL.md
- LLM Wiki (from karpathy): https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f
- Experiment Agentic Patterns:
- https://weaviate.io/blog/what-is-agentic-rag
- https://github.com/neural-maze/agentic_patterns
- https://www.youtube.com/watch?v=ApoDzZP8_ck
- Function Calling in LLM https://medium.com/@danushidk507/function-calling-in-llm-e537b286a4fd
- MCP:
- Google Search with LLM:
- https://huggingface.co/blog/nand-tmp/google-search-with-llm
- https://blog.nextideatech.com/how-to-use-google-search-with-langchain-openai/
- https://medium.com/@reynxzz/rag-with-gemini-google-search-and-bq-vector-search-for-content-personalization-08fe7dab6b33
- https://newspaper.readthedocs.io/en/latest/
- https://github.com/AstraBert/PrAIvateSearch
- System level safety:
- https://huggingface.co/meta-llama/Llama-Guard-3-1B - https://huggingface.co/tensorblock/Llama-Guard-3-1B-GGUF
- Llama Guard 3-1B is a fine-tuned Llama-3.2-1B pretrained model for content safety classification.
- https://huggingface.co/meta-llama/Llama-Guard-3-8B
- Llama Guard 3-8B is a fine-tuned Llama-3.1-8B pretrained model for content safety classification.
- https://huggingface.co/meta-llama/Llama-Guard-3-11B-Vision
- Llama Guard 3 Vision is a Llama-3.2-11B pretrained model, fine-tuned for content safety classification.
- https://huggingface.co/meta-llama/Llama-Guard-3-1B - https://huggingface.co/tensorblock/Llama-Guard-3-1B-GGUF
- Experiment Multimodal LLMs:
Llama 3.2 Vision 11B(is currently not supported byllama.cppggml-org/llama.cpp#9643) requires least8GBofVRAM, and the90Bmodel requires at least64GBofVRAM.- Take also a look here: https://huggingface.co/unsloth
- Jina-VLM: Small Multilingual Vision Language Model
- Explore long term memory:
- https://help.openai.com/en/articles/8590148-memory-faq
- https://ai.gopubby.com/long-term-memory-for-agentic-ai-systems-4ae9b37c6c0f
- Tools:
- https://github.com/mem0ai/mem0
- Explore also the structure of the repo https://github.com/mem0ai/mem0/tree/main/mem0 and the vector store implementation.
- https://github.com/supermemoryai/supermemory
- https://github.com/timescale/pgai - PostgreSQL extension for AI.
- https://github.com/letta-ai/letta
- https://github.com/mem0ai/mem0
- Investigate llama.cpp:
- Investigate Chroma batch querying: https://github.com/langchain-ai/langchain/blob/907c758d67764385828c8abad14a3e64cf44d05b/libs/community/langchain_community/vectorstores/chroma.py#L42
- Make docker containers.