fix the name
This commit is contained in:
parent
c7bb8b4a0e
commit
55f8ac0bac
|
|
@ -64,7 +64,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"from minillmflow import *\n",
|
||||
"from pocketflow import *\n",
|
||||
"import os\n",
|
||||
"\n",
|
||||
"# 1) Implement a simple LLM helper (OpenAI in this example).\n",
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
"class LoadData(Node):\n",
|
||||
" # For compute-intensive operations, do them in prep().\n",
|
||||
" def prep(self, shared):\n",
|
||||
" path = \"/content/miniLLMFlow/data/PaulGrahamEssaysLarge\"\n",
|
||||
" path = \"/content/PocketFlow/data/PaulGrahamEssaysLarge\"\n",
|
||||
" for filename in os.listdir(path):\n",
|
||||
" with open(os.path.join(path, filename), 'r') as f:\n",
|
||||
" shared['data'][filename] = f.read()\n",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Basic site settings
|
||||
title: Mini LLM Flow
|
||||
title: Pocket Flow
|
||||
description: Minimalist LLM Framework in 100 Lines, Enabling LLMs to Program Themselves
|
||||
|
||||
# Theme settings
|
||||
|
|
@ -11,7 +11,7 @@ nav_sort: case_sensitive
|
|||
# Aux links (shown in upper right)
|
||||
aux_links:
|
||||
"View on GitHub":
|
||||
- "//github.com/zachary62/miniLLMFlow"
|
||||
- "//github.com/miniLLMFlow/PocketFlow"
|
||||
|
||||
# Color scheme
|
||||
color_scheme: light
|
||||
|
|
|
|||
Loading…
Reference in New Issue