cycls 0.0.2.76__tar.gz → 0.0.2.77__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cycls
3
- Version: 0.0.2.76
3
+ Version: 0.0.2.77
4
4
  Summary: Distribute Intelligence
5
5
  Author: Mohammed J. AlRujayi
6
6
  Author-email: mj@cycls.com
@@ -56,12 +56,12 @@ class AgentRuntime:
56
56
  """Make the runtime callable - delegates to the wrapped function."""
57
57
  return self.func(*args, **kwargs)
58
58
 
59
- def _local(self, port=8080, watch=True):
59
+ def _local(self, port=8080):
60
60
  """Run directly with uvicorn (no Docker)."""
61
61
  print(f"Starting local server at localhost:{port}")
62
62
  self.config.public_path = self.theme
63
63
  _set_prod(self.config, False)
64
- uvicorn.run(web(self.func, self.config), host="0.0.0.0", port=port, reload=watch)
64
+ uvicorn.run(web(self.func, self.config), host="0.0.0.0", port=port)
65
65
 
66
66
  def _runtime(self, prod=False):
67
67
  """Create a Runtime instance for deployment."""
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "cycls"
3
- version = "0.0.2.76"
3
+ version = "0.0.2.77"
4
4
 
5
5
  packages = [{ include = "cycls" }]
6
6
  include = ["cycls/theme/**/*"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes