Extending Connectors
Airweave’s connector system is designed to be extensible, allowing you to create custom source and destination connectors for your specific needs.
After you’ve cloned or forked the Airweave repository, you can extend the platform by adding your own to the repo. Airweave will automatically pick up your new sources and destinations.
We are working on making this easier in the near future. The new Airweave CLI + connector SDK will allow you to add new sources and destinations without having to clone the repository.
The general platform module structure is as follows:
Source Connectors
Source connectors define how data is extracted from various sources and converted into entities for processing.
Here is an example of the Slack connector implementation.
Creating a Source Connector
After you’ve cloned or forked the Airweave repository, you can create a new source connector by creating a new file in the app/platform/sources directory.
To get a 3rd party connector working, you need to implement the following:
- Source class that extends
BaseSource
and is decorated with@source
. generate_entities
: This method should yield Entity objects. These can be anything from a JSON object to a PDF document.create
: This method should return a SourceConnector instance.- Accompanying
Entity
schemas. You can find the Slack example here. This helps Airweave understand how to process the data, and standardize it across your syncs.
If you’re using OAuth2 and you would like Airweave to handle the OAuth2 flow for you, you need to implement the create
so that it takes in an access token and add your integration to the dev.integrations.yaml
file. We’re working on making this easier in the near future, for now we recommend reaching out to us!
Here’s an example of a custom source connector implementation. In this example, we’re fetching data from the Studio Ghibli API and yielding it as entities. These entities are then used to process into your destinations.
Source Connector Features
Your source connector can implement additional features:
Destination Connectors
Destination connectors handle how processed entities are stored in your target system.
Creating a Destination Connector
Destination Connector Features
Implement additional features for your destination connector:
Example Source Implementation
Destinations
The destinations
directory contains implementations for different storage systems:
Example Destination Implementation
Best Practices
-
Error Handling
- Implement robust error handling
- Provide clear error messages
- Use appropriate exception types
-
Configuration
- Validate configuration early
- Use type hints for configuration
- Document required configuration
-
Performance
- Implement batching where appropriate
- Use async/await for I/O operations
- Consider rate limiting
-
Testing
- Write unit tests for your connector
- Implement integration tests
- Test edge cases and error conditions