thoughtflow 0.0.3__tar.gz → 0.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/.gitignore +7 -0
  2. thoughtflow-0.0.4/PKG-INFO +1686 -0
  3. thoughtflow-0.0.4/README.md +1603 -0
  4. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/pyproject.toml +1 -1
  5. thoughtflow-0.0.3/PKG-INFO +0 -215
  6. thoughtflow-0.0.3/README.md +0 -132
  7. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/CHANGELOG.md +0 -0
  8. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/LICENSE +0 -0
  9. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/__init__.py +0 -0
  10. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/_util.py +0 -0
  11. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/action.py +0 -0
  12. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/agent.py +0 -0
  13. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/__init__.py +0 -0
  14. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/harness.py +0 -0
  15. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/replay.py +0 -0
  16. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/llm.py +0 -0
  17. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/memory/__init__.py +0 -0
  18. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/memory/base.py +0 -0
  19. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/message.py +0 -0
  20. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/py.typed +0 -0
  21. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/thought.py +0 -0
  22. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/thoughtflow6.py +0 -0
  23. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/__init__.py +0 -0
  24. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/base.py +0 -0
  25. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/registry.py +0 -0
  26. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/__init__.py +0 -0
  27. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/events.py +0 -0
  28. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/schema.py +0 -0
  29. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/session.py +0 -0
  30. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/__init__.py +0 -0
  31. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/conftest.py +0 -0
  32. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/__init__.py +0 -0
  33. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_anthropic_adapter.py +0 -0
  34. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_llm_providers.py +0 -0
  35. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_openai_adapter.py +0 -0
  36. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/__init__.py +0 -0
  37. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_action.py +0 -0
  38. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_agent.py +0 -0
  39. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_llm.py +0 -0
  40. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_memory.py +0 -0
  41. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_message.py +0 -0
  42. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_thought.py +0 -0
  43. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_trace.py +0 -0
  44. {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_util.py +0 -0
@@ -161,3 +161,10 @@ cython_debug/
161
161
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
162
  #.idea/
163
163
  .DS_Store
164
+
165
+ # ============================================================================
166
+ # Human-AI Pair Programming Context
167
+ # ============================================================================
168
+ # This folder contains reference materials, notes, and files used to provide
169
+ # context during AI-assisted development sessions. Not part of the codebase.
170
+ .context/