Spaces:
Running
Running
Merge pull request #125 from barun-saha/visual
Browse files- README.md +5 -4
- global_config.py +7 -2
README.md
CHANGED
|
@@ -56,10 +56,11 @@ The supported LLMs offer different styles of content generation. Use one of the
|
|
| 56 |
| Gemini 2.5 Flash Lite | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) | Fastest, longer content |
|
| 57 |
| 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 |
|
| 58 |
| Command R+ | Cohere (`co`) | Mandatory; [get here](https://dashboard.cohere.com/api-keys) | Shorter, simpler content |
|
| 59 |
-
| Gemini-2.0-flash-001 | OpenRouter (`or`) | Mandatory; [get here](https://openrouter.ai/settings/keys) | Faster, longer content
|
| 60 |
-
| GPT-3.5 Turbo | OpenRouter (`or`) | Mandatory; [get here](https://openrouter.ai/settings/keys) | Faster, longer content
|
| 61 |
-
|
|
| 62 |
-
| Llama 3.
|
|
|
|
| 63 |
|
| 64 |
**IMPORTANT**: SlideDeck AI does **NOT** store your API keys/tokens or transmit them elsewhere. If you provide your API key, it is only used to invoke the relevant LLM to generate contents. That's it! This is an
|
| 65 |
Open-Source project, so feel free to audit the code and convince yourself.
|
|
|
|
| 56 |
| Gemini 2.5 Flash Lite | Google Gemini API (`gg`) | Mandatory; [get here](https://aistudio.google.com/apikey) | Fastest, longer content |
|
| 57 |
| 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 |
|
| 58 |
| Command R+ | Cohere (`co`) | Mandatory; [get here](https://dashboard.cohere.com/api-keys) | Shorter, simpler content |
|
| 59 |
+
| Gemini-2.0-flash-001 | OpenRouter (`or`) | Mandatory; [get here](https://openrouter.ai/settings/keys) | Faster, longer content |
|
| 60 |
+
| GPT-3.5 Turbo | OpenRouter (`or`) | Mandatory; [get here](https://openrouter.ai/settings/keys) | Faster, longer content |
|
| 61 |
+
| DeepSeek V3-0324 | Together AI (`to`) | Mandatory; [get here](https://api.together.ai/settings/api-keys) | Slower, medium-length |
|
| 62 |
+
| Llama 3.3 70B Instruct Turbo | Together AI (`to`) | Mandatory; [get here](https://api.together.ai/settings/api-keys) | Slower, detailed |
|
| 63 |
+
| Llama 3.1 8B Instruct Turbo 128K | Together AI (`to`) | Mandatory; [get here](https://api.together.ai/settings/api-keys) | Faster, shorter |
|
| 64 |
|
| 65 |
**IMPORTANT**: SlideDeck AI does **NOT** store your API keys/tokens or transmit them elsewhere. If you provide your API key, it is only used to invoke the relevant LLM to generate contents. That's it! This is an
|
| 66 |
Open-Source project, so feel free to audit the code and convince yourself.
|
global_config.py
CHANGED
|
@@ -94,13 +94,18 @@ class GlobalConfig:
|
|
| 94 |
'max_new_tokens': 4096,
|
| 95 |
'paid': True,
|
| 96 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
'[to]meta-llama/Llama-3.3-70B-Instruct-Turbo': {
|
| 98 |
-
'description': '
|
| 99 |
'max_new_tokens': 4096,
|
| 100 |
'paid': True,
|
| 101 |
},
|
| 102 |
'[to]meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo-128K': {
|
| 103 |
-
'description': '
|
| 104 |
'max_new_tokens': 4096,
|
| 105 |
'paid': True,
|
| 106 |
}
|
|
|
|
| 94 |
'max_new_tokens': 4096,
|
| 95 |
'paid': True,
|
| 96 |
},
|
| 97 |
+
'[to]deepseek-ai/DeepSeek-V3': {
|
| 98 |
+
'description': 'slower, medium',
|
| 99 |
+
'max_new_tokens': 8192,
|
| 100 |
+
'paid': True,
|
| 101 |
+
},
|
| 102 |
'[to]meta-llama/Llama-3.3-70B-Instruct-Turbo': {
|
| 103 |
+
'description': 'slower, detailed',
|
| 104 |
'max_new_tokens': 4096,
|
| 105 |
'paid': True,
|
| 106 |
},
|
| 107 |
'[to]meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo-128K': {
|
| 108 |
+
'description': 'faster, shorter',
|
| 109 |
'max_new_tokens': 4096,
|
| 110 |
'paid': True,
|
| 111 |
}
|