From 2e58f50886d04d70eda06cee9c333ac82c47cc37 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Sat, 3 Aug 2024 06:54:17 +0200 Subject: [PATCH] docs: add GGML and Llama.cpp links to README.md Signed-off-by: Daniel Bevenius --- README.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index af019379..678fbd16 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,6 @@ ## Learning AI This repository contains notes and code examples related to AI. -* [Fundamentals](./fundamentals/README.md) - -### Examples - -* [Embeddings](./embeddings) Word embeddings examples in Rust and Python -* [OpenAI API](./openai) OpenAI API examples written in Rust and Python -* [Huggingface API](./hugging-face/python) Huggingface API example written in Python -* [Qdrant Vector Database](./vector-databases/qdrant) Examples in Python and Rust -* [LanceDB Vector Database](./vector-databases/lancedb) Examples in Python and Rust -* [Langchain examples](./langchain) Langchain examples written in Python - ### Notes * [AI/ML general](./notes/background.md) @@ -23,3 +12,15 @@ This repository contains notes and code examples related to AI. * [Copilot notes](./notes/copilot.md) * [Rust AI/ML crates](./notes/rust.md) * [Symbols](./notes/symbols.md) + +### Examples/Exploration code + +* [GGML](./fundamentals/ggml) GGML C library exploration code +* [LLama.cpp](fundamentals/llama.cpp) Llama.cpp library exploration code +* [Embeddings](./embeddings) Word embeddings examples in Rust and Python +* [OpenAI API](./openai) OpenAI API examples written in Rust and Python +* [Huggingface API](./hugging-face/python) Huggingface API example written in Python +* [Qdrant Vector Database](./vector-databases/qdrant) Examples in Python and Rust +* [LanceDB Vector Database](./vector-databases/lancedb) Examples in Python and Rust +* [Langchain examples](./langchain) Langchain examples written in Python +