synth-ai 0.0.0.dev3__tar.gz → 0.0.0.dev4__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.

Potentially problematic release.


This version of synth-ai might be problematic. Click here for more details.

@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: synth-ai
3
- Version: 0.0.0.dev3
3
+ Version: 0.0.0.dev4
4
4
  Summary: Software for aiding the best and multiplying the will.
5
+ Home-page: https://github.com/synth-laboratories/synth-ai
6
+ Author: Josh Purtell
5
7
  Author-email: Josh Purtell <josh@usesynth.ai>
6
8
  License: MIT License
7
9
 
@@ -42,8 +44,12 @@ Requires-Dist: google>=3.0.0
42
44
  Requires-Dist: google-generativeai>=0.8.1
43
45
  Requires-Dist: together>=1.2.12
44
46
  Requires-Dist: langfuse>=2.56.1
45
- Requires-Dist: synth-sdk>=0.3.0
47
+ Requires-Dist: synth-sdk==0.3.1.dev3
46
48
  Requires-Dist: datasets>=3.2.0
49
+ Requires-Dist: groq>=0.18.0
50
+ Requires-Dist: pytest-timeout>=2.3.1
51
+ Dynamic: author
52
+ Dynamic: home-page
47
53
 
48
54
  AI Infra used by the Synth AI Team
49
55
  ```
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "synth-ai"
3
- version = "0.0.0.dev3"
3
+ version = "0.0.0.dev4"
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" }]
@@ -21,8 +21,10 @@ dependencies = [
21
21
  "google-generativeai>=0.8.1",
22
22
  "together>=1.2.12",
23
23
  "langfuse>=2.56.1",
24
- "synth-sdk>=0.3.0",
24
+ "synth-sdk==0.3.1.dev3",
25
25
  "datasets>=3.2.0",
26
+ "groq>=0.18.0",
27
+ "pytest-timeout>=2.3.1",
26
28
  ]
27
29
  requires-python = ">=3.10"
28
30
 
@@ -0,0 +1,24 @@
1
+ from setuptools import find_packages, setup
2
+
3
+ setup(
4
+ name="synth-ai",
5
+ version="0.0.0.dev4",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "openai",
9
+ "pydantic>=2.9.2",
10
+ "diskcache",
11
+ "backoff>=2.2.1",
12
+ "anthropic>=0.34.2",
13
+ "google>=3.0.0",
14
+ "google-generativeai>=0.8.1",
15
+ "together>=1.2.12",
16
+ ],
17
+ author="Josh Purtell",
18
+ author_email="josh@usesynth.com",
19
+ description="",
20
+ long_description=open("README.md").read(),
21
+ long_description_content_type="text/markdown",
22
+ url="https://github.com/synth-laboratories/synth-ai",
23
+ license="MIT",
24
+ )
@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: synth-ai
3
- Version: 0.0.0.dev3
3
+ Version: 0.0.0.dev4
4
4
  Summary: Software for aiding the best and multiplying the will.
5
+ Home-page: https://github.com/synth-laboratories/synth-ai
6
+ Author: Josh Purtell
5
7
  Author-email: Josh Purtell <josh@usesynth.ai>
6
8
  License: MIT License
7
9
 
@@ -42,8 +44,12 @@ Requires-Dist: google>=3.0.0
42
44
  Requires-Dist: google-generativeai>=0.8.1
43
45
  Requires-Dist: together>=1.2.12
44
46
  Requires-Dist: langfuse>=2.56.1
45
- Requires-Dist: synth-sdk>=0.3.0
47
+ Requires-Dist: synth-sdk==0.3.1.dev3
46
48
  Requires-Dist: datasets>=3.2.0
49
+ Requires-Dist: groq>=0.18.0
50
+ Requires-Dist: pytest-timeout>=2.3.1
51
+ Dynamic: author
52
+ Dynamic: home-page
47
53
 
48
54
  AI Infra used by the Synth AI Team
49
55
  ```
@@ -1,6 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
+ setup.py
4
5
  synth_ai/__init__.py
5
6
  synth_ai.egg-info/PKG-INFO
6
7
  synth_ai.egg-info/SOURCES.txt
@@ -7,5 +7,7 @@ google>=3.0.0
7
7
  google-generativeai>=0.8.1
8
8
  together>=1.2.12
9
9
  langfuse>=2.56.1
10
- synth-sdk>=0.3.0
10
+ synth-sdk==0.3.1.dev3
11
11
  datasets>=3.2.0
12
+ groq>=0.18.0
13
+ pytest-timeout>=2.3.1
File without changes
File without changes
File without changes