-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated Assistants Beta v2 - Added support for specifying project id - Added BatchEndpoint - Added VectorStoresEndpoint - Added Message.ctr to specify specific tool call id, function name, and content - Renamed OpenAI.Images.ResponseFormat to OpenAI.Images.ImageResponseFormat - Changed ThreadEndpoint.CancelRunAsync return type from RunResponse to bool - Fixed Json defined Tools/Functions being improperly added to tool cache - Added Tool.TryUnregisterTool to remove a tool from the cache
- Loading branch information
1 parent
03bdded
commit 9675957
Showing
172 changed files
with
6,228 additions
and
1,787 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/code-style-rule-options | ||
|
||
# Remove the line below if you want to inherit .editorconfig settings from higher directories | ||
root = true | ||
|
||
[*.cs] | ||
|
||
#### Core EditorConfig Options #### | ||
|
||
# Indentation and spacing | ||
indent_size = 4 | ||
indent_style = space | ||
tab_width = 4 | ||
|
||
# New line preferences | ||
end_of_line = crlf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
csharp_new_line_before_catch = true | ||
csharp_new_line_before_else = true | ||
csharp_new_line_before_finally = true | ||
csharp_new_line_before_open_brace = all | ||
|
||
# Modifier preferences | ||
dotnet_style_require_accessibility_modifiers = for_non_interface_members:error | ||
|
||
# Code-block preferences | ||
csharp_prefer_braces = true:error | ||
|
||
# Use language keywords for types | ||
dotnet_style_predefined_type_for_member_access = true | ||
dotnet_style_predefined_type_for_locals_parameters_members = true | ||
|
||
# Code Style | ||
csharp_style_var_when_type_is_apparent = true | ||
csharp_place_field_attribute_on_same_line=false | ||
csharp_place_accessorholder_attribute_on_same_line=false | ||
csharp_trailing_comma_in_multiline_lists=false | ||
csharp_trailing_comma_in_singleline_lists=false | ||
csharp_keep_existing_attribute_arrangement=false | ||
csharp_blank_lines_around_region=1 | ||
csharp_blank_lines_inside_region=1 | ||
csharp_keep_blank_lines_in_code=false | ||
csharp_remove_blank_lines_near_braces_in_code=true | ||
csharp_blank_lines_before_control_transfer_statements=1 | ||
csharp_blank_lines_after_control_transfer_statements=1 | ||
csharp_blank_lines_before_block_statements=1 | ||
csharp_blank_lines_after_block_statements=1 | ||
csharp_blank_lines_before_multiline_statements=1 | ||
csharp_blank_lines_after_multiline_statements=1 | ||
csharp_blank_lines_around_block_case_section=0 | ||
csharp_blank_lines_around_multiline_case_section=0 | ||
csharp_blank_lines_before_case=0 | ||
csharp_blank_lines_after_case=0 | ||
|
||
#### Resharper/Rider Rules #### | ||
# https://www.jetbrains.com/help/resharper/EditorConfig_Properties.html | ||
|
||
resharper_csharp_force_attribute_style=separate | ||
resharper_use_name_of_instead_of_type_of_highlighting=error | ||
resharper_wrong_public_modifier_specification_highlighting=error |
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 |
---|---|---|
|
@@ -38,4 +38,4 @@ protected AbstractTestFixture() | |
}; | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.