No project description provided
Project description
Relevance Connect
Open connector to add integrations to Relevance AI.
Getting Started
Prerequisites
Install the Relevance Connect CLI:
pip install relevance_connect
For local development, you can install the package from the source:
pip install -e .
Login to your Relevance AI account: Walkthrough:
relevance-connect login
Creating a New Integration
Checkout the example for a complete example.
Follow these steps to create and submit a new integration:
1. Set Up Your Integration Folder
Create a new folder for your integration and navigate to it.
2. Create the Metadata File
Create a metadata.json file that defines your integration's configuration:
{
"name": "Firecrawl",
"description": "Firecrawl is a tool that allows you to run firecrawl.",
"inputs": [
{
"input_name": "website_url",
"type": "string",
"title": "Website URL",
"description": "The URL of the website to crawl.",
"default": "https://www.firecrawl.dev"
},
{
"input_name": "firecrawl",
"type": "string",
"title": "Firecrawl API Key",
"description": "The API key for firecrawl.",
"metadata": {
"content_type": "api_key",
"is_fixed_param": true
}
}
],
"required": ["website_url", "firecrawl"],
"requirements": ["firecrawl"],
"icon": "https://firecrawl.dev/favicon.ico",
"long_output_mode": true,
"timeout": 300
}
Metadata Fields
- name: Name of the integration
- description: Description of what the integration does
- inputs: Array of input configurations for the integration
- required: Array of required input field names
- requirements: (Optional) Python packages required by the integration
- icon: (Optional) URL to an icon for the integration
- long_output_mode: (Optional) Set to
trueif your code returns output greater than 10 million characters - timeout: (Optional) Timeout in seconds (default: 300)
📖 For detailed information about all available input types and their schemas, see INPUTS.md.
3. Create the Main Script
Create a main.py file containing your integration logic:
from firecrawl import FirecrawlApp
# Initialize the FirecrawlApp with API key from secrets
app = FirecrawlApp(api_key="{{secrets.chains_firecrawl}}")
# Use the website URL from the params
scrape_status = app.scrape_url(params['website_url'])
# Return the scraped content
return scrape_status.markdown
Important Notes
- Single file only: The entire integration must be in one
main.pyfile - Return statement required: Your script must end with a
returnstatement - Access inputs: Use the
paramsdictionary to access inputs (e.g.,params["website_url"]) - API keys: Reference API key inputs using the pattern
{{secrets.chains_XXX}}whereXXXis the input name
4. Test Your Integration
Create Test Inputs
Create an inputs.json file with test data:
{
"website_url": "https://www.example.com",
"firecrawl": "your-test-api-key"
}
Run the Test
Execute your integration locally:
relevance-connect run
[Optional] Save the Integration
If you want to save the integration to your Relevance AI account, you can do so with the following command:
relevance-connect save
5. Submit Your Integration
Once your integration is working correctly, submit it to Relevance AI!
Other Commands
Logout
relevance-connect logout
Run javascript integration
Javascript is also supported. For javascript, packages are not supported. Checkout the js_example for an example.
relevance-connect run-js
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file relevance_connect-0.1.1.tar.gz.
File metadata
- Download URL: relevance_connect-0.1.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d971598661429760934bc7501738712348fdbd46c2c29dcfb7a06a64c4ebbf87
|
|
| MD5 |
a20a8750bb284887a426471c6b68119e
|
|
| BLAKE2b-256 |
bc6990448a26e22772179f49cb790c93ff94bd086b3b32d366227c3a2a66ba0b
|
File details
Details for the file relevance_connect-0.1.1-py3-none-any.whl.
File metadata
- Download URL: relevance_connect-0.1.1-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d706f38047b0e60ff153b6ee60b49b4eac5814374f7acf3f680a5a586d383d15
|
|
| MD5 |
3477d8f49434fb049749cf00222e20c4
|
|
| BLAKE2b-256 |
7cc9c12fe390f83ccf519ca4ee3559af67eface2300891feb25f259c77942a06
|