veri-agents-common 0.1.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.
@@ -0,0 +1,186 @@
1
+ .turbo
2
+
3
+ # go
4
+ vendor
5
+
6
+ # js
7
+ dist
8
+ out-tsc
9
+ node_modules
10
+
11
+ .idea
12
+ *.iml
13
+ .DS_Store
14
+
15
+
16
+ # Byte-compiled / optimized / DLL files
17
+ __pycache__/
18
+ *.py[cod]
19
+ *$py.class
20
+
21
+ # C extensions
22
+ *.so
23
+
24
+ # Distribution / packaging
25
+ .Python
26
+ build/
27
+ develop-eggs/
28
+ dist/
29
+ downloads/
30
+ eggs/
31
+ .eggs/
32
+ lib/
33
+ lib64/
34
+ parts/
35
+ sdist/
36
+ var/
37
+ wheels/
38
+ share/python-wheels/
39
+ *.egg-info/
40
+ .installed.cfg
41
+ *.egg
42
+ MANIFEST
43
+
44
+ # PyInstaller
45
+ # Usually these files are written by a python script from a template
46
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
47
+ *.manifest
48
+ *.spec
49
+
50
+ # Installer logs
51
+ pip-log.txt
52
+ pip-delete-this-directory.txt
53
+
54
+ # Unit test / coverage reports
55
+ htmlcov/
56
+ .tox/
57
+ .nox/
58
+ .coverage
59
+ .coverage.*
60
+ .cache
61
+ nosetests.xml
62
+ coverage.xml
63
+ *.cover
64
+ *.py,cover
65
+ .hypothesis/
66
+ .pytest_cache/
67
+ cover/
68
+
69
+ # Translations
70
+ *.mo
71
+ *.pot
72
+
73
+ # Django stuff:
74
+ *.log
75
+ local_settings.py
76
+ db.sqlite3
77
+ db.sqlite3-journal
78
+
79
+ # Flask stuff:
80
+ instance/
81
+ .webassets-cache
82
+
83
+ # Scrapy stuff:
84
+ .scrapy
85
+
86
+ # Sphinx documentation
87
+ docs/_build/
88
+
89
+ # PyBuilder
90
+ .pybuilder/
91
+ target/
92
+
93
+ # Jupyter Notebook
94
+ .ipynb_checkpoints
95
+
96
+ # IPython
97
+ profile_default/
98
+ ipython_config.py
99
+
100
+ # pyenv
101
+ # For a library or package, you might want to ignore these files since the code is
102
+ # intended to run in multiple environments; otherwise, check them in:
103
+ # .python-version
104
+
105
+ # pipenv
106
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
107
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
108
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
109
+ # install all needed dependencies.
110
+ #Pipfile.lock
111
+
112
+ # UV
113
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
114
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
115
+ # commonly ignored for libraries.
116
+ #uv.lock
117
+
118
+ # poetry
119
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
120
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
121
+ # commonly ignored for libraries.
122
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
123
+ #poetry.lock
124
+
125
+ # pdm
126
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
127
+ #pdm.lock
128
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
129
+ # in version control.
130
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
131
+ .pdm.toml
132
+ .pdm-python
133
+ .pdm-build/
134
+
135
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
136
+ __pypackages__/
137
+
138
+ # Celery stuff
139
+ celerybeat-schedule
140
+ celerybeat.pid
141
+
142
+ # SageMath parsed files
143
+ *.sage.py
144
+
145
+ # Environments
146
+ .env
147
+ .venv
148
+ env/
149
+ venv/
150
+ ENV/
151
+ env.bak/
152
+ venv.bak/
153
+
154
+ # Spyder project settings
155
+ .spyderproject
156
+ .spyproject
157
+
158
+ # Rope project settings
159
+ .ropeproject
160
+
161
+ # mkdocs documentation
162
+ /site
163
+
164
+ # mypy
165
+ .mypy_cache/
166
+ .dmypy.json
167
+ dmypy.json
168
+
169
+ # Pyre type checker
170
+ .pyre/
171
+
172
+ # pytype static type analyzer
173
+ .pytype/
174
+
175
+ # Cython debug symbols
176
+ cython_debug/
177
+
178
+ # PyCharm
179
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
180
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
181
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
182
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
183
+ #.idea/
184
+
185
+ # PyPI configuration file
186
+ .pypirc
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: veri-agents-common
3
+ Version: 0.1.1
4
+ Summary: Add your description here
5
+ Author-email: Markus Toman <mtoman@veritone.com>, Teo Boley <tboley@veritone.com>
6
+ Requires-Python: >=3.12
7
+ Requires-Dist: langchain-core<0.4.0,>=0.3.0
8
+ Requires-Dist: langchain<0.4.0,>=0.3.0
9
+ Requires-Dist: pydantic>=2.11.3
10
+ Provides-Extra: docling
11
+ Requires-Dist: docling<3.0.0,>=2.15.1; extra == 'docling'
12
+ Requires-Dist: langchain-docling<0.3.0,>=0.2.0; extra == 'docling'
13
+ Provides-Extra: fastapi
14
+ Requires-Dist: fastapi[standard]<1.0.0,>=0.112.2; extra == 'fastapi'
15
+ Provides-Extra: fastembed
16
+ Requires-Dist: fastembed<1.0.0,>=0.4.1; extra == 'fastembed'
17
+ Provides-Extra: graphql
18
+ Requires-Dist: graphql-core>=3.2.4; extra == 'graphql'
19
+ Provides-Extra: langfuse
20
+ Requires-Dist: langfuse<3.0.0,>=2.47.0; extra == 'langfuse'
21
+ Provides-Extra: langgraph
22
+ Requires-Dist: langgraph<0.4.0,>=0.3.0; extra == 'langgraph'
23
+ Provides-Extra: qdrant
24
+ Requires-Dist: langchain-qdrant<1.0.0,>=0.1.4; extra == 'qdrant'
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@veritone/agents-common",
3
+ "version": "0.0.0",
4
+ "description": "",
5
+ "type": "module",
6
+ "scripts": {
7
+ "typecheck": "uv run pyright",
8
+ "format": "uv run ruff format",
9
+ "lint": "echo \"Warn: no lint specified\" && exit 0",
10
+ "test": "echo \"Warn: no test specified\" && exit 0"
11
+ },
12
+ "author": "",
13
+ "dependencies": {}
14
+ }
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "veri-agents-common"
3
+ version = "0.1.1"
4
+ description = "Add your description here"
5
+ authors = [
6
+ {name = "Markus Toman", email = "mtoman@veritone.com"},
7
+ {name = "Teo Boley", email = "tboley@veritone.com"},
8
+ ]
9
+ requires-python = ">=3.12"
10
+ dependencies = [
11
+ "langchain<0.4.0,>=0.3.0",
12
+ "langchain-core<0.4.0,>=0.3.0",
13
+ "pydantic>=2.11.3",
14
+ ]
15
+
16
+ [project.optional-dependencies]
17
+ langgraph = ["langgraph<0.4.0,>=0.3.0"]
18
+ langfuse = ["langfuse<3.0.0,>=2.47.0"]
19
+ fastapi = ["fastapi[standard]<1.0.0,>=0.112.2"]
20
+ qdrant = ["langchain-qdrant<1.0.0,>=0.1.4"]
21
+ docling = [
22
+ "langchain-docling>=0.2.0,<0.3.0",
23
+ "docling<3.0.0,>=2.15.1"
24
+ ]
25
+ fastembed = [
26
+ "fastembed>=0.4.1,<1.0.0"
27
+ ]
28
+ graphql = [
29
+ "graphql-core>=3.2.4",
30
+ ]
31
+
32
+ [build-system]
33
+ requires = ["hatchling"]
34
+ build-backend = "hatchling.build"