lamhieu commited on
Commit
4af7aed
Β·
1 Parent(s): 95ff73d

chore: update related descriptions

Browse files
README.md CHANGED
@@ -7,20 +7,22 @@ sdk: docker
7
  app_file: app.py
8
  ---
9
 
10
- # 🌍 LightweightEmbeddings: Multilingual, Fast, and Lightweight
11
 
12
- **LightweightEmbeddings** is a high-performance framework designed for generating embeddings from **text** or **image-text inputs** across multiple languages. Engineered for efficiency and adaptability, it offers a perfect balance between speed and accuracy, making it ideal for **real-time applications** and **resource-constrained environments**.
13
 
14
  ## ✨ Key Features
15
 
16
- - **Multilingual Support**: Seamlessly process text in over 100+ languages for truly global applications.
17
- - **Text and Image Embeddings**: Generate embeddings from text or image-text pairs using state-of-the-art models.
18
- - **Optimized for Speed**: Built with lightweight transformer models and efficient backends to ensure rapid inference, even on low-resource systems.
19
- - **Flexibility**: Supports multiple transformer models for diverse use cases:
 
 
20
  - Text models: `multilingual-e5-small`, `paraphrase-multilingual-MiniLM-L12-v2`, `bge-m3`
21
  - Image model: `google/siglip-base-patch16-256-multilingual`
22
- - **Dockerized**: Deploy anywhere with ease using Docker, making it production-ready out of the box.
23
- - **Interactive API**: Comes with a **Gradio-powered playground** and detailed REST API documentation.
24
 
25
  ## πŸš€ Use Cases
26
 
 
7
  app_file: app.py
8
  ---
9
 
10
+ # 🌍 LightweightEmbeddings: Multilingual, Fast, and Unlimited
11
 
12
+ **LightweightEmbeddings** is a fast, free, and unlimited API service for multilingual embeddings and reranking, with support for both text and images and guaranteed uptime.
13
 
14
  ## ✨ Key Features
15
 
16
+ - **Free and Unlimited**: A completely free API service with no limits on usage, making it accessible for everyone.
17
+ - **Multilingual Support**: Seamlessly process text in over 100+ languages for global applications.
18
+ - **Text and Image Embeddings**: Generate high-quality embeddings from text or image-text pairs using state-of-the-art models.
19
+ - **Reranking Support**: Includes powerful reranking capabilities for both text and image inputs.
20
+ - **Optimized for Speed**: Built with lightweight transformer models and efficient backends for rapid inference, even on low-resource systems.
21
+ - **Flexible Model Support**: Use a range of transformer models tailored to diverse use cases:
22
  - Text models: `multilingual-e5-small`, `paraphrase-multilingual-MiniLM-L12-v2`, `bge-m3`
23
  - Image model: `google/siglip-base-patch16-256-multilingual`
24
+ - **Production-Ready**: Easily deploy anywhere with Docker for hassle-free setup.
25
+ - **Interactive Playground**: Test embeddings and reranking directly via a **Gradio-powered interface** alongside detailed REST API documentation.
26
 
27
  ## πŸš€ Use Cases
28
 
lightweight_embeddings/__init__.py CHANGED
@@ -111,10 +111,9 @@ def create_main_interface():
111
  # Project Info
112
  gr.Markdown(
113
  """
114
- ## πŸš€ **Lightweight Embeddings**
115
-
116
- Welcome to the **Lightweight Embeddings** API, a blazing-fast and flexible service
117
- supporting **text** and **image** embeddings. Below you'll find key project details:
118
  """
119
  )
120
  gr.Markdown(
@@ -124,7 +123,7 @@ def create_main_interface():
124
  - **Description**: {root_data["description"]}
125
 
126
  ### πŸ”— Links
127
- - [Documentation]({root_data["docs"]}) | [GitHub]({root_data["github"]}) | [Demo]({root_data["spaces"]})
128
 
129
  ### πŸ’‘ How to Use
130
  Visit **/docs** for API documentation or try the playground below! 🌏
 
111
  # Project Info
112
  gr.Markdown(
113
  """
114
+ ## πŸš€ **Lightweight Embeddings API**
115
+
116
+ Welcome to the **Lightweight Embeddings API**, a fast, free, and unlimited service for generating multilingual embeddings and reranking, supporting both **text** and **image** inputs. Discover its key features and capabilities below:
 
117
  """
118
  )
119
  gr.Markdown(
 
123
  - **Description**: {root_data["description"]}
124
 
125
  ### πŸ”— Links
126
+ - [Documentation]({root_data["docs"]}) | [GitHub]({root_data["github"]}) | [Playground]({root_data["spaces"]})
127
 
128
  ### πŸ’‘ How to Use
129
  Visit **/docs** for API documentation or try the playground below! 🌏
pyproject.toml CHANGED
@@ -1,7 +1,8 @@
1
  [tool.poetry]
2
  name = "lightweight-embeddings"
3
  version = "0.1.0"
4
- description = "Fast, lightweight, multilingual embeddings solution."
 
5
  authors = ["Hieu Lam <lamhieu.vk@gmail.com>"]
6
  readme = "README.md"
7
 
 
1
  [tool.poetry]
2
  name = "lightweight-embeddings"
3
  version = "0.1.0"
4
+ short_description = "A fast, free, unlimited APIs service for multilingual embeddings and reranking, supporting text and image inputs."
5
+ description = "LightweightEmbeddings is a fast, free, and unlimited API service for multilingual embeddings and reranking, with support for both text and images and guaranteed uptime."
6
  authors = ["Hieu Lam <lamhieu.vk@gmail.com>"]
7
  readme = "README.md"
8