MightyOctopus commited on
Commit
b6c2e6e
·
verified ·
1 Parent(s): 13495b5

Update deal_agent_framework.py

Browse files
Files changed (1) hide show
  1. deal_agent_framework.py +1 -14
deal_agent_framework.py CHANGED
@@ -54,7 +54,7 @@ def init_logging():
54
 
55
 
56
  class DealAgentFramework:
57
- DB = os.getenv("PRODUCTION_DB", "products_vectorstore")
58
  MEMORY_FILENAME = "memory.json"
59
 
60
  def __init__(self):
@@ -157,16 +157,3 @@ class DealAgentFramework:
157
 
158
  if __name__ == "__main__":
159
  DealAgentFramework().run()
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
- ############ TEST ############
169
- # agent = DealAgentFramework()
170
- # print(agent.reset_memory())
171
-
172
-
 
54
 
55
 
56
  class DealAgentFramework:
57
+ DB = "products_vectordb_production"
58
  MEMORY_FILENAME = "memory.json"
59
 
60
  def __init__(self):
 
157
 
158
  if __name__ == "__main__":
159
  DealAgentFramework().run()