|
1 | 1 | parameters:
|
2 |
| - app.rapid_api_key: '%env(resolve:RAPID_API_KEY)%' |
3 |
| - app.genai_api_key: '%env(resolve:GENAI_API_KEY)%' |
4 |
| - app.genai_base_url: '%env(resolve:GENAI_BASE_URL)%' |
5 |
| - app.genai_model: '%env(resolve:GENAI_MODEL)%' |
| 2 | + # General services |
| 3 | + rapid_api.api_key: '%env(resolve:RAPID_API_KEY)%' |
| 4 | + |
| 5 | + # GenAI/LLM Integration |
| 6 | + genai.api_key: '%env(resolve:GENAI_API_KEY)%' |
| 7 | + genai.base_url: '%env(resolve:GENAI_BASE_URL)%' |
| 8 | + genai.model: '%env(resolve:GENAI_MODEL)%' |
6 | 9 |
|
7 | 10 | services:
|
8 | 11 | # default configuration for services in *this* file
|
@@ -36,25 +39,25 @@ services:
|
36 | 39 | # Yahoo Finance API Service using the client
|
37 | 40 | App\Service\YahooFinanceService:
|
38 | 41 | arguments:
|
39 |
| - $rapidApiKey: '%app.rapid_api_key%' |
40 |
| - $useMockData: '%env(default:false:bool:USE_MOCK_DATA)%' |
| 42 | + $rapidApiKey: '%rapid_api.api_key%' |
| 43 | + $useMockData: '%env(default::bool:USE_MOCK_DATA)%' |
41 | 44 |
|
42 | 45 | # Stock Clients Factory Configuration
|
43 | 46 | App\Service\ApiClient\StockClientsFactory:
|
44 | 47 | arguments:
|
45 |
| - $useMockData: '%env(default:false:bool:USE_MOCK_DATA)%' |
| 48 | + $useMockData: '%env(default::bool:USE_MOCK_DATA)%' |
46 | 49 |
|
47 | 50 | # LinkedIn Client Factory Configuration
|
48 | 51 | App\Service\ApiClient\LinkedInClientFactory:
|
49 | 52 | arguments:
|
50 |
| - $useMockData: '%env(default:false:bool:USE_MOCK_DATA)%' |
| 53 | + $useMockData: '%env(default::bool:USE_MOCK_DATA)%' |
51 | 54 |
|
52 | 55 | # LLM Client Factory Configuration
|
53 | 56 | App\Service\LlmClientFactory:
|
54 | 57 | arguments:
|
55 |
| - $apiKey: '%app.genai_api_key%' |
56 |
| - $baseUrl: '%app.genai_base_url%' |
57 |
| - $model: '%app.genai_model%' |
| 58 | + $apiKey: '%genai.api_key%' |
| 59 | + $baseUrl: '%genai.base_url%' |
| 60 | + $model: '%genai.model%' |
58 | 61 |
|
59 | 62 | # Neuron AI Service Configuration
|
60 | 63 | App\Service\NeuronAiService:
|
|
0 commit comments