revert original folder

This commit is contained in:
Marc Klingen
2025-05-18 19:42:13 +02:00
parent 66fea9e2ee
commit 9511c189bd
2 changed files with 8 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ import os
from dotenv import load_dotenv from dotenv import load_dotenv
from loguru import logger from loguru import logger
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import OTLPSpanExporter
from pipecat.adapters.schemas.function_schema import FunctionSchema from pipecat.adapters.schemas.function_schema import FunctionSchema
from pipecat.adapters.schemas.tools_schema import ToolsSchema from pipecat.adapters.schemas.tools_schema import ToolsSchema
@@ -35,7 +35,10 @@ IS_TRACING_ENABLED = bool(os.getenv("ENABLE_TRACING"))
# Initialize tracing if enabled # Initialize tracing if enabled
if IS_TRACING_ENABLED: if IS_TRACING_ENABLED:
# Create the exporter # Create the exporter
otlp_exporter = OTLPSpanExporter() otlp_exporter = OTLPSpanExporter(
endpoint=os.getenv("OTEL_EXPORTER_OTLP_ENDPOINT", "http://localhost:4317"),
insecure=True,
)
# Set up tracing with the exporter # Set up tracing with the exporter
setup_tracing( setup_tracing(

View File

@@ -1,6 +1,6 @@
fastapi fastapi
uvicorn uvicorn
python-dotenv python-dotenv
git+https://github.com/pipecat-ai/pipecat.git@main#egg=pipecat-ai[webrtc,silero,cartesia,deepgram,openai,tracing] pipecat-ai[webrtc,silero,cartesia,deepgram,openai,tracing]
git+https://github.com/pipecat-ai/small-webrtc-prebuilt.git@main#egg=pipecat-ai-small-webrtc-prebuilt pipecat-ai-small-webrtc-prebuilt
opentelemetry-exporter-otlp-proto-http opentelemetry-exporter-otlp-proto-grpc