chansung commited on
Commit
e0bfcd4
·
verified ·
1 Parent(s): 2190187

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -299,3 +299,29 @@ $ python main.py # or gradio main.py
299
 
300
  # Acknowledgments
301
  This is a project built during the Vertex sprints held by Google's ML Developer Programs team. We are thankful to be granted good amount of GCP credits to do this project.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
 
300
  # Acknowledgments
301
  This is a project built during the Vertex sprints held by Google's ML Developer Programs team. We are thankful to be granted good amount of GCP credits to do this project.
302
+ # AdaptSum
303
+
304
+ [![Sync to Hugging Face Spaces](https://github.com/deep-diver/AdaptSum/actions/workflows/sync_to_spaces.yml/badge.svg)](https://github.com/deep-diver/AdaptSum/actions/workflows/sync_to_spaces.yml)
305
+
306
+ AdaptSum stands for Adaptive Summarization. This project focuses on developing an LLM-powered system for dynamic summarization. Instead of generating entirely new summaries with each update, the system intelligently identifies and modifies only the necessary parts of the existing summary. This approach aims to create a more efficient and fluid summarization process within a continuous chat interaction with an LLM.
307
+
308
+ # Instructions
309
+
310
+ 1. Install dependencies
311
+ ```shell
312
+ $ pip install requirements.txt
313
+ ```
314
+
315
+ 2. Setup Gemini API Key
316
+ ```shell
317
+ $ export GEMINI_API_KEY=xxxxx
318
+ ```
319
+ > note that GEMINI API KEY should be obtained from Google AI Studio. Vertex AI is not supported at the moment (this is because Gemini SDK does not provide file uploading functionality for Vertex AI usage now).
320
+
321
+ 3. Run Gradio app
322
+ ```shell
323
+ $ python main.py # or gradio main.py
324
+ ```
325
+
326
+ # Acknowledgments
327
+ This is a project built during the Vertex sprints held by Google's ML Developer Programs team. We are thankful to be granted good amount of GCP credits to do this project.