| 67 | } |
| 68 | |
| 69 | type bedrockProvider struct { |
| 70 | llm *bedrock.LLM |
| 71 | models pconfig.ModelsConfig |
| 72 | providerName provider.ProviderName |
| 73 | providerConfig *pconfig.ProviderConfig |
| 74 | |
| 75 | toolCallIDTemplate string |
| 76 | toolCallIDTemplateOnce sync.Once |
| 77 | toolCallIDTemplateErr error |
| 78 | } |
| 79 | |
| 80 | func New( |
| 81 | cfg *config.Config, |
nothing calls this directly
no outgoing calls
no test coverage detected