mirror of
https://github.com/katanemo/plano.git
synced 2026-05-08 15:22:43 +02:00
fix bug in jinja template for tracing
This commit is contained in:
parent
0ed88def8f
commit
3e9327cf36
2 changed files with 2 additions and 4 deletions
|
|
@ -184,7 +184,7 @@ static_resources:
|
|||
- name: envoy.filters.network.http_connection_manager
|
||||
typed_config:
|
||||
"@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
|
||||
{% if arch_tracing.random_sampling > 0 %}
|
||||
{% if "random_sampling" in arch_tracing and arch_tracing["random_sampling"] > 0 %}
|
||||
generate_request_id: true
|
||||
tracing:
|
||||
provider:
|
||||
|
|
|
|||
|
|
@ -15,8 +15,6 @@ services:
|
|||
context: ../../chatbot_ui
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "18090:8080"
|
||||
- "18080:8080"
|
||||
environment:
|
||||
- OPENAI_API_KEY=${OPENAI_API_KEY:?error}
|
||||
- MISTRAL_API_KEY=${MISTRAL_API_KEY:?error}
|
||||
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue