-
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.
- Loading branch information
1 parent
39bd61e
commit 1de29c3
Showing
273 changed files
with
2,385 additions
and
242 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
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,36 @@ | ||
from .return_class import AbstractApiClass | ||
|
||
|
||
class CodeBot(AbstractApiClass): | ||
""" | ||
A bot option for CodeLLM | ||
Args: | ||
client (ApiClient): An authenticated API Client instance | ||
llmName (str): The name of the LLM. | ||
name (str): The name of the bot. | ||
""" | ||
|
||
def __init__(self, client, llmName=None, name=None): | ||
super().__init__(client, None) | ||
self.llm_name = llmName | ||
self.name = name | ||
self.deprecated_keys = {} | ||
|
||
def __repr__(self): | ||
repr_dict = {f'llm_name': repr( | ||
self.llm_name), f'name': repr(self.name)} | ||
class_name = "CodeBot" | ||
repr_str = ',\n '.join([f'{key}={value}' for key, value in repr_dict.items( | ||
) if getattr(self, key, None) is not None and key not in self.deprecated_keys]) | ||
return f"{class_name}({repr_str})" | ||
|
||
def to_dict(self): | ||
""" | ||
Get a dict representation of the parameters in this class | ||
Returns: | ||
dict: The dict value representation of the class parameters | ||
""" | ||
resp = {'llm_name': self.llm_name, 'name': self.name} | ||
return {key: value for key, value in resp.items() if value is not None and key not in self.deprecated_keys} |
Oops, something went wrong.