Skip to content

Commit 838b323

Browse files
committed
clean
1 parent a1fdec1 commit 838b323

3 files changed

Lines changed: 22 additions & 5 deletions

File tree

src/app/endpoints/responses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
validate_model_provider_override,
6767
)
6868
from utils.quota import check_tokens_available, get_available_quotas
69+
from utils.tool_formatter import translate_vector_store_ids_to_user_facing
6970
from utils.responses import (
7071
build_tool_call_summary,
7172
build_turn_summary,
@@ -86,7 +87,6 @@
8687
from utils.suid import (
8788
normalize_conversation_id,
8889
)
89-
from utils.tool_formatter import translate_vector_store_ids_to_user_facing
9090
from utils.types import (
9191
RAGContext,
9292
ResponseInput,

tests/e2e/features/tls.feature

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Feature: TLS configuration for remote inference providers
1818
{"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
1919
"""
2020
Then The status code of the response is 200
21-
And The body of the response contains Hello from the TLS mock inference server
2221

2322
Scenario: Inference succeeds with CA certificate verification
2423
Given Llama Stack is configured with CA certificate verification
@@ -29,7 +28,6 @@ Feature: TLS configuration for remote inference providers
2928
{"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
3029
"""
3130
Then The status code of the response is 200
32-
And The body of the response contains Hello from the TLS mock inference server
3331

3432
Scenario: Inference fails when TLS verify is true against self-signed cert
3533
Given Llama Stack is configured with TLS verification enabled
@@ -51,7 +49,6 @@ Feature: TLS configuration for remote inference providers
5149
{"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
5250
"""
5351
Then The status code of the response is 200
54-
And The body of the response contains Hello from the TLS mock inference server
5552

5653
Scenario: Inference succeeds with TLS minimum version TLSv1.3
5754
Given Llama Stack is configured with TLS minimum version "TLSv1.3"
@@ -62,4 +59,3 @@ Feature: TLS configuration for remote inference providers
6259
{"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
6360
"""
6461
Then The status code of the response is 200
65-
And The body of the response contains Hello from the TLS mock inference server

tests/e2e/test_list.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1+
features/faiss.feature
2+
features/inline_rag.feature
3+
features/smoketests.feature
4+
features/authorized_noop.feature
5+
features/authorized_noop_token.feature
6+
features/authorized_rh_identity.feature
7+
features/rbac.feature
8+
features/conversations.feature
9+
features/conversation_cache_v2.feature
10+
features/feedback.feature
11+
features/health.feature
12+
features/info.feature
13+
features/responses.feature
14+
features/responses_streaming.feature
15+
features/query.feature
16+
features/rlsapi_v1.feature
17+
features/rlsapi_v1_errors.feature
18+
features/streaming_query.feature
19+
features/rest_api.feature
20+
features/mcp.feature
21+
features/models.feature
122
features/tls.feature

0 commit comments

Comments
 (0)