thoughtflow 0.0.2__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 (56) hide show
  1. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/.gitignore +8 -0
  2. thoughtflow-0.0.4/PKG-INFO +1686 -0
  3. thoughtflow-0.0.4/README.md +1603 -0
  4. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/pyproject.toml +1 -1
  5. thoughtflow-0.0.4/src/thoughtflow/__init__.py +99 -0
  6. thoughtflow-0.0.4/src/thoughtflow/_util.py +752 -0
  7. thoughtflow-0.0.4/src/thoughtflow/action.py +357 -0
  8. thoughtflow-0.0.4/src/thoughtflow/agent.py +66 -0
  9. thoughtflow-0.0.4/src/thoughtflow/llm.py +250 -0
  10. thoughtflow-0.0.4/src/thoughtflow/memory/__init__.py +32 -0
  11. thoughtflow-0.0.4/src/thoughtflow/memory/base.py +1658 -0
  12. thoughtflow-0.0.4/src/thoughtflow/thought.py +1102 -0
  13. thoughtflow-0.0.4/src/thoughtflow/thoughtflow6.py +4180 -0
  14. thoughtflow-0.0.4/tests/conftest.py +429 -0
  15. thoughtflow-0.0.4/tests/integration/test_llm_providers.py +492 -0
  16. thoughtflow-0.0.4/tests/unit/test_action.py +421 -0
  17. thoughtflow-0.0.4/tests/unit/test_agent.py +69 -0
  18. thoughtflow-0.0.4/tests/unit/test_llm.py +469 -0
  19. thoughtflow-0.0.4/tests/unit/test_memory.py +1104 -0
  20. thoughtflow-0.0.4/tests/unit/test_thought.py +501 -0
  21. thoughtflow-0.0.4/tests/unit/test_util.py +890 -0
  22. thoughtflow-0.0.2/PKG-INFO +0 -215
  23. thoughtflow-0.0.2/README.md +0 -132
  24. thoughtflow-0.0.2/src/thoughtflow/__init__.py +0 -56
  25. thoughtflow-0.0.2/src/thoughtflow/_util.py +0 -108
  26. thoughtflow-0.0.2/src/thoughtflow/adapters/__init__.py +0 -43
  27. thoughtflow-0.0.2/src/thoughtflow/adapters/anthropic.py +0 -119
  28. thoughtflow-0.0.2/src/thoughtflow/adapters/base.py +0 -140
  29. thoughtflow-0.0.2/src/thoughtflow/adapters/local.py +0 -133
  30. thoughtflow-0.0.2/src/thoughtflow/adapters/openai.py +0 -118
  31. thoughtflow-0.0.2/src/thoughtflow/agent.py +0 -147
  32. thoughtflow-0.0.2/src/thoughtflow/memory/__init__.py +0 -27
  33. thoughtflow-0.0.2/src/thoughtflow/memory/base.py +0 -142
  34. thoughtflow-0.0.2/tests/conftest.py +0 -165
  35. thoughtflow-0.0.2/tests/unit/test_agent.py +0 -84
  36. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/CHANGELOG.md +0 -0
  37. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/LICENSE +0 -0
  38. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/__init__.py +0 -0
  39. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/harness.py +0 -0
  40. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/eval/replay.py +0 -0
  41. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/message.py +0 -0
  42. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/py.typed +0 -0
  43. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/__init__.py +0 -0
  44. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/base.py +0 -0
  45. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/tools/registry.py +0 -0
  46. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/__init__.py +0 -0
  47. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/events.py +0 -0
  48. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/schema.py +0 -0
  49. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/src/thoughtflow/trace/session.py +0 -0
  50. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/__init__.py +0 -0
  51. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/__init__.py +0 -0
  52. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/test_anthropic_adapter.py +0 -0
  53. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/integration/test_openai_adapter.py +0 -0
  54. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/__init__.py +0 -0
  55. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/test_message.py +0 -0
  56. {thoughtflow-0.0.2 → thoughtflow-0.0.4}/tests/unit/test_trace.py +0 -0
@@ -160,3 +160,11 @@ cython_debug/
160
160
  # and can be added to the global gitignore or merged into this file. For a more nuclear
161
161
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
162
  #.idea/
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/