fugthchat commited on
Commit
b304e47
Β·
verified Β·
1 Parent(s): 55e3e7a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -9
README.md CHANGED
@@ -1,18 +1,28 @@
1
- # FugthDes Story Generator (Hugging Face Space)
 
 
 
 
 
 
 
 
2
 
3
- Lightweight CPU-based story generator using **TinyLlama GGUF** + **Flask API**.
 
 
4
 
5
  ### πŸš€ Features
6
- - Story continuation and feedback-based rewriting
7
- - Supports story memory (multi-part continuity)
8
- - CPU-friendly (TinyLlama Q4_K_M)
9
- - Connectable to GitHub front-end or any REST client
10
 
11
- ### 🧠 Endpoint
12
  POST `/generate`
13
  ```json
14
  {
15
- "prompt": "Write chapter 1 of a fantasy story.",
16
  "feedback": "Make it more emotional.",
17
- "story_memory": "Previous chapters..."
18
  }
 
1
+ ---
2
+ title: FugthDes Story Generator
3
+ emoji: πŸŒ™
4
+ colorFrom: blue
5
+ colorTo: indigo
6
+ sdk: docker
7
+ app_file: app.py
8
+ pinned: false
9
+ ---
10
 
11
+ # πŸŒ™ FugthDes Story Generator (CPU GGUF)
12
+
13
+ Lightweight Flask API using **TinyLlama** or **StableLM Zephyr** for story generation on free Hugging Face CPU.
14
 
15
  ### πŸš€ Features
16
+ - Story continuation and rewriting based on feedback
17
+ - Supports multi-part story context (`story_memory`)
18
+ - CPU-efficient GGUF model (TinyLlama or StableLM)
19
+ - Connects easily with GitHub Pages or local frontend
20
 
21
+ ### 🧠 API Endpoint
22
  POST `/generate`
23
  ```json
24
  {
25
+ "prompt": "Write Chapter 1 of a fantasy story.",
26
  "feedback": "Make it more emotional.",
27
+ "story_memory": "Previous story parts..."
28
  }