Sanyam400 commited on
Commit
3230384
Β·
verified Β·
1 Parent(s): fc82bfe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -5
README.md CHANGED
@@ -1,10 +1,55 @@
1
  ---
2
- title: PraisonAI
3
- emoji: πŸ’»
4
- colorFrom: yellow
5
- colorTo: purple
6
  sdk: docker
 
7
  pinned: false
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: PraisonChat
3
+ emoji: 🐱
4
+ colorFrom: purple
5
+ colorTo: blue
6
  sdk: docker
7
+ app_port: 7860
8
  pinned: false
9
  ---
10
 
11
+ # PraisonChat 🐱
12
+
13
+ An **OpenClaw-style** multi-agent AI chat powered by **PraisonAI** and **LongCat Flash Lite**.
14
+
15
+ ## Features
16
+ - πŸ€– Dynamic sub-agent creation β€” the main agent spawns specialized agents per task
17
+ - πŸ”§ Auto tool creation β€” agents write their own Python tools on the fly
18
+ - πŸ’¬ Streaming responses with real-time agent step visibility
19
+ - πŸ“ Full markdown + code highlighting
20
+ - πŸŒ“ Dark/light mode
21
+ - πŸ’Ύ Local chat history
22
+ - 🎯 Multi-model support (Flash Lite, Flash Chat, Flash Thinking)
23
+
24
+ ## Setup
25
+ 1. Get a free LongCat API key at [longcat.chat/platform](https://longcat.chat/platform)
26
+ 2. Enter your API key in Settings (βš™οΈ)
27
+ 3. Start chatting!
28
+
29
+ ## Models
30
+ | Model | Context | Speed | Free Quota |
31
+ |-------|---------|-------|------------|
32
+ | LongCat Flash Lite | 320K | Fastest | 50M tokens/day |
33
+ | LongCat Flash Chat | 256K | Fast | 500K tokens/day |
34
+ | LongCat Flash Thinking | 256K | Medium | 500K tokens/day |
35
+
36
+ ## Environment Variables (optional)
37
+ Set `LONGCAT_API_KEY` as a Space Secret to pre-configure the API key for all users.
38
+
39
+ ## Architecture
40
+ ```
41
+ User Message
42
+ β”‚
43
+ β–Ό
44
+ Main Orchestrator Agent (analyzes task, plans execution)
45
+ β”‚
46
+ β”œβ”€β”€ Creates Sub-Agent 1 with custom tools
47
+ β”œβ”€β”€ Creates Sub-Agent 2 with custom tools
48
+ └── Creates Sub-Agent N with custom tools
49
+ β”‚
50
+ β–Ό
51
+ Each agent executes its task
52
+ β”‚
53
+ β–Ό
54
+ Orchestrator synthesizes β†’ Final response to user
55
+ ```