mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-20 00:11:50 +00:00
fix(terraform): unlink the registry docs entries that 404 on click
The resource and data source links on the provider's registry docs overview page 404 when clicked. They are written as relative paths like ./resources/team, and the registry serves the overview at .../latest/docs with no trailing slash and passes hrefs through unrewritten, so the browser resolves them to .../latest/resources/team. Drops the link markup and keeps both lists and their descriptions. No relative form works in both places: only a docs/-prefixed target resolves correctly on the registry, and that same path is wrong when reading the file on GitHub. The registry sidebar already links every resource and data source for the version being read. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
parent
b946d12ffd
commit
c02399b29d
1 changed files with 11 additions and 11 deletions
|
|
@ -43,22 +43,22 @@ resource "litellm_team" "dev_team" {
|
|||
|
||||
The LiteLLM provider supports the following resources:
|
||||
|
||||
* [`litellm_model`](./resources/model) - Manage LiteLLM model configurations
|
||||
* [`litellm_team`](./resources/team) - Manage teams and their permissions
|
||||
* [`litellm_team_member`](./resources/team_member) - Manage team member configurations
|
||||
* [`litellm_team_member_add`](./resources/team_member_add) - Add members to teams
|
||||
* [`litellm_key`](./resources/key) - Manage API keys
|
||||
* [`litellm_mcp_server`](./resources/mcp_server) - Manage MCP (Model Context Protocol) servers
|
||||
* [`litellm_credential`](./resources/credential) - Manage credentials for various providers
|
||||
* [`litellm_vector_store`](./resources/vector_store) - Manage vector stores
|
||||
* [`litellm_jwt_key_mapping`](./resources/jwt_key_mapping) - Map JWT claim values to virtual keys
|
||||
* `litellm_model` - Manage LiteLLM model configurations
|
||||
* `litellm_team` - Manage teams and their permissions
|
||||
* `litellm_team_member` - Manage team member configurations
|
||||
* `litellm_team_member_add` - Add members to teams
|
||||
* `litellm_key` - Manage API keys
|
||||
* `litellm_mcp_server` - Manage MCP (Model Context Protocol) servers
|
||||
* `litellm_credential` - Manage credentials for various providers
|
||||
* `litellm_vector_store` - Manage vector stores
|
||||
* `litellm_jwt_key_mapping` - Map JWT claim values to virtual keys
|
||||
|
||||
## Available Data Sources
|
||||
|
||||
The LiteLLM provider supports the following data sources:
|
||||
|
||||
* [`litellm_credential`](./data-sources/credential) - Retrieve credential information
|
||||
* [`litellm_vector_store`](./data-sources/vector_store) - Retrieve vector store information
|
||||
* `litellm_credential` - Retrieve credential information
|
||||
* `litellm_vector_store` - Retrieve vector store information
|
||||
|
||||
## Authentication
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue