diff --git a/readme.md b/readme.md
index 5151f19b4..bd371ab7c 100644
--- a/readme.md
+++ b/readme.md
@@ -63,29 +63,19 @@ Get in touch with the developers directly:
* Soft prompts selector for KoboldAI
* Prompt generation formatting tweaking
* webp character card interoperability (PNG is still an internal format)
-* Extensibility support via [SillyLossy's TAI-extras](https://github.com/Cohee1207/TavernAI-extras) plugins
- * Author's Note / Character Bias
- * Character emotional expressions
- * Auto-Summary of the chat history
- * Sending images to chat, and the AI interpreting the content.
- * Stable Diffusion image generation (5 chat-related presets plus 'free mode')
- * Text-to-speech for AI response messages (via ElevenLabs, Silero, or the OS's System TTS)
-## UI Extensions 🚀
+## Extensions
-| Name | Description | Required Extra Modules | Screenshot |
-| ---------------- | ---------------------------------| ---------------------------- | ---------- |
-| Image Captioning | Send a cute picture to your bot!
Picture select option will appear beside the "Message send" button. | `caption` |
|
-| Character Expressions | See your character reacting to your messages!
**You need to provide your own character images!**
1. Create a folder in TavernAI called `public/characters/`, where `` is the name of your character.
2. For the base emotion classification model, put six PNG files there with the following names: `joy.png`, `anger.png`, `fear.png`, `love.png`, `sadness.png`, `surprise.png`. Other models may provide other options.
3. Images only display in desktop mode. | `classify` |
|
-| Memory | Chatbot long-term memory simulation using automatic message context summarization. | `summarize` |
|
-| D&D Dice | A set of 7 classic D&D dice for all your dice rolling needs.
*I used to roll the dice.
Feel the fear in my enemies' eyes* | None |
|
-| Author's Note | Built-in extension that allows you to append notes that will be added to the context and steer the story and character in a specific direction. Because it's sent after the character description, it has a lot of weight. Thanks Aliážµ#2222 for pitching the idea! | None |  |
-| Character Backgrounds | Built-in extension to assign unique backgrounds to specific chats or groups. | None |
|
-| Stable Diffusion | Use local of cloud-based Stable Diffusion webUI API to generate images. 5 presets included ('you', 'your face', 'me', 'the story', and 'the last message'. Free mode also supported via `/sd (anything_here_)` command in the chat input bar. Most common StableDiffusion generation settings are customizable within the SillyTavern UI. | None |
|
-| Text-to-Speech | AI-generated voice will read back character messages on demand, or automatically read new messages they arrive. Supports ElevenLabs, Silero, and your device's TTS service. | None |
|
-| Chat Translation | Automatically translates incoming and/or outgoing messages into the chosen language. | None | Pending |
-| Token Counter | Simple way to calculate the number of tokens in any text with selected tokenizer. | None | Pending |
-| Smart Context
*Infinity Context / Object Permanence* | **What it doesn't do:** Magically increase your context size.
**What it does:** Optimizes the arrangement of your message history within the context space for more effective use.
Imagine two variables:
X: How many original chat messages to keep
Y: Maximum number of ChromaDB 'memories' to inject
When the chat reaches the threshold of X messages, additional messages will no longer be included in the context chronologically. Instead, they will be selected from the history based on their similarity to your recent inputs (limited to a maximum of Y), which should provide more relevant information than simply disregarding past messages. Adjust these values according to your average number of in-context entries for optimal performance. | `chromadb` | Pending |
+SillyTavern has an extensibility support, with some additional AI modules hosted via [SillyTavern Extras API](https://github.com/SillyTavern/SillyTavern-extras)
+
+* Author's Note / Character Bias
+* Character emotional expressions
+* Auto-Summary of the chat history
+* Sending images to chat, and the AI interpreting the content.
+* Stable Diffusion image generation (5 chat-related presets plus 'free mode')
+* Text-to-speech for AI response messages (via ElevenLabs, Silero, or the OS's System TTS)
+
+Full list of included extenisons and tutorials how to use them can be found on [Wiki](https://github.com/SillyTavern/SillyTavern/wiki).
## UI/CSS/Quality of Life tweaks by RossAscends