File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -85,26 +85,6 @@ async def initialize_session(self) -> None:
85
85
"""Control initial session with OpenAI and register tools."""
86
86
tools = [
87
87
{
88
- "type" : "tool" ,
89
- "name" : "set_memory" ,
90
- "description" : "Saves important data about the user into memory." ,
91
- "parameters" : {
92
- "type" : "object" ,
93
- "properties" : {
94
- "key" : {
95
- "type" : "string" ,
96
- "description" : "The key of the memory value."
97
- },
98
- "value" : {
99
- "type" : "string" ,
100
- "description" : "The value to store."
101
- }
102
- },
103
- "required" : ["key" , "value" ]
104
- }
105
- },
106
- {
107
- "type" : "tool" ,
108
88
"name" : "handoff_to_agent" ,
109
89
"description" : "Request human intervention." ,
110
90
"parameters" : {
@@ -119,7 +99,6 @@ async def initialize_session(self) -> None:
119
99
}
120
100
},
121
101
{
122
- "type" : "tool" ,
123
102
"name" : "get_weather" ,
124
103
"description" : "Retrieves weather info for a given lat/lng." ,
125
104
"parameters" : {
You can’t perform that action at this time.
0 commit comments