-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into better_streaming
- Loading branch information
Showing
11 changed files
with
129 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# FileOutput | ||
|
||
File output component | ||
|
||
## Configuration Parameters | ||
|
||
```yaml | ||
component_name: <user-supplied-name> | ||
component_module: file_output | ||
component_config: | ||
``` | ||
No configuration parameters | ||
## Component Input Schema | ||
``` | ||
{ | ||
content: <string>, | ||
file_path: <string>, | ||
mode: <string> | ||
} | ||
``` | ||
| Field | Required | Description | | ||
| --- | --- | --- | | ||
| content | True | | | ||
| file_path | True | The path to the file to write to | | ||
| mode | False | The mode to open the file in: w (write), a (append). Default is w. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,9 @@ component_config: | |
## Component Output Schema | ||
``` | ||
<<<<<<< HEAD | ||
<None> | ||
======= | ||
<any> | ||
>>>>>>> origin/main | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Internal components that are dynamically loaded by the AI Connector | ||
# Listing them here allows for them to use relative imports | ||
__version__ = "0.1.2" | ||
__version__ = "0.1.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.