Find answers from the community

Home
Members
Impactframes.
I
Impactframes.
Offline, last seen 3 months ago
Joined September 25, 2024
can the ReactAgent work with unstructured text that I bring with documents = SimpleDirectoryReader(input_dir=docs_folder, recursive=True).load_data() and then vectorise vector_store = ChromaVectorStore(chroma_collection=chroma_collection) storage_context = StorageContext.from_defaults(vector_store=vector_store) try: index = VectorStoreIndex.from_vector_store(vector_store, storage_context=storage_context) index_loaded = True except: index_loaded = False if not index_loaded: index = VectorStoreIndex.from_documents(documents, storage_context=storage_context) index.storage_context.persist() query_engine = index.as_query_engine(similarity_top_k=5)
3 comments
I
W
I
Impactframes.
Β·

ReactAgent

Has anyone try local ReacAgents with ollama before I have been trying and I have the feeling only works with OpenAI, from the docs thy mentioned GPT3.5 but I had the hopes local would also work but it doesn't work for me
18 comments
W
I
L
Hi, can we use ReActAgent with ollma models?
4 comments
I
W