Merge pull request #419 from lfnovo/fix/broken-docs-links
fix: update broken documentation links to ai-providers.md
This commit is contained in:
commit
cb66d6e2b3
7 changed files with 2 additions and 60 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,7 +6,6 @@ data/
|
|||
sqlite-db/
|
||||
surreal-data/
|
||||
docker.env
|
||||
!setup_guide/docker.env
|
||||
notebook_data/
|
||||
# Python-specific
|
||||
*.py[cod]
|
||||
|
|
|
|||
|
|
@ -231,7 +231,7 @@ export function DefaultModelsSection({ models, defaults }: DefaultModelsSectionP
|
|||
|
||||
<div className="pt-4 border-t">
|
||||
<a
|
||||
href="https://github.com/lfnovo/open-notebook/blob/main/docs/features/ai-models.md"
|
||||
href="https://github.com/lfnovo/open-notebook/blob/main/docs/5-CONFIGURATION/ai-providers.md"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-sm text-primary hover:underline"
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ export function ProviderStatus({ providers }: ProviderStatusProps) {
|
|||
|
||||
<div className="mt-6 pt-4 border-t">
|
||||
<a
|
||||
href="https://github.com/lfnovo/open-notebook/blob/main/docs/features/ai-models.md"
|
||||
href="https://github.com/lfnovo/open-notebook/blob/main/docs/5-CONFIGURATION/ai-providers.md"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-sm text-primary hover:underline"
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
# Open Notebook - Advanced Docker Setup Guide
|
||||
|
||||
> **This documentation has moved!**
|
||||
>
|
||||
> This content is now available at [deployment/docker.md](../docs/deployment/docker.md)
|
||||
>
|
||||
> Please update your bookmarks and links to point to the new location.
|
||||
|
||||
---
|
||||
|
||||
**Quick Links:**
|
||||
- [Docker Setup Guide](../docs/deployment/docker.md) - Complete Docker setup instructions
|
||||
- [Single-Container Deployment](../docs/deployment/single-container.md) - Simplified single-container setup
|
||||
- [AI Models Configuration](../docs/features/ai-models.md) - Guide to all supported AI providers
|
||||
- [Deployment Overview](../docs/deployment/index.md) - All deployment options
|
||||
- [Getting Started](../docs/getting-started/index.md) - Installation and setup guide
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
# Open Notebook - Docker Setup Guide for Beginners
|
||||
|
||||
> **This documentation has moved!**
|
||||
>
|
||||
> This content is now available at [deployment/docker.md](../docs/deployment/docker.md)
|
||||
>
|
||||
> Please update your bookmarks and links to point to the new location.
|
||||
|
||||
---
|
||||
|
||||
**Quick Links:**
|
||||
- [Docker Setup Guide](../docs/deployment/docker.md) - Complete Docker setup instructions
|
||||
- [Single-Container Deployment](../docs/deployment/single-container.md) - Simplified single-container setup
|
||||
- [Deployment Overview](../docs/deployment/index.md) - All deployment options
|
||||
- [Getting Started](../docs/getting-started/index.md) - Installation and setup guide
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
services:
|
||||
open_notebook:
|
||||
image: lfnovo/open_notebook:v1-latest-single
|
||||
ports:
|
||||
- "8502:8502"
|
||||
- "5055:5055"
|
||||
env_file:
|
||||
- ./docker.env
|
||||
pull_policy: always
|
||||
volumes:
|
||||
- ./notebook_data:/app/data
|
||||
- ./surreal_single_data:/mydata
|
||||
restart: always
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
|
||||
OPENAI_API_KEY=
|
||||
|
||||
|
||||
# CONNECTION DETAILS FOR YOUR SURREAL DB
|
||||
# use localhost if using the single container, or surrealdb if using the multi-container
|
||||
SURREAL_URL="ws://localhost/rpc:8000"
|
||||
SURREAL_USER="root"
|
||||
SURREAL_PASSWORD="root"
|
||||
SURREAL_NAMESPACE="open_notebook"
|
||||
SURREAL_DATABASE="open_notebook"
|
||||
|
||||
Loading…
Reference in a new issue