Skip to content

Commit 28d7e2b

Browse files
karthikscale3obinnascale3obinnaokaforalizenhom
authored
Release 3.3.0 (#395)
* remove logs * remove requirements * Bump version * Squash * Support xAI (#387) * support xai * fix * minor * Obinna/s3 en 2723 add bedrock instrumentation (#390) * add aws bedrock intregration * add bedrock examples and update version * run bedrock example --------- Co-authored-by: Obinna Okafor <[email protected]> * add bedrock to supported integrations * Switch default exporter to http exporter (#394) * Revert back to Langtrace Exporter (#385) * fix * Bump version * Release 3.1.13 (#388) * remove logs * remove requirements * Bump version * Squash * Support xAI (#387) * support xai * fix * Release (#389) * remove logs * remove requirements * Bump version * Squash * Support xAI (#387) * support xai * fix * minor * Obinna/s3 en 1111 bedrock release (#393) * Support xAI (#387) * support xai * fix * Obinna/s3 en 2723 add bedrock instrumentation (#390) * add aws bedrock intregration * add bedrock examples and update version * run bedrock example --------- Co-authored-by: Obinna Okafor <[email protected]> * add bedrock to supported integrations --------- Co-authored-by: Karthik Kalyanaraman <[email protected]> Co-authored-by: Obinna Okafor <[email protected]> * bump version --------- Co-authored-by: Ali Waleed <[email protected]> Co-authored-by: obinnascale3 <[email protected]> Co-authored-by: Obinna Okafor <[email protected]> * switch to http exporter --------- Co-authored-by: obinnascale3 <[email protected]> Co-authored-by: Obinna Okafor <[email protected]> Co-authored-by: Ali Waleed <[email protected]>
1 parent 9f2f792 commit 28d7e2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/langtrace_python_sdk/langtrace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def get_exporter(config: LangtraceConfig, host: str):
151151
headers = get_headers(config)
152152
host = f"{host}/api/trace" if host == LANGTRACE_REMOTE_URL else host
153153
if "http" in host.lower() or "https" in host.lower():
154-
return LangTraceExporter(host, config.api_key, config.disable_logging)
154+
return HTTPExporter(endpoint=host, headers=headers)
155155
else:
156156
return GRPCExporter(endpoint=host, headers=headers)
157157

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.2.0"
1+
__version__ = "3.3.0"

0 commit comments

Comments
 (0)