Spaces:
Running
Running
Merge pull request #81 from barun-saha/visual
Browse files
README.md
CHANGED
@@ -51,7 +51,7 @@ The supported LLMs offer different styles of content generation. Use one of the
|
|
51 |
| Mistral 7B Instruct v0.2 | Hugging Face (`hf`) | Optional but strongly encouraged; [get here](https://huggingface.co/settings/tokens) | Faster, shorter content |
|
52 |
| Mistral NeMo Instruct 2407 | Hugging Face (`hf`) | Optional but strongly encouraged; [get here](https://huggingface.co/settings/tokens) | Slower, longer content |
|
53 |
| Gemini 2.0 Flash | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) | Faster, longer content |
|
54 |
-
| Gemini 2.0 Flash Lite | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) |
|
55 |
| GPT | Azure OpenAI (`az`) | Mandatory; [get here](https://ai.azure.com/resource/playground) NOTE: You need to have your subscription/billing set up | Faster, longer content |
|
56 |
| Command R+ | Cohere (`co`) | Mandatory; [get here](https://dashboard.cohere.com/api-keys) | Shorter, simpler content |
|
57 |
| Llama 3.3 70B Instruct Turbo | Together AI (`to`) | Mandatory; [get here](https://api.together.ai/settings/api-keys) | Detailed, slower |
|
@@ -111,6 +111,7 @@ Finally, the focus is on using offline LLMs, not going completely offline. So, I
|
|
111 |
|
112 |
- [SlideDeck AI](https://huggingface.co/spaces/barunsaha/slide-deck-ai) on Hugging Face Spaces
|
113 |
- [Demo video](https://youtu.be/QvAKzNKtk9k) of the chat interface on YouTube
|
|
|
114 |
|
115 |
|
116 |
# Award
|
|
|
51 |
| Mistral 7B Instruct v0.2 | Hugging Face (`hf`) | Optional but strongly encouraged; [get here](https://huggingface.co/settings/tokens) | Faster, shorter content |
|
52 |
| Mistral NeMo Instruct 2407 | Hugging Face (`hf`) | Optional but strongly encouraged; [get here](https://huggingface.co/settings/tokens) | Slower, longer content |
|
53 |
| Gemini 2.0 Flash | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) | Faster, longer content |
|
54 |
+
| Gemini 2.0 Flash Lite | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) | Fastest, longer content |
|
55 |
| GPT | Azure OpenAI (`az`) | Mandatory; [get here](https://ai.azure.com/resource/playground) NOTE: You need to have your subscription/billing set up | Faster, longer content |
|
56 |
| Command R+ | Cohere (`co`) | Mandatory; [get here](https://dashboard.cohere.com/api-keys) | Shorter, simpler content |
|
57 |
| Llama 3.3 70B Instruct Turbo | Together AI (`to`) | Mandatory; [get here](https://api.together.ai/settings/api-keys) | Detailed, slower |
|
|
|
111 |
|
112 |
- [SlideDeck AI](https://huggingface.co/spaces/barunsaha/slide-deck-ai) on Hugging Face Spaces
|
113 |
- [Demo video](https://youtu.be/QvAKzNKtk9k) of the chat interface on YouTube
|
114 |
+
- Demo video on [using Azure OpenAI](https://youtu.be/oPbH-z3q0Mw)
|
115 |
|
116 |
|
117 |
# Award
|
global_config.py
CHANGED
@@ -47,8 +47,8 @@ class GlobalConfig:
|
|
47 |
'max_new_tokens': 8192,
|
48 |
'paid': True,
|
49 |
},
|
50 |
-
'[gg]gemini-2.0-flash-lite
|
51 |
-
'description': '
|
52 |
'max_new_tokens': 8192,
|
53 |
'paid': True,
|
54 |
},
|
|
|
47 |
'max_new_tokens': 8192,
|
48 |
'paid': True,
|
49 |
},
|
50 |
+
'[gg]gemini-2.0-flash-lite': {
|
51 |
+
'description': 'fastest, detailed',
|
52 |
'max_new_tokens': 8192,
|
53 |
'paid': True,
|
54 |
},
|
langchain_templates/chat_prompts/refinement_template_v4_two_cols_img.txt
CHANGED
@@ -16,6 +16,7 @@ These keywords will be later used to search for images from the Web relevant to
|
|
16 |
In addition, create one slide containing 4 TO 6 icons (pictograms) illustrating some key ideas/aspects/concepts relevant to the topic.
|
17 |
In this slide, each line of text will begin with the name of a relevant icon enclosed between [[ and ]], e.g., [[machine-learning]] and [[fairness]].
|
18 |
Insert icons only in this slide.
|
|
|
19 |
|
20 |
Your output, i.e., the content of each slide should be VERBOSE, DESCRIPTIVE, and very DETAILED.
|
21 |
Each bullet point should be detailed and explanatory, not just short phrases.
|
|
|
16 |
In addition, create one slide containing 4 TO 6 icons (pictograms) illustrating some key ideas/aspects/concepts relevant to the topic.
|
17 |
In this slide, each line of text will begin with the name of a relevant icon enclosed between [[ and ]], e.g., [[machine-learning]] and [[fairness]].
|
18 |
Insert icons only in this slide.
|
19 |
+
Do not repeat any icons or the icons slide.
|
20 |
|
21 |
Your output, i.e., the content of each slide should be VERBOSE, DESCRIPTIVE, and very DETAILED.
|
22 |
Each bullet point should be detailed and explanatory, not just short phrases.
|