Skip to content

Commit

Permalink
reverting alembic commit to older url
Browse files Browse the repository at this point in the history
  • Loading branch information
TransformerOptimus committed Jun 5, 2023
1 parent 0454d03 commit c6a5fc0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion alembic.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gui/pages/Content/Agents/AgentCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit c6a5fc0

Please sign in to comment.