Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Deepseeker extension #16832

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/deepseeker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# DeepSeeker - Quick Actions Changelog

## [Minor improvements] - {PR_MERGE_DATE}

- 💤 Minor improvements

## [New Features] - 2025-01-30

- 🐳 Add DeepSeek-R1 reasoning model
Expand Down
6 changes: 2 additions & 4 deletions extensions/deepseeker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DeepSeeker - DeepSeek Quick Actions

DeepSeek LLM is a powerful yet cheap LLM. DeepSeeker is a Raycast extension that allows you to perform one-shot actions with DeepSeek using Raycast.
DeepSeek is a powerful yet cheap LLM. This extension provides quick actions to interact with DeepSeek API. It allows you to quickly ask questions, summarize text, and more. It's a great tool for students, researchers, and anyone who needs quick answers.

While [ChatGPT Quick Actions](https://www.raycast.com/alanzchen/chatgpt-quick-actions) is built for ChatGPT, DeepSeeker is built for DeepSeek. For now, it tries to obey `Multiple Simple` phylosophy. In the future, it tries to provide `more flexibility` for individual various needs.

Expand All @@ -26,12 +26,10 @@ Enjoy using DeepSeeker! 🚀
- [x] 🌐 Support Translate and Looking Up Words
- [x] 🎨 Multiple models support (Deepseek, OpenAI, Gemini)
- [ ] 🔍 Fix Fallback Feature, e.g., ASK LLM
- [ ] Fix notes
- [ ] Interaction with Zoo using deeplinks?
- [ ] 📦 More flexibility for personal needs
- [ ] Prompt zoo
- [ ] Choose proopt when running the command
- [ ] 💬 Conversation Chat mode

> This extension is built highly inspired by [ChatGPT Quick Actions](https://www.raycast.com/alanzchen/chatgpt-quick-actions) by [Alan Chen](https://www.raycast.com/alanzchen).

Expand All @@ -40,7 +38,7 @@ Enjoy using DeepSeeker! 🚀
<details>
<summary>Wallpaper & Examples</summary>

The wallpaper for the Screenshots is the https://misc-assets.raycast.com/wallpapers/blue_distortion_2.heic
The wallpaper for the Screenshots is the <https://misc-assets.raycast.com/wallpapers/blue_distortion_2.heic>

All the examples have been generated on [Elon Musk's Wikipedia page 1st Paragraph](https://en.wikipedia.org/wiki/Elon_Musk)

Expand Down
16 changes: 4 additions & 12 deletions extensions/deepseeker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"Developer Tools"
],
"keywords": [
"AI",
"DeepSeek",
"DeepSeek V3",
"DeepSeek R1",
Expand Down Expand Up @@ -212,7 +213,7 @@
"name": "lookup",
"label": "Lookup Mode (Beta)",
"title": "Lookup Mode (Beta)",
"description": "Enable lookup mode to get the meaning of the selected single word",
"description": "Enable lookup mode to get the meaning of the selected single word like a dictionary",
"type": "checkbox",
"required": false,
"default": false
Expand Down Expand Up @@ -577,8 +578,8 @@
},
{
"name": "execute",
"title": "Execute",
"description": "Execute the prompt and replace it with its output",
"title": "Execute Selected Prompt",
"description": "Execute the selected prompt and replace it with its output",
"mode": "no-view",
"preferences": [
{
Expand Down Expand Up @@ -713,15 +714,6 @@
],
"required": true,
"title": "LLM Model"
},
{
"name": "sidenote",
"title": "SideNote Integration",
"description": "Enable SideNote integration (requires SideNote). Allows you to send the results to SideNote as a new note.",
"label": "Enabled",
"type": "checkbox",
"default": false,
"required": false
}
],
"devDependencies": {
Expand Down
Loading