forked from abacusai/api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode_autocomplete_response.py
More file actions
39 lines (32 loc) · 1.69 KB
/
Copy pathcode_autocomplete_response.py
File metadata and controls
39 lines (32 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from .return_class import AbstractApiClass
class CodeAutocompleteResponse(AbstractApiClass):
"""
A autocomplete response from an LLM
Args:
client (ApiClient): An authenticated API Client instance
autocompleteResponse (str): autocomplete code
showAutocomplete (bool): Whether to show autocomplete in the client
lineNumber (int): The line number where autocomplete should be shown
"""
def __init__(self, client, autocompleteResponse=None, showAutocomplete=None, lineNumber=None):
super().__init__(client, None)
self.autocomplete_response = autocompleteResponse
self.show_autocomplete = showAutocomplete
self.line_number = lineNumber
self.deprecated_keys = {}
def __repr__(self):
repr_dict = {f'autocomplete_response': repr(self.autocomplete_response), f'show_autocomplete': repr(
self.show_autocomplete), f'line_number': repr(self.line_number)}
class_name = "CodeAutocompleteResponse"
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 = {'autocomplete_response': self.autocomplete_response,
'show_autocomplete': self.show_autocomplete, 'line_number': self.line_number}
return {key: value for key, value in resp.items() if value is not None and key not in self.deprecated_keys}