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.
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/.gitignore +7 -0
- thoughtflow-0.0.4/PKG-INFO +1686 -0
- thoughtflow-0.0.4/README.md +1603 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/pyproject.toml +1 -1
- thoughtflow-0.0.3/PKG-INFO +0 -215
- thoughtflow-0.0.3/README.md +0 -132
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/CHANGELOG.md +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/LICENSE +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/_util.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/action.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/agent.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/harness.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/eval/replay.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/llm.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/memory/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/memory/base.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/message.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/py.typed +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/thought.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/thoughtflow6.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/base.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/tools/registry.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/events.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/schema.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/src/thoughtflow/trace/session.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/conftest.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_anthropic_adapter.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_llm_providers.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/integration/test_openai_adapter.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/__init__.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_action.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_agent.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_llm.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_memory.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_message.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_thought.py +0 -0
- {thoughtflow-0.0.3 → thoughtflow-0.0.4}/tests/unit/test_trace.py +0 -0
- {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/
|