chansung commited on
Commit
34e800c
·
verified ·
1 Parent(s): db52a65

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .github/workflows/sync_to_spaces.yml +1 -1
  2. README.md +24 -0
.github/workflows/sync_to_spaces.yml CHANGED
@@ -35,7 +35,7 @@ jobs:
35
 
36
  - name: Copy Files to Hugging Face Repo
37
  run: |
38
- rsync -av --exclude='.git' --exclude='README.md' --exclude='hf_space' ./ hf_space/
39
 
40
  - name: Merge README.md Files
41
  run: |
 
35
 
36
  - name: Copy Files to Hugging Face Repo
37
  run: |
38
+ rsync -av --exclude='requirements.txt' --exclude='.git' --exclude='README.md' --exclude='hf_space' ./ hf_space/
39
 
40
  - name: Merge README.md Files
41
  run: |
README.md CHANGED
@@ -35,3 +35,27 @@ $ python main.py # or gradio main.py
35
 
36
  # Acknowledgments
37
  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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  # Acknowledgments
37
  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.
38
+ # AdaptSum
39
+
40
+ 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.
41
+
42
+ # Instructions
43
+
44
+ 1. Install dependencies
45
+ ```shell
46
+ $ pip install requirements.txt
47
+ ```
48
+
49
+ 2. Setup Gemini API Key
50
+ ```shell
51
+ $ export GEMINI_API_KEY=xxxxx
52
+ ```
53
+ > 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).
54
+
55
+ 3. Run Gradio app
56
+ ```shell
57
+ $ python main.py # or gradio main.py
58
+ ```
59
+
60
+ # Acknowledgments
61
+ 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.