forked from abacusai/api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode_embeddings.py
More file actions
37 lines (30 loc) · 1.39 KB
/
Copy pathcode_embeddings.py
File metadata and controls
37 lines (30 loc) · 1.39 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
from .return_class import AbstractApiClass
class CodeEmbeddings(AbstractApiClass):
"""
Code embeddings
Args:
client (ApiClient): An authenticated API Client instance
embeddings (dict): A dictionary mapping the file name to its embeddings.
chunkingScheme (str): The scheme used for chunking the embeddings.
"""
def __init__(self, client, embeddings=None, chunkingScheme=None):
super().__init__(client, None)
self.embeddings = embeddings
self.chunking_scheme = chunkingScheme
self.deprecated_keys = {}
def __repr__(self):
repr_dict = {f'embeddings': repr(
self.embeddings), f'chunking_scheme': repr(self.chunking_scheme)}
class_name = "CodeEmbeddings"
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 = {'embeddings': self.embeddings,
'chunking_scheme': self.chunking_scheme}
return {key: value for key, value in resp.items() if value is not None and key not in self.deprecated_keys}