Quick Start
This guide will help you get started with using an existing DataBridge server. If you need to set up your own server, see the Installation Guide instead.
Getting Your Access URI
Note: For local development, you can skip this step and connect directly to
http://localhost:8000
without authentication.
If you need authentication:
Visit your DataBridge server's API documentation (http://localhost:8000/docs)
Find and use the
/local/generate_uri
endpoint to generate your URISave this URI - you'll need it to connect to the server with authentication
Ways to Use DataBridge
You can interact with DataBridge in several ways:
1. Using the Shell
The shell provides an interactive Python environment for quick testing:
Once connected, you can interactively run commands:
The shell supports all SDK functionality and allows you to write multi-line code just like in a Python script.
2. Using the Python SDK
3. Using the UI Component
The UI component provides a convenient interface for prototyping and testing:
Access the UI at http://localhost:3000
For authenticated access, enter your generated URI in the connection field
For local development, just click Connect (no URI needed)
The UI lets you:
Test different document types and upload workflows
Experiment with various query prompts
Monitor document processing and indexing
Debug and visualize search results
Next Steps
Learn more about:
Last updated