A powerful tool that translates ComfyUI workflows into executable Python code.
89/100 healthLoading repository data…
Loading repository data…
Doriandarko / repository
A powerful coding assistant application that integrates with the DeepSeek API to process user conversations and generate structured JSON responses. Through an intuitive command-line interface, it can read local file contents, create new files, and apply diff edits to existing files in real time.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
DeepSeek Engineer v2 is a powerful AI-powered coding assistant that provides an interactive terminal interface for seamless code development. It integrates with DeepSeek's advanced reasoning models to offer intelligent file operations, code analysis, and development assistance through natural conversation and function calling.
Version 2.0 introduces a big upgrade from structured JSON output to native function calling, providing:
The AI can automatically execute these operations when needed:
read_file(file_path: str)read_multiple_files(file_paths: List[str])create_file(file_path: str, content: str)create_multiple_files(files: List[Dict])edit_file(file_path: str, original_snippet: str, new_snippet: str)The AI can automatically read files you mention:
You> Can you review the main.py file and suggest improvements?
→ AI automatically calls read_file("main.py")
You> Look at src/utils.py and tests/test_utils.py
→ AI automatically calls read_multiple_files(["src/utils.py", "tests/test_utils.py"])
For when you want to preload files into conversation context:
/add path/to/file - Include single file in conversation context/add path/to/folder - Include entire directory (with smart filtering)Note: The /add command is mainly useful when you want to provide extra context upfront. The AI can read files automatically via function calls whenever needed during the conversation.
Clone the repository:
git clone <repository-url>
cd deepseek-engineer
Set up environment:
# Create .env file
echo "DEEPSEEK_API_KEY=your_api_key_here" > .env
Install dependencies (choose one method):
uv venv
uv run deepseek-eng.py
pip install -r requirements.txt
python3 deepseek-eng.py
You> Can you read the main.py file and create a test file for it?
💭 Reasoning: I need to first read the main.py file to understand its structure...
🤖 Assistant> I'll read the main.py file first to understand its structure.
⚡ Executing 1 function call(s)...
→ read_file
✓ Read file 'main.py'
🔄 Processing results...
Now I'll create comprehensive tests based on the code structure I found.
⚡ Executing 1 function call(s)...
→ create_file
✓ Created/updated file at 'test_main.py'
I've analyzed main.py and created comprehensive tests covering all the main functions...
You> Compare the implementation in utils.py with the tests in test_utils.py
💭 Reasoning: I need to read both files to compare them...
🤖 Assistant> I'll read both files to analyze the implementation and tests.
⚡ Executing 1 function call(s)...
→ read_multiple_files
✓ Read files: utils.py, test_utils.py
🔄 Processing results...
After analyzing both files, I can see several areas where the tests could be improved...
You> /add src/
✓ Added folder 'src/' to conversation.
📁 Added files: (15 files)
📄 src/utils.py
📄 src/models.py
...
You> Now review this codebase structure
🤖 Assistant> I've reviewed your codebase and found several areas for improvement:
1. **Error Handling**: The utils.py file could benefit from more robust error handling...
You> Create a complete Flask API with models, routes, and tests
🤖 Assistant> I'll create a complete Flask API structure for you.
⚡ Executing 1 function call(s)...
→ create_multiple_files
✓ Created 4 files: app.py, models.py, routes.py, test_api.py
You> /add .
You> Analyze this entire project and suggest a refactoring plan
🤖 Assistant> ⚡ Executing 1 function call(s)...
→ read_multiple_files
Based on my analysis of your project, here's a comprehensive refactoring plan...
| Method | When to Use | How It Works |
|---|---|---|
| Automatic Reading | Most cases - just mention files | AI automatically calls read_file() when you reference files |
/add Command | Preload context, bulk operations | Manually adds files to conversation context upfront |
Recommendation: Use natural conversation - the AI will automatically read files as needed. Use /add only when you want to provide extra context upfront.
API Key Not Found
# Make sure .env file exists with your API key
echo "DEEPSEEK_API_KEY=your_key_here" > .env
Import Errors
# Install dependencies
uv sync # or pip install -r requirements.txt
File Permission Errors
This is an experimental project showcasing DeepSeek reasoning model capabilities. Contributions are welcome!
git clone <repository-url>
cd deepseek-engineer
uv venv
uv sync
# Run the application (preferred)
uv run deepseek-eng.py
or
python3 deepseek-eng.py
This project is licensed under the MIT License - see the LICENSE file for details.
This project is experimental and developed for testing DeepSeek reasoning model capabilities.
Note: This is an experimental project developed to explore the capabilities of DeepSeek's reasoning model with function calling. The AI can automatically read files you mention in conversation, while the
/addcommand is available for when you want to preload context. Use responsibly and enjoy the enhanced AI pair programming experience! 🚀
Selected from shared topics, language and repository description—not editorial ratings.
A powerful tool that translates ComfyUI workflows into executable Python code.
89/100 healthkuwala-io /
Kuwala is the no-code data platform for BI analysts and engineers enabling you to build powerful analytics workflows. We are set out to bring state-of-the-art data engineering tools you love, such as Airbyte, dbt, or Great Expectations together in one intuitive interface built with React Flow. In addition we provide third-party data into data science models and products with a focus on geospatial data. Currently, the following data connectors are available worldwide: a) High-resolution demographics data b) Point of Interests from Open Street Map c) Google Popular Times
86/100 healthtom-doerr /
A powerful Python tool for performing technical searches using the Perplexity API, optimized for retrieving precise facts, code examples, and numerical data.
76/100 healthprimaprashant /
hns is a speech-to-text CLI tool to transcribe your voice from your microphone directly to clipboard. Integrate hns with Claude Code, Ollama, LLM, and more CLI tools for powerful workflows.
81/100 healthsanusanth /
What is Python? Executive Summary Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed. Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective. What is Python? Python is a popular programming language. It was created by Guido van Rossum, and released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting. What can Python do? Python can be used on a server to create web applications. Python can be used alongside software to create workflows. Python can connect to database systems. It can also read and modify files. Python can be used to handle big data and perform complex mathematics. Python can be used for rapid prototyping, or for production-ready software development. Why Python? Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc). Python has a simple syntax similar to the English language. Python has syntax that allows developers to write programs with fewer lines than some other programming languages. Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick. Python can be treated in a procedural way, an object-oriented way or a functional way. Good to know The most recent major version of Python is Python 3, which we shall be using in this tutorial. However, Python 2, although not being updated with anything other than security updates, is still quite popular. In this tutorial Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as Thonny, Pycharm, Netbeans or Eclipse which are particularly useful when managing larger collections of Python files. Python Syntax compared to other programming languages Python was designed for readability, and has some similarities to the English language with influence from mathematics. Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses. Python relies on indentation, using whitespace, to define scope; such as the scope of loops, functions and classes. Other programming languages often use curly-brackets for this purpose. Applications for Python Python is used in many application domains. Here's a sampling. The Python Package Index lists thousands of third party modules for Python. Web and Internet Development Python offers many choices for web development: Frameworks such as Django and Pyramid. Micro-frameworks such as Flask and Bottle. Advanced content management systems such as Plone and django CMS. Python's standard library supports many Internet protocols: HTML and XML JSON E-mail processing. Support for FTP, IMAP, and other Internet protocols. Easy-to-use socket interface. And the Package Index has yet more libraries: Requests, a powerful HTTP client library. Beautiful Soup, an HTML parser that can handle all sorts of oddball HTML. Feedparser for parsing RSS/Atom feeds. Paramiko, implementing the SSH2 protocol. Twisted Python, a framework for asynchronous network programming. Scientific and Numeric Python is widely used in scientific and numeric computing: SciPy is a collection of packages for mathematics, science, and engineering. Pandas is a data analysis and modeling library. IPython is a powerful interactive shell that features easy editing and recording of a work session, and supports visualizations and parallel computing. The Software Carpentry Course teaches basic skills for scientific computing, running bootcamps and providing open-access teaching materials. Education Python is a superb language for teaching programming, both at the introductory level and in more advanced courses. Books such as How to Think Like a Computer Scientist, Python Programming: An Introduction to Computer Science, and Practical Programming. The Education Special Interest Group is a good place to discuss teaching issues. Desktop GUIs The Tk GUI library is included with most binary distributions of Python. Some toolkits that are usable on several platforms are available separately: wxWidgets Kivy, for writing multitouch applications. Qt via pyqt or pyside Platform-specific toolkits are also available: GTK+ Microsoft Foundation Classes through the win32 extensions Software Development Python is often used as a support language for software developers, for build control and management, testing, and in many other ways. SCons for build control. Buildbot and Apache Gump for automated continuous compilation and testing. Roundup or Trac for bug tracking and project management. Business Applications Python is also used to build ERP and e-commerce systems: Odoo is an all-in-one management software that offers a range of business applications that form a complete suite of enterprise management applications. Try ton is a three-tier high-level general purpose application platform.
61/100 healthpieces-app /
The Pieces OS Client SDK is a powerful code engine package designed for writing applications on top of Pieces OS.
65/100 health