feat: add chat completion without streaming

This commit is contained in:
Ivan Gabriele
2024-03-03 15:20:30 +01:00
commit 7d3b438d16
24 changed files with 1113 additions and 0 deletions

33
.editorconfig Normal file
View File

@@ -0,0 +1,33 @@
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 120
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[*.py]
indent_size = 4
[*.rs]
indent_size = 4
max_line_length = 80
[*.xml]
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0
[Makefile]
indent_size = 8
indent_style = tab
max_line_length = 80