goose-py 0.11.14__tar.gz → 0.11.15__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 (34) hide show
  1. {goose_py-0.11.14 → goose_py-0.11.15}/PKG-INFO +2 -2
  2. {goose_py-0.11.14 → goose_py-0.11.15}/pyproject.toml +2 -2
  3. {goose_py-0.11.14 → goose_py-0.11.15}/uv.lock +11 -12
  4. {goose_py-0.11.14 → goose_py-0.11.15}/.envrc +0 -0
  5. {goose_py-0.11.14 → goose_py-0.11.15}/.github/workflows/publish.yml +0 -0
  6. {goose_py-0.11.14 → goose_py-0.11.15}/.gitignore +0 -0
  7. {goose_py-0.11.14 → goose_py-0.11.15}/.python-version +0 -0
  8. {goose_py-0.11.14 → goose_py-0.11.15}/.stubs/jsonpath_ng/__init__.pyi +0 -0
  9. {goose_py-0.11.14 → goose_py-0.11.15}/Makefile +0 -0
  10. {goose_py-0.11.14 → goose_py-0.11.15}/README.md +0 -0
  11. {goose_py-0.11.14 → goose_py-0.11.15}/goose/__init__.py +0 -0
  12. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/agent.py +0 -0
  13. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/conversation.py +0 -0
  14. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/flow.py +0 -0
  15. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/result.py +0 -0
  16. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/state.py +0 -0
  17. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/store.py +0 -0
  18. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/task.py +0 -0
  19. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/types/__init__.py +0 -0
  20. {goose_py-0.11.14 → goose_py-0.11.15}/goose/_internal/types/telemetry.py +0 -0
  21. {goose_py-0.11.14 → goose_py-0.11.15}/goose/errors.py +0 -0
  22. {goose_py-0.11.14 → goose_py-0.11.15}/goose/flow.py +0 -0
  23. {goose_py-0.11.14 → goose_py-0.11.15}/goose/py.typed +0 -0
  24. {goose_py-0.11.14 → goose_py-0.11.15}/goose/runs.py +0 -0
  25. {goose_py-0.11.14 → goose_py-0.11.15}/goose/task.py +0 -0
  26. {goose_py-0.11.14 → goose_py-0.11.15}/tests/__init__.py +0 -0
  27. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_agent.py +0 -0
  28. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_ask.py +0 -0
  29. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_downstream_task.py +0 -0
  30. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_hashing.py +0 -0
  31. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_looping.py +0 -0
  32. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_refining.py +0 -0
  33. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_regenerate.py +0 -0
  34. {goose_py-0.11.14 → goose_py-0.11.15}/tests/test_state.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: goose-py
3
- Version: 0.11.14
3
+ Version: 0.11.15
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
7
- Requires-Dist: aikernel==0.1.34
7
+ Requires-Dist: aikernel==0.1.35
8
8
  Requires-Dist: jsonpath-ng>=1.7.0
9
9
  Requires-Dist: pydantic>=2.8.2
10
10
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "goose-py"
3
- version = "0.11.14"
3
+ version = "0.11.15"
4
4
  description = "A tool for AI workflows based on human-computer collaboration and structured output."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -11,7 +11,7 @@ authors = [
11
11
  requires-python = ">=3.12"
12
12
  dependencies = [
13
13
  "jsonpath-ng>=1.7.0",
14
- "aikernel==0.1.34",
14
+ "aikernel==0.1.35",
15
15
  "pydantic>=2.8.2",
16
16
  ]
17
17
 
@@ -3,16 +3,15 @@ requires-python = ">=3.12"
3
3
 
4
4
  [[package]]
5
5
  name = "aikernel"
6
- version = "0.1.34"
6
+ version = "0.1.35"
7
7
  source = { registry = "https://pypi.org/simple" }
8
8
  dependencies = [
9
9
  { name = "litellm" },
10
- { name = "openai" },
11
10
  { name = "pydantic" },
12
11
  ]
13
- sdist = { url = "https://files.pythonhosted.org/packages/e0/5d/e617081d32b97dac54f8df3a1fd4620337dae7c00dc4e8bbcf0b95b8f3c2/aikernel-0.1.34.tar.gz", hash = "sha256:69151b20389d93a4933bfb997bbf827eb71876c31ddc774f8958f90e63d60431", size = 71906 }
12
+ sdist = { url = "https://files.pythonhosted.org/packages/24/4a/f492fa7b233c46e740a27ef9f26d32ec29594f52bb191f13ed102a130cc0/aikernel-0.1.35.tar.gz", hash = "sha256:a067ea03fd54889b7b9df3f1e3778642e0ec8ab8487d2c12ae3d62c68ea7193c", size = 71823 }
14
13
  wheels = [
15
- { url = "https://files.pythonhosted.org/packages/8c/72/e82c42dba111888a000a30ebbca217de9fd520f5d88b5388cc60c6b5e08d/aikernel-0.1.34-py3-none-any.whl", hash = "sha256:26e5f6fe039b14755a92d7c17d71e22290b596f39620bdae67208998511e1b88", size = 9284 },
14
+ { url = "https://files.pythonhosted.org/packages/24/ae/b2aaff01f30797df73f1505163d5034b6f73c337851ae4aefeb311d29022/aikernel-0.1.35-py3-none-any.whl", hash = "sha256:a159a95cc5d4b6eebd2e2f9a74a17ae303006dd733d00716d6df39087fa644d8", size = 9274 },
16
15
  ]
17
16
 
18
17
  [[package]]
@@ -346,7 +345,7 @@ wheels = [
346
345
 
347
346
  [[package]]
348
347
  name = "goose-py"
349
- version = "0.11.14"
348
+ version = "0.11.15"
350
349
  source = { editable = "." }
351
350
  dependencies = [
352
351
  { name = "aikernel" },
@@ -366,7 +365,7 @@ dev = [
366
365
 
367
366
  [package.metadata]
368
367
  requires-dist = [
369
- { name = "aikernel", specifier = "==0.1.34" },
368
+ { name = "aikernel", specifier = "==0.1.35" },
370
369
  { name = "jsonpath-ng", specifier = ">=1.7.0" },
371
370
  { name = "pydantic", specifier = ">=2.8.2" },
372
371
  ]
@@ -654,7 +653,7 @@ wheels = [
654
653
 
655
654
  [[package]]
656
655
  name = "litellm"
657
- version = "1.63.2"
656
+ version = "1.64.1"
658
657
  source = { registry = "https://pypi.org/simple" }
659
658
  dependencies = [
660
659
  { name = "aiohttp" },
@@ -669,9 +668,9 @@ dependencies = [
669
668
  { name = "tiktoken" },
670
669
  { name = "tokenizers" },
671
670
  ]
672
- sdist = { url = "https://files.pythonhosted.org/packages/6a/78/ff6d5439168bce504fb28bad1bc6f596dd76fbfacbc330367a1c08a250a7/litellm-1.63.2.tar.gz", hash = "sha256:cf9ab581198a12a5584571e0b2ad83869c7621684936ed26d7bf59015d0a8d2b", size = 6587491 }
671
+ sdist = { url = "https://files.pythonhosted.org/packages/8f/2a/7a4d04aa0edec4c583acb78657043569741dcc4a5da6aa381ee867bacd94/litellm-1.64.1.tar.gz", hash = "sha256:73bac891b1fbd77ada4d691e967657c53f48c207d9c3ba414ad0ffe3e7ec8f89", size = 6650473 }
673
672
  wheels = [
674
- { url = "https://files.pythonhosted.org/packages/d9/50/5b8a1ad1ca3851b979b2fbd1a66d6f458dc5edd478101a06a8becff1df2d/litellm-1.63.2-py3-none-any.whl", hash = "sha256:1224e15b351a0f194bd5d908ccf4ff5d0e16b583f120519a5e68158bd44da071", size = 6898192 },
673
+ { url = "https://files.pythonhosted.org/packages/88/3e/37577b8741e4afba5d3e290ba7da3258bb738990f3c1d91196b4ca8f406a/litellm-1.64.1-py3-none-any.whl", hash = "sha256:bd7cb4977dee121551f0322d48b4e51e9a508fc2ac2273e7c5405ca69354e352", size = 6974769 },
675
674
  ]
676
675
 
677
676
  [[package]]
@@ -783,7 +782,7 @@ wheels = [
783
782
 
784
783
  [[package]]
785
784
  name = "openai"
786
- version = "1.61.0"
785
+ version = "1.69.0"
787
786
  source = { registry = "https://pypi.org/simple" }
788
787
  dependencies = [
789
788
  { name = "anyio" },
@@ -795,9 +794,9 @@ dependencies = [
795
794
  { name = "tqdm" },
796
795
  { name = "typing-extensions" },
797
796
  ]
798
- sdist = { url = "https://files.pythonhosted.org/packages/32/2a/b3fa8790be17d632f59d4f50257b909a3f669036e5195c1ae55737274620/openai-1.61.0.tar.gz", hash = "sha256:216f325a24ed8578e929b0f1b3fb2052165f3b04b0461818adaa51aa29c71f8a", size = 350174 }
797
+ sdist = { url = "https://files.pythonhosted.org/packages/ab/99/d164612528dfb7a9b19330623daded608e75d25823b01f81e0376eb388a4/openai-1.69.0.tar.gz", hash = "sha256:7b8a10a8ff77e1ae827e5e4c8480410af2070fb68bc973d6c994cf8218f1f98d", size = 409579 }
799
798
  wheels = [
800
- { url = "https://files.pythonhosted.org/packages/93/76/70c5ad6612b3e4c89fa520266bbf2430a89cae8bd87c1e2284698af5927e/openai-1.61.0-py3-none-any.whl", hash = "sha256:e8c512c0743accbdbe77f3429a1490d862f8352045de8dc81969301eb4a4f666", size = 460623 },
799
+ { url = "https://files.pythonhosted.org/packages/b8/a4/28113be8b7bc937656aaf7b06feff7e9a5eb742ee4e405c6c48c30d879c4/openai-1.69.0-py3-none-any.whl", hash = "sha256:73c4b2ddfd050060f8d93c70367189bd891e70a5adb6d69c04c3571f4fea5627", size = 599068 },
801
800
  ]
802
801
 
803
802
  [[package]]
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