Skip to content

Commit 8d89209

Browse files
authored
Bugfixes (Josh-XT#427)
* V * Fix issue submission link * Move response load to json
1 parent 7784471 commit 8d89209

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

agixt/AGiXT.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,11 @@ def run(
127127
**kwargs,
128128
)
129129
return_response = ""
130-
if "response" in self.response:
131-
# Turn it into json
130+
try:
132131
self.response = json.loads(self.response)
132+
except:
133+
return_response = self.response
134+
if "response" in self.response:
133135
return_response = self.response["response"]
134136
if "commands" in self.response:
135137
if self.response["commands"] != {}:

agixt/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.1.57-beta
1+
v1.1.58-beta

book.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"gitbook": ">=3.0.0",
33
"title": "AGiXT",
4-
"description": "AGiXT is an Artificial Intelligence Automation Platform designed to power efficient AI instruction management across multiple providers.",
4+
"description": "AGiXT is a dynamic AI Automation Platform that seamlessly orchestrates instruction management and complex task execution across diverse AI providers. Combining adaptive memory, smart features, and a versatile plugin system, AGiXT delivers efficient and comprehensive AI solutions.",
55
"root": "./docs/",
66
"structure": {
77
"readme": "README.md",
@@ -18,11 +18,11 @@
1818
"minTocSize": 2
1919
},
2020
"github-issue-feedback": {
21-
"repo": "josh-xt/AGiXT",
22-
"label": "File an issue"
21+
"repo": "Josh-XT/AGiXT",
22+
"label": "Submit an issue"
2323
},
2424
"edit-link": {
25-
"base": "https://github.com/josh-xt/AGiXT/edit/master/docs/",
25+
"base": "https://github.com/Josh-XT/AGiXT/edit/master/docs/",
2626
"label": "Edit"
2727
}
2828
},

0 commit comments

Comments
 (0)