goose-py 0.10.0__tar.gz → 0.10.1__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 (37) hide show
  1. {goose_py-0.10.0 → goose_py-0.10.1}/PKG-INFO +1 -1
  2. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/task.py +1 -0
  3. {goose_py-0.10.0 → goose_py-0.10.1}/pyproject.toml +1 -1
  4. {goose_py-0.10.0 → goose_py-0.10.1}/uv.lock +1 -1
  5. {goose_py-0.10.0 → goose_py-0.10.1}/.envrc +0 -0
  6. {goose_py-0.10.0 → goose_py-0.10.1}/.github/workflows/publish.yml +0 -0
  7. {goose_py-0.10.0 → goose_py-0.10.1}/.gitignore +0 -0
  8. {goose_py-0.10.0 → goose_py-0.10.1}/.python-version +0 -0
  9. {goose_py-0.10.0 → goose_py-0.10.1}/.stubs/jsonpath_ng/__init__.pyi +0 -0
  10. {goose_py-0.10.0 → goose_py-0.10.1}/.stubs/litellm/__init__.pyi +0 -0
  11. {goose_py-0.10.0 → goose_py-0.10.1}/Makefile +0 -0
  12. {goose_py-0.10.0 → goose_py-0.10.1}/README.md +0 -0
  13. {goose_py-0.10.0 → goose_py-0.10.1}/goose/__init__.py +0 -0
  14. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/agent.py +0 -0
  15. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/conversation.py +0 -0
  16. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/flow.py +0 -0
  17. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/result.py +0 -0
  18. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/state.py +0 -0
  19. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/store.py +0 -0
  20. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/types/__init__.py +0 -0
  21. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/types/agent.py +0 -0
  22. {goose_py-0.10.0 → goose_py-0.10.1}/goose/_internal/types/telemetry.py +0 -0
  23. {goose_py-0.10.0 → goose_py-0.10.1}/goose/agent.py +0 -0
  24. {goose_py-0.10.0 → goose_py-0.10.1}/goose/errors.py +0 -0
  25. {goose_py-0.10.0 → goose_py-0.10.1}/goose/flow.py +0 -0
  26. {goose_py-0.10.0 → goose_py-0.10.1}/goose/py.typed +0 -0
  27. {goose_py-0.10.0 → goose_py-0.10.1}/goose/runs.py +0 -0
  28. {goose_py-0.10.0 → goose_py-0.10.1}/goose/task.py +0 -0
  29. {goose_py-0.10.0 → goose_py-0.10.1}/tests/__init__.py +0 -0
  30. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_agent.py +0 -0
  31. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_ask.py +0 -0
  32. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_downstream_task.py +0 -0
  33. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_hashing.py +0 -0
  34. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_looping.py +0 -0
  35. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_refining.py +0 -0
  36. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_regenerate.py +0 -0
  37. {goose_py-0.10.0 → goose_py-0.10.1}/tests/test_state.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: goose-py
3
- Version: 0.10.0
3
+ Version: 0.10.1
4
4
  Summary: A tool for AI workflows based on human-computer collaboration and structured output.
5
5
  Author-email: Nash Taylor <nash@chelle.ai>, Joshua Cook <joshua@chelle.ai>, Michael Sankur <michael@chelle.ai>
6
6
  Requires-Python: >=3.12
@@ -87,6 +87,7 @@ class Task[**P, R: Result]:
87
87
  task_name=f"refine--{self.name}",
88
88
  system=context.render() if context is not None else None,
89
89
  response_model=self.result_type,
90
+ mode="refine",
90
91
  )
91
92
  node_state.add_result(result=result)
92
93
  flow_run.upsert_node_state(node_state)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "goose-py"
3
- version = "0.10.0"
3
+ version = "0.10.1"
4
4
  description = "A tool for AI workflows based on human-computer collaboration and structured output."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -332,7 +332,7 @@ wheels = [
332
332
 
333
333
  [[package]]
334
334
  name = "goose-py"
335
- version = "0.10.0"
335
+ version = "0.10.1"
336
336
  source = { editable = "." }
337
337
  dependencies = [
338
338
  { name = "jsonpath-ng" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes