Minor tweaks and fix in week 8

This commit is contained in:
Edward Donner
2025-01-15 21:41:16 -05:00
parent f0c3318904
commit 05dbbebeb6
9 changed files with 34 additions and 9 deletions

View File

@@ -125,7 +125,11 @@
"\n",
"Now we will create a Chroma datastore with 400,000 products from our training dataset! It's getting real!\n",
"\n",
"Note that we won't be using LangChain, but the API is very straightforward and consistent with before."
"Note that we won't be using LangChain, but the API is very straightforward and consistent with before.\n",
"\n",
"Special note: if Chroma crashes and you're a Windows user, you should try rolling back to an earlier version of the Chroma library with: \n",
"`!pip install chromadb==0.5.0` \n",
"With many thanks to student Kelly Z. for finding this out and pointing to the GitHub issue [here](https://github.com/chroma-core/chroma/issues/2513). "
]
},
{

View File

@@ -15,6 +15,7 @@ class App:
def start():
self.agent_framework = DealAgentFramework()
self.agent_framework.init_agents_as_needed()
opportunities = self.agent_framework.memory
table = table_for(opportunities)
return table