Skip to content

Commit

Permalink
updating video provider
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsideguide committed Mar 6, 2024
1 parent bb96879 commit 746aa4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mendable/data-connectors",
"version": "0.0.40",
"version": "0.0.41",
"description": "Data connectors for LLMs. Made by Mendable.ai",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
8 changes: 4 additions & 4 deletions src/providers/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const providers: Provider = {
notion: new NotionDataProvider(),
jira: new JiraDataProvider(),
salesforce: new SalesforceDataProvider(),
video: new VideoFileDataProvider(),
"video": new VideoFileDataProvider(),
};

// Define a single source of truth for all providers and their associated types
Expand Down Expand Up @@ -120,12 +120,12 @@ type ProviderConfig = {
AuthorizeOptions: JiraAuthorizationOptions;
NangoAuthorizeOptions: NangoAuthorizationOptions;
};
video: {
"video": {
DataProvider: VideoFileDataProvider;
Options: VideoFileInputOptions;
AuthorizeOptions: VideoFileInputOptions;
NangoAuthorizeOptions: any;
}
NangoAuthorizeOptions: NangoAuthorizationOptions;
};
// Add other providers here...
};

Expand Down

0 comments on commit 746aa4c

Please sign in to comment.