From b6b7de3be5424e1067980db9928a68d107ac522f Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Tue, 15 Aug 2023 14:52:43 -0700 Subject: [PATCH] Change sqlite endpoint (#7) --- .env.example | 4 ++-- .gitignore | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 4ce8b983..b5c8c710 100644 --- a/.env.example +++ b/.env.example @@ -6,6 +6,6 @@ OPENAI_API_BASE=https://oai.hconeai.com/v1 # Control log level LOG_LEVEL=INFO -DATABASE_STRING="sqlite://agent.db" +DATABASE_STRING="sqlite:///agent.db" PORT=8000 -AGENT_WORKSPACE="agbenchmark/workspace" \ No newline at end of file +AGENT_WORKSPACE="agbenchmark/workspace" diff --git a/.gitignore b/.gitignore index 1dd51078..372c78ca 100644 --- a/.gitignore +++ b/.gitignore @@ -164,4 +164,5 @@ CURRENT_BULLETIN.md # agbenchmark agbenchmark/reports -agbenchmark/workspace \ No newline at end of file +agbenchmark/workspace +agent.db