synth-ai 0.1.1__tar.gz → 0.1.3__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 (55) hide show
  1. {synth_ai-0.1.1/synth_ai.egg-info → synth_ai-0.1.3}/PKG-INFO +1 -1
  2. {synth_ai-0.1.1 → synth_ai-0.1.3}/pyproject.toml +7 -1
  3. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/core/vendor_clients.py +5 -2
  4. {synth_ai-0.1.1 → synth_ai-0.1.3/synth_ai.egg-info}/PKG-INFO +1 -1
  5. {synth_ai-0.1.1 → synth_ai-0.1.3}/LICENSE +0 -0
  6. {synth_ai-0.1.1 → synth_ai-0.1.3}/README.md +0 -0
  7. {synth_ai-0.1.1 → synth_ai-0.1.3}/setup.cfg +0 -0
  8. {synth_ai-0.1.1 → synth_ai-0.1.3}/setup.py +0 -0
  9. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/__init__.py +0 -0
  10. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/__init__.py +0 -0
  11. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/__init__.py +0 -0
  12. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/__init__.py +0 -0
  13. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/constants.py +0 -0
  14. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/dbs.py +0 -0
  15. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/ephemeral.py +0 -0
  16. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/handler.py +0 -0
  17. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/initialize.py +0 -0
  18. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/caching/persistent.py +0 -0
  19. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/config.py +0 -0
  20. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/constants.py +0 -0
  21. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/core/__init__.py +0 -0
  22. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/core/all.py +0 -0
  23. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/core/exceptions.py +0 -0
  24. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/core/main.py +0 -0
  25. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/cost/__init__.py +0 -0
  26. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/cost/monitor.py +0 -0
  27. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/cost/statefulness.py +0 -0
  28. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/structured_outputs/__init__.py +0 -0
  29. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/structured_outputs/handler.py +0 -0
  30. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/structured_outputs/inject.py +0 -0
  31. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/structured_outputs/rehabilitate.py +0 -0
  32. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/tools/base.py +0 -0
  33. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/__init__.py +0 -0
  34. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/base.py +0 -0
  35. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/core/__init__.py +0 -0
  36. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/core/anthropic_api.py +0 -0
  37. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/core/gemini_api.py +0 -0
  38. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/core/mistral_api.py +0 -0
  39. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/core/openai_api.py +0 -0
  40. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/local/__init__.py +0 -0
  41. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/local/ollama.py +0 -0
  42. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/openai_standard.py +0 -0
  43. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/retries.py +0 -0
  44. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/supported/__init__.py +0 -0
  45. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/supported/deepseek.py +0 -0
  46. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/supported/groq.py +0 -0
  47. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/supported/ollama.py +0 -0
  48. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai/zyk/lms/vendors/supported/together.py +0 -0
  49. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai.egg-info/SOURCES.txt +0 -0
  50. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai.egg-info/dependency_links.txt +0 -0
  51. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai.egg-info/requires.txt +0 -0
  52. {synth_ai-0.1.1 → synth_ai-0.1.3}/synth_ai.egg-info/top_level.txt +0 -0
  53. {synth_ai-0.1.1 → synth_ai-0.1.3}/tests/test_agent.py +0 -0
  54. {synth_ai-0.1.1 → synth_ai-0.1.3}/tests/test_recursive_structured_outputs.py +0 -0
  55. {synth_ai-0.1.1 → synth_ai-0.1.3}/tests/test_structured_outputs.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: synth-ai
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Software for aiding the best and multiplying the will.
5
5
  Home-page: https://github.com/synth-laboratories/synth-ai
6
6
  Author: Josh Purtell
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "synth-ai"
3
- version = "0.1.1"
3
+ version = "0.1.3"
4
4
  description = "Software for aiding the best and multiplying the will."
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Josh Purtell", email = "josh@usesynth.ai" }]
@@ -44,3 +44,9 @@ include = ["synth_ai*"]
44
44
  # Explicitly exclude test directories and files
45
45
  [tool.setuptools.exclude-package-data]
46
46
  "*" = ["tests/*", "public_tests/*", "private_tests/*", "dev/*"]
47
+
48
+ [tool.uv]
49
+ dev-dependencies = [
50
+ "build>=1.2.2.post1",
51
+ "twine>=6.1.0",
52
+ ]
@@ -44,6 +44,9 @@ groq_naming_regexes: List[Pattern] = [
44
44
  re.compile(r"^llama-3.2-3b-preview$"),
45
45
  re.compile(r"^llama-3.2-11b-vision-preview$"),
46
46
  re.compile(r"^llama-3.2-90b-vision-preview$"),
47
+ re.compile(r"^meta-llama/llama-4-scout-17b-16e-instruct$"),
48
+ re.compile(r"^meta-llama/llama-4-maverick-17b-128e-instruct$"),
49
+ re.compile(r"^qwen/qwen3-32b$"),
47
50
  ]
48
51
 
49
52
  mistral_naming_regexes: List[Pattern] = [
@@ -75,11 +78,11 @@ def get_client(
75
78
  return GeminiClient()
76
79
  elif any(regex.match(model_name) for regex in deepseek_naming_regexes):
77
80
  return DeepSeekClient()
78
- elif any(regex.match(model_name) for regex in together_naming_regexes):
79
- return TogetherClient()
80
81
  elif any(regex.match(model_name) for regex in groq_naming_regexes):
81
82
  return GroqAPI()
82
83
  elif any(regex.match(model_name) for regex in mistral_naming_regexes):
83
84
  return MistralAPI()
85
+ elif any(regex.match(model_name) for regex in together_naming_regexes):
86
+ return TogetherClient()
84
87
  else:
85
88
  raise ValueError(f"Invalid model name: {model_name}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: synth-ai
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Software for aiding the best and multiplying the will.
5
5
  Home-page: https://github.com/synth-laboratories/synth-ai
6
6
  Author: Josh Purtell
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes