We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6564da7 commit 92fb938Copy full SHA for 92fb938
1 file changed
ai-dev-guide.md AGENTS.mdai-dev-guide.md renamed to AGENTS.md
@@ -28,3 +28,10 @@ llm_block = self._llm_blocks[identifier] # KeyError naturally thrown
28
- **Side effects**: Logging, state changes, external calls
29
30
**Remember:** Encapsulation should hide complexity, not add complexity.
31
+
32
+## Impl with Unit Test and Example
33
34
+If you are implementing a new feature, please implement the unit test and example.
35
36
+- For unit test, add in `tests/<module_name>`, and inherit the `unittest.TestCase` class.
37
+- For example, add in `examples/<module_name>`, and just demo the simple usage. (do not add too many use cases in single file)
0 commit comments