Skip to content

Commit 7f6d0b0

Browse files
committed
v0.0.53
1 parent 9cec971 commit 7f6d0b0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

agixtsdk/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,7 @@ def rename_chain(self, chain_name: str, new_name: str) -> str:
583583
response = requests.put(
584584
f"{self.base_uri}/api/chain/{chain_name}",
585585
json={"new_name": new_name},
586+
headers=self.headers,
586587
)
587588
return response.json()["message"]
588589
except Exception as e:
@@ -747,6 +748,7 @@ def update_prompt(
747748
try:
748749
response = requests.put(
749750
f"{self.base_uri}/api/prompt/{prompt_category}/{prompt_name}",
751+
headers=self.headers,
750752
json={
751753
"prompt": prompt,
752754
"prompt_name": prompt_name,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="agixtsdk",
11-
version="0.0.52",
11+
version="0.0.53",
1212
description="The AGiXT SDK for Python.",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)