Add/Edit a Source
Learn how to create and manage sources in Plexus using the dashboard interface.
Adding a Source in the Dashboard
The Plexus dashboard provides an intuitive interface for creating and managing your sources. Follow these steps to add a new source:
Step-by-Step Guide
- Navigate to Sources:
Click on "Sources" in the main navigation menu to access the sources management page.
- Create New Source:
Click the "Add Source" button in the top-right corner of the page.
- Choose Source Type:
Select the type of source you want to create (e.g., Text, Audio).
- Configure Settings:
Fill in the required information:
- Source name
- Description (optional)
- Content or file upload
- Additional settings specific to the source type
- Save:
Click "Create" to save your new source.
Editing an Existing Source
- Locate the Source:
Find the source you want to edit in the Sources list.
- Access Edit Mode:
Click the edit icon (pencil) next to the source name.
- Make Changes:
Update the source's information as needed.
- Save Changes:
Click "Save" to apply your updates.
Source Management Tips
Organization
Use clear, descriptive names and optional tags to keep your sources organized and easily searchable.
Batch Operations
Select multiple sources to perform batch operations like deletion or tag updates.
Using the CLI
For automation and scripting, you can use the Plexus CLI to manage sources:
# Create a new source
plexus sources create --name "My Source" --type text --content "Sample content"
# Update an existing source
plexus sources update source-id --name "Updated Name" --content "Updated content"
Python SDK Reference
For programmatic access, you can use the Python SDK:
from plexus import Plexus
plexus = Plexus(api_key="your-api-key")
# Create a new source
source = plexus.sources.create(
name="My Source",
type="text",
data="Sample content"
)
# Update an existing source
source = plexus.sources.update(
source_id="source-id",
name="Updated Source Name",
data="Updated content"
)
Coming Soon
Additional documentation and features are being developed. Check back soon for:
- Advanced source management techniques
- Bulk import/export capabilities
- Custom source templates
- Integration examples