-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dscriptions to yaml files and little refactoring.
- Loading branch information
1 parent
accc506
commit 8b436fa
Showing
4 changed files
with
33 additions
and
63 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
class: "LLMSession" | ||
just_streaming_method: "openai" | ||
system_prompt_path: | ||
system_prompt: | ||
completion_remove_key_on_error: True | ||
completion_max_tries: 2 | ||
backup_options: | ||
key_list_path: | ||
tools: | ||
class: "LLMSession" # class name to create could be LLMSession, ChainOfThoughtAgent. Default is LLMSession | ||
just_streaming_method: "openai" # protocol to handle llm format for function calling | ||
system_prompt_path: # path to system prompt exclude use of system_prompt | ||
system_prompt: # system prompt exclude use of system_prompt_path | ||
completion_remove_key_on_error: True # in case of using list of keys removing key from the list after error call with this key | ||
completion_max_tries: 2 # maximum number of completion retries before giving up | ||
backup_options: # options that will be used after we give up with main options, one more completion call will be done with backup options | ||
key_list_path: # path to text file with list of api keys, one key per line | ||
tools: # list of functions that will be used as tools, each record should contain package and function name | ||
# - package: | ||
# function: |
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