Comment on page
Ingest Web Page
Ingest HTML web pages.
Any web page can be ingested into Graphlit by providing the URL to the
ingestPage
mutation.Currently, Graphlit does not support dynamic web pages, which require Javascript to execute before they fully render.
mutation IngestPage($uri: URL!) {
ingestPage(uri: $uri) {
id
name
state
type
fileType
uri
}
}
{
"uri": "https://docs.arize.com/phoenix/use-cases/troubleshooting-llm-retrieval-with-vector-stores"
}
{
"type": "PAGE",
"uri": "https://docs.arize.com/phoenix/use-cases/troubleshooting-llm-retrieval-with-vector-stores",
"id": "e92376e6-f18b-4228-8548-76bddc4f9eef",
"name": "Troubleshooting LLM Search and Retrieval with Vector Stores - Phoenix",
"state": "CREATED"
}
Last modified 4mo ago