Skip to content

Commit cf1929e

Browse files
committed
fixed dead links
1 parent 762ddc9 commit cf1929e

6 files changed

Lines changed: 11 additions & 7 deletions

File tree

docs/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ export default withMermaid(
313313
collapsed: true,
314314
items: [
315315
{ text: "Embedding model", link: "/self-hosting/govern/plane-ai/configure-embedding-model" },
316-
{ text: "AWS OpenSearch embedding", link: "/self-hosting/govern/aws-opensearch-embedding" },
316+
{ text: "AWS OpenSearch embedding", link: "/self-hosting/govern/plane-ai/aws-opensearch-embedding" },
317317
],
318318
},
319319
{ text: "External secrets", link: "/self-hosting/govern/external-secrets" },

docs/self-hosting/govern/environment-variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ These settings are required for semantic search and Plane AI Chat. Configure one
237237
| **BR_AWS_SECRET_ACCESS_KEY** | AWS secret access key for Bedrock Titan embedding | Conditional |
238238
| **BR_AWS_REGION** | AWS region for Bedrock Titan embedding | Conditional |
239239

240-
For setup instructions, supported models, and IAM permissions, see [Plane AI](/self-hosting/govern/plane-ai/getting-started).
240+
For setup instructions, supported models, and IAM permissions, see [Configure Plane AI](/self-hosting/govern/plane-ai/configure-plane-ai).
241241

242242
### API settings
243243

@@ -312,7 +312,7 @@ For setup instructions, supported models, and IAM permissions, see [Plane AI](/s
312312
| **CUSTOM_LLM_MAX_TOKENS** | Maximum token limit for the custom LLM. | 128000 |
313313
| **EMBEDDING_MODEL** | Model key for generating embeddings (e.g. `cohere/embed-v4.0`). Required for PI API startup when Plane AI is enabled. | |
314314
| **OPENSEARCH_ML_MODEL_ID** | OpenSearch ML model ID for the deployed embedding model. | |
315-
| **OPENSEARCH_EMBEDDING_DIMENSION** | Vector dimension for `knn_vector` fields; must match the embedding model and stay aligned with the API service. See [Semantic search](/self-hosting/govern/plane-ai/semantic-search). | 1536 |
315+
| **OPENSEARCH_EMBEDDING_DIMENSION** | Vector dimension for `knn_vector` fields; must match the embedding model and stay aligned with the API service. See [Configure embedding model](/self-hosting/govern/plane-ai/configure-embedding-model). | 1536 |
316316
| **BR_AWS_ACCESS_KEY_ID** | AWS access key for Amazon Bedrock integration. | |
317317
| **BR_AWS_SECRET_ACCESS_KEY** | AWS secret key for Amazon Bedrock integration. | |
318318
| **BR_AWS_SESSION_TOKEN** | AWS session token for Amazon Bedrock integration (for temporary credentials). | |

docs/self-hosting/govern/aws-opensearch-embedding.md renamed to docs/self-hosting/govern/plane-ai/aws-opensearch-embedding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,4 @@ EMBEDDING_MODEL=cohere/embed-v4.0
232232
OPENSEARCH_EMBEDDING_DIMENSION=1536
233233
```
234234

235-
Restart Plane and complete the remaining steps in [Set up semantic search](/self-hosting/govern/plane-ai/semantic-search).
235+
Restart Plane and complete the remaining steps in [Configure embedding model](/self-hosting/govern/plane-ai/configure-embedding-model).

docs/self-hosting/govern/plane-ai/configure-embedding-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Two options depending on your OpenSearch setup.
3131

3232
### Option A: Use an existing OpenSearch model ID
3333

34-
Use this if you've already deployed an embedding model in OpenSearch - either via the [AWS OpenSearch embedding guide](/self-hosting/govern/aws-opensearch-embedding) or manually on self-hosted OpenSearch.
34+
Use this if you've already deployed an embedding model in OpenSearch - either via the [AWS OpenSearch embedding guide](/self-hosting/govern/plane-ai/aws-opensearch-embedding) or manually on self-hosted OpenSearch.
3535

3636
```bash
3737
EMBEDDING_MODEL=cohere/embed-v4.0 # must match the deployed model
@@ -92,7 +92,7 @@ Replace `<your-region>` with your `BR_AWS_REGION` value.
9292
:::
9393

9494
:::info AWS managed OpenSearch
95-
Auto-deploy requires direct ML access to OpenSearch. AWS managed OpenSearch restricts this, so deploy the model manually using the [AWS OpenSearch embedding guide](/self-hosting/govern/aws-opensearch-embedding), then use the model ID option above.
95+
Auto-deploy requires direct ML access to OpenSearch. AWS managed OpenSearch restricts this, so deploy the model manually using the [AWS OpenSearch embedding guide](/self-hosting/govern/plane-ai/aws-opensearch-embedding), then use the model ID option above.
9696
:::
9797

9898
## Restart Plane

docs/self-hosting/govern/plane-ai/configure-plane-ai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Plane AI requires four things to work:
3434
You can provide API keys for both OpenAI and Anthropic, making all models available to users. If you provide only one key, users will only have access to that provider's models.
3535

3636
:::tip Custom or self-hosted models
37-
To use Ollama, Groq, LiteLLM, AWS Bedrock, or any OpenAI-compatible endpoint, see [Custom LLM models](/self-hosting/govern/plane-ai/custom-llm).
37+
To use Ollama, Groq, LiteLLM, AWS Bedrock, or any OpenAI-compatible endpoint, see [Custom LLM models](#custom-llm-models).
3838
:::
3939

4040
## Set up databases

vercel.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
{
108108
"source": "/self-hosting/govern/plane-ai",
109109
"destination": "/self-hosting/govern/plane-ai/configure-plane-ai"
110+
},
111+
{
112+
"source": "/self-hosting/govern/aws-opensearch-embedding",
113+
"destination": "/self-hosting/govern/plane-ai/configure-embedding-model"
110114
}
111115
],
112116
"rewrites": [

0 commit comments

Comments
 (0)