owlmind 0.1.5__tar.gz → 0.1.5.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 (23) hide show
  1. {owlmind-0.1.5/src/owlmind.egg-info → owlmind-0.1.5.1}/PKG-INFO +1 -1
  2. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/__init__.py +1 -1
  3. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/graphk/pipeline.py +1 -1
  4. {owlmind-0.1.5 → owlmind-0.1.5.1/src/owlmind.egg-info}/PKG-INFO +1 -1
  5. {owlmind-0.1.5 → owlmind-0.1.5.1}/LICENSE.txt +0 -0
  6. {owlmind-0.1.5 → owlmind-0.1.5.1}/README.md +0 -0
  7. {owlmind-0.1.5 → owlmind-0.1.5.1}/pyproject.toml +0 -0
  8. {owlmind-0.1.5 → owlmind-0.1.5.1}/setup.cfg +0 -0
  9. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/cli.py +0 -0
  10. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/core/__init__.py +0 -0
  11. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/core/component.py +0 -0
  12. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/graphk/__init__.py +0 -0
  13. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/graphk/node.py +0 -0
  14. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/models/__init__.py +0 -0
  15. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind/models/ollama.py +0 -0
  16. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind.egg-info/SOURCES.txt +0 -0
  17. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind.egg-info/dependency_links.txt +0 -0
  18. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind.egg-info/entry_points.txt +0 -0
  19. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind.egg-info/requires.txt +0 -0
  20. {owlmind-0.1.5 → owlmind-0.1.5.1}/src/owlmind.egg-info/top_level.txt +0 -0
  21. {owlmind-0.1.5 → owlmind-0.1.5.1}/tests/test_core_1.py +0 -0
  22. {owlmind-0.1.5 → owlmind-0.1.5.1}/tests/test_models_1.py +0 -0
  23. {owlmind-0.1.5 → owlmind-0.1.5.1}/tests/test_pipeline_1.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: owlmind
3
- Version: 0.1.5
3
+ Version: 0.1.5.1
4
4
  Summary: Experimentation environment and pedagogical sandbox for studying generative intelligence systems.
5
5
  Author-email: Fernando Koch <your-email@example.com>
6
6
  License: MIT
@@ -2,4 +2,4 @@
2
2
  OwlMind Framework - experimentation environment for Generative Intelligence Systems.
3
3
  """
4
4
 
5
- __version__ = "0.1.5"
5
+ __version__ = "0.1.5.1"
@@ -13,7 +13,7 @@
13
13
 
14
14
 
15
15
  from abc import ABC, abstractmethod
16
- from typing import Union, Callable, List, Any, Iterator
16
+ from typing import Union, Callable, List, Any, Iterator, Iterable
17
17
  from .node import Node
18
18
 
19
19
  class Pipeline(Node):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: owlmind
3
- Version: 0.1.5
3
+ Version: 0.1.5.1
4
4
  Summary: Experimentation environment and pedagogical sandbox for studying generative intelligence systems.
5
5
  Author-email: Fernando Koch <your-email@example.com>
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes