|
15 | 15 | get_config_responses: dict[int | str, dict[str, Any]] = { |
16 | 16 | 200: { |
17 | 17 | "name": "foo bar baz", |
18 | | - "llama_stack": {"url": "http://localhost:8321", "api_key": "xyzzy"}, |
| 18 | + "service": { |
| 19 | + "host": "localhost", |
| 20 | + "port": 8080, |
| 21 | + "auth_enabled": False, |
| 22 | + "workers": 1, |
| 23 | + "color_log": True, |
| 24 | + "access_log": True, |
| 25 | + "tls_config": { |
| 26 | + "tls_certificate_path": "config/certificate.crt", |
| 27 | + "tls_key_path": "config/private.key", |
| 28 | + "tls_key_password": None, |
| 29 | + }, |
| 30 | + }, |
| 31 | + "llama_stack": { |
| 32 | + "url": "http://localhost:8321", |
| 33 | + "api_key": "xyzzy", |
| 34 | + "use_as_library_client": False, |
| 35 | + "library_client_config_path": None, |
| 36 | + }, |
| 37 | + "user_data_collection": { |
| 38 | + "feedback_disabled": False, |
| 39 | + "feedback_storage": "/tmp/data/feedback", |
| 40 | + "transcripts_disabled": True, |
| 41 | + "transcripts_storage": None, |
| 42 | + }, |
| 43 | + "mcp_servers": [ |
| 44 | + {"name": "server1", "provider_id": "provider1", "url": "http://url.com:1"}, |
| 45 | + {"name": "server2", "provider_id": "provider2", "url": "http://url.com:2"}, |
| 46 | + {"name": "server3", "provider_id": "provider3", "url": "http://url.com:3"}, |
| 47 | + ], |
19 | 48 | }, |
| 49 | + 503: {"description": "Configuration can not be loaded"}, |
20 | 50 | } |
21 | 51 |
|
22 | 52 |
|
|
0 commit comments