reverting alembic commit to older url

This commit is contained in:
TransformerOptimus
2023-06-05 23:48:14 +05:30
parent 0454d03bed
commit c6a5fc070c
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -61,7 +61,6 @@ version_path_separator = os # Use os.pathsep. Default configuration used for ne
# output_encoding = utf-8
sqlalchemy.url = postgresql://superagi:password@super__postgres:5432/super_agi_main
; sqlalchemy.url = driver://user:pass@localhost/dbname
[post_write_hooks]
# post_write_hooks defines scripts or Python functions that are run
+1 -1
View File
@@ -35,7 +35,7 @@ export default function AgentCreate({sendAgentData, selectedProjectId, fetchAgen
const [modelDropdown, setModelDropdown] = useState(false);
const agentTypes = ["Don't Maintain Task Queue", "Maintain Task Queue"]
const [agentType, setAgentType] = useState(agentTypes[1]);
const [agentType, setAgentType] = useState(agentTypes[0]);
const agentRef = useRef(null);
const [agentDropdown, setAgentDropdown] = useState(false);