Ingest Web Page

Ingest HTML web pages.

Any web page can be ingested into Graphlit by providing the URL to the ingestUri mutation.

If you would like to ingest an entire website, via sitemap, have a look at creating a Web feed.

Mutation:

mutation IngestUri($uri: URL!) {
  ingestUri(uri: $uri) {
    id
    name
    state
    type
    fileType
    uri
  }
}

Variables:

{
  "uri": "https://docs.arize.com/phoenix/use-cases/troubleshooting-llm-retrieval-with-vector-stores"
}

Response:

{
  "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 updated