Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,5 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/
.DS_Store
Empty file added CHANGELOG.md
Empty file.
Empty file added CONTRIBUTING.md
Empty file.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-anthropic/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-anthropic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Anthropic Client OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-anthropic/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-anthropic/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-instrumentation-anthropic/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-anthropic"
description = "OpenTelemetry Anthropic instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-chroma/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-chroma/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Chroma Vector Database OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-chroma/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-chroma/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
23 changes: 23 additions & 0 deletions opentelemetry-instrumentation-chroma/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-chroma"
dynamic = ["version"]
description = "OpenTelemetry Chroma instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-cohere/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-cohere/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Cohere Client OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-cohere/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-cohere/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-instrumentation-cohere/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-cohere"
description = "OpenTelemetry Cohere instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-openai/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-openai/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# OpenAI Client OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-openai/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-openai/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-instrumentation-openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-openai"
description = "OpenTelemetry OpenAI instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-pinecone/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-pinecone/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Pinecone Vector Database OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-pinecone/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-pinecone/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-instrumentation-pinecone/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-pinecone"
description = "OpenTelemetry Pinecone instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-instrumentation-weviate/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-weviate/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Weviate Vector Database OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-instrumentation-weviate/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-instrumentation-weviate/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-instrumentation-weviate/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-instrumentation-weviate"
description = "OpenTelemetry Weviate instrumentation"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
12 changes: 12 additions & 0 deletions opentelemetry-semconv-llm/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
.venv,
.mypy_cache
max-complexity = 10
max-line-length = 88
1 change: 1 addition & 0 deletions opentelemetry-semconv-llm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Weviate Vector Database OpenTelemetry Instrumentation
1 change: 1 addition & 0 deletions opentelemetry-semconv-llm/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 2 additions & 0 deletions opentelemetry-semconv-llm/poetry.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[virtualenvs]
in-project = true
22 changes: 22 additions & 0 deletions opentelemetry-semconv-llm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "opentelemetry-semconv-llm"
description = "OpenTelemetry Semantic Conventions Extension for Large Language Models"
readme = "README.md"
include = ["VERSION", "README.md", "CHANGELOG.md"]
license = "Apache-2.0"
authors = [
"Gal Kleinman <[email protected]>",
"Nir Gazit <[email protected]>",
"Tomer Friedman <[email protected]>"
]
packages = [{ include = "src/opentelemetry" }]

[tool.poetry.dependencies]
python = "^3.9"

[tool.poetry.dev-dependencies]
flake8 = "^6.1.0"
Empty file.
Loading