This is a template project for Deepseek applications in Codeanywhere. Try it out
Set your Deepseek API key:
export DEEPSEEK_API_KEY=your_api_key_hereOpen the terminal and run one of the example scripts:
python samples/openai-document-analyzer.py util/report.txt
python samples/openai-code-reviewer.py util/script.js
python samples/openai-content-creator.py "AI Applications" --type blog --tone professionalAll dependencies are pre-installed in the devcontainer. You only need to create a .env file with your API key:
DEEPSEEK_API_KEY=your_api_key_here
- Development container for Deepseek applications
- Pre-installed dependencies
- Document analysis and summarization tools
- Code review and improvement utilities
- Content generation capabilities
# Summarize a document
python samples/deepseek-document-analyzer.py util/report.txt
# Summarize and save to a file
python samples/deepseek-document-analyzer.py util/report.txt summary.txt# Review JavaScript code
python samples/deepseek-code-reviewer.py util/script.js# Create a blog post
python samples/deepseek-content-creator.py "Machine Learning Trends" --type blog
# Create social media content with a friendly tone
python samples/deepseek-content-creator.py "Product Launch" --type social --tone friendly
# Create a marketing email with a persuasive tone
python samples/deepseek-content-creator.py "Summer Sale" --type email --tone persuasiveTo learn more about Deepseek, take a look at the following resources:
- Deepseek Documentation - learn about Deepseek features and API
- API Reference - detailed API documentation
You can check out the official Deepseek GitHub repository - your feedback and contributions are welcome!
Feel free to open a PR with any suggestions for this template project 😃