Skip to content

fix(examples): correct formatting, grammar, and MMLU acronym in llama_chroma_qa example #575

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"\n",
"[Gemini](https://ai.google.dev/models/gemini) is a family of generative AI models that lets developers generate content and solve problems. These models are designed and trained to handle both text and images as input.\n",
"\n",
"[LlamaIndex](https://www.llamaindex.ai/) is a simple, flexible data framework that can be used by Large Language Model(LLM) applications to connect custom data sources to LLMs.\n",
"[LlamaIndex](https://www.llamaindex.ai/) is a simple, flexible data framework that can be used by Large Language Model (LLM) applications to connect custom data sources to LLMs.\n",
"\n",
"[Chroma](https://docs.trychroma.com/) is an open-source embedding database focused on simplicity and developer productivity. Chroma allows users to store embeddings and their metadata, embed documents and queries, and search the embeddings quickly.\n",
"\n",
Expand Down Expand Up @@ -336,7 +336,7 @@
"id": "TamoAP7ckyvB"
},
"source": [
"You can use variety of HTML parsers to extract the required text from the html content.\n",
"You can use a variety of HTML parsers to extract the required text from the html content.\n",
"\n",
"In this example, you'll use Python's `BeautifulSoup` library to parse the website data. After processing, the extracted text should be converted back to LlamaIndex's `Document` format."
]
Expand Down Expand Up @@ -517,7 +517,7 @@
")\n",
"\n",
"# Check if the retriever is working by trying to fetch the relevant docs related\n",
"# to the phrase 'MMLU' (Multimodal Machine Learning Understanding).\n",
"# to the phrase 'MMLU' (Massive Multitask Language Understanding).\n",
"# If the length is greater than zero, it means that the retriever is\n",
"# functioning well.\n",
"# You can ask questions about your data using a generic interface called\n",
Expand Down