File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ def rename_conversation(
270270 self ,
271271 agent_name : str ,
272272 conversation_name : str ,
273- new_name : str = "/ " ,
273+ new_name : str = "- " ,
274274 ):
275275 try :
276276 response = requests .put (
@@ -1157,7 +1157,9 @@ async def chat_completions(
11571157 async_func : Callable = None ,
11581158 ):
11591159 agent_name = prompt .model # prompt.model is the agent name
1160- conversation_name = prompt .user # prompt.user is the conversation name
1160+ conversation_name = (
1161+ prompt .user if prompt .user else "-"
1162+ ) # prompt.user is the conversation name
11611163 agent_config = self .get_agentconfig (agent_name = agent_name )
11621164 agent_settings = agent_config ["settings" ] if "settings" in agent_config else {}
11631165 images = []
Original file line number Diff line number Diff line change 88
99setup (
1010 name = "agixtsdk" ,
11- version = "0.0.53 " ,
11+ version = "0.0.54 " ,
1212 description = "The AGiXT SDK for Python." ,
1313 long_description = long_description ,
1414 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments