docs
This commit is contained in:
parent
5b29b1ce17
commit
42bd41f33e
|
|
@ -6,7 +6,7 @@ A 100-line minimalist LLM framework for agents, task decomposition, RAG, etc.
|
||||||
|
|
||||||
- Install via ```pip install minillmflow```, or just copy the [source](minillmflow/__init__.py) (only 100 lines)
|
- Install via ```pip install minillmflow```, or just copy the [source](minillmflow/__init__.py) (only 100 lines)
|
||||||
|
|
||||||
- **Pro tip:** Build LLM apps with LLMs assistants (ChatGPT, Claude, etc.) via [this prompt](docs/prompt)
|
- **Pro tip:** Build LLM apps with LLMs assistants (ChatGPT, Claude, etc.) via [this prompt](assets/prompt)
|
||||||
|
|
||||||
## Why Mini LLM Flow?
|
## Why Mini LLM Flow?
|
||||||
|
|
||||||
|
|
@ -27,7 +27,7 @@ Hence, I built this framework that lets LLMs focus on what matters. It turns out
|
||||||
|
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<img src="./docs/minillmflow.jpg" width="400"/>
|
<img src="./assets/minillmflow.jpg" width="400"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Basic site settings
|
||||||
|
title: Mini LLM Flow
|
||||||
|
description: Minimalist LLM Framework in 100 Lines, Enabling LLMs to Program Themselves
|
||||||
|
|
||||||
|
# Theme settings
|
||||||
|
remote_theme: just-the-docs/just-the-docs
|
||||||
|
|
||||||
|
# Navigation
|
||||||
|
nav_sort: case_sensitive
|
||||||
|
search_enabled: true
|
||||||
|
|
||||||
|
# Aux links (shown in upper right)
|
||||||
|
aux_links:
|
||||||
|
"View on GitHub":
|
||||||
|
- "//github.com/zachary62/miniLLMFlow"
|
||||||
|
|
||||||
|
# Color scheme
|
||||||
|
color_scheme: light
|
||||||
Loading…
Reference in New Issue