We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3c93f commit ee7ef34Copy full SHA for ee7ef34
docs/tool/providers/custom_provider.md
@@ -15,8 +15,8 @@ from docbinder_oss.services.base_class import ServiceConfig
15
class MyProviderServiceConfig(ServiceConfig):
16
type: str = "my_provider"
17
name: str
18
- api_key: str
19
# Add any other provider-specific fields here
+ api_key: str
20
```
21
22
- `type` must be unique and match the provider’s identifier.
@@ -94,8 +94,8 @@ Add your provider’s configuration to `~/.config/docbinder/config.yaml`:
94
providers:
95
- type: my_provider
96
name: my_instance
97
- api_key: <your-api-key>
98
# Add other required fields
+ api_key: <your-api-key>
99
100
101
---
0 commit comments