forked from sinaptik-ai/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills_manager.py
84 lines (64 loc) · 2.33 KB
/
skills_manager.py
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from typing import Optional
from pandasai.skills import Skill
class SkillsManager:
"""
Manages Custom added Skills and tracks used skills for the query
"""
def __init__(self) -> None:
self.skills = []
self.used_skills = []
def add_skills(self, *skills: Skill):
"""
Add skills to the list of skills. If a skill with the same name
already exists, raise an error.
Args:
*skills: Variable number of skill objects to add.
"""
for skill in skills:
if any(existing_skill.name == skill.name for existing_skill in self.skills):
raise ValueError(f"Skill with name '{skill.name}' already exists.")
self.skills.extend(skills)
def skill_exists(self, name: str):
"""
Check if a skill with the given name exists in the list of skills.
Args:
name (str): The name of the skill to check.
Returns:
bool: True if a skill with the given name exists, False otherwise.
"""
return any(skill.name == name for skill in self.skills)
def has_skills(self):
"""
Check if there are any skills in the list of skills.
Returns:
bool: True if there are skills, False otherwise.
"""
return len(self.skills) > 0
def get_skill_by_func_name(self, name: str):
"""
Get a skill by its name.
Args:
name (str): The name of the skill to retrieve.
Returns:
Skill or None: The skill with the given name, or None if not found.
"""
return next((skill for skill in self.skills if skill.name == name), None)
def add_used_skill(self, skill: str):
if self.skill_exists(skill):
self.used_skills.append(skill)
def __str__(self) -> str:
"""
Present all skills
Returns:
str: _description_
"""
return "".join(str(skill) for skill in self.skills)
def prompt_display(self) -> Optional[str]:
"""
Displays skills for prompt
"""
if len(self.skills) == 0:
return None
return f"You are already provided with the following functions that you can call:\n{self}"
def to_object(self) -> str:
return [skill.stringify() for skill in self.skills]