Skip to main content

llama-index networks integration

Project description

LlamaIndex Networks

The llama-index-networks library extension allows for the creation of networks knowledge that can be queried and used for LLM context augmentation. In such networks, we have "data suppliers" and "data consumers" that participate and benefit from the network, respectively.

Data suppliers

With this extension, you can easily wrap your llama-index QueryEngine with a ContributorService that exposes the query engine behind a REST (FastAPI) service, which renders it ready to contribute to LlamaIndex Network!

from llama_index.networks.contributor import (
    ContributorServiceSettings,
    ContributorService,
)

query_engine = ...  # build a query engine as typically done with llama-index

settings = ContributorServiceSettings()
service = ContributorService(config=settings, query_engine=query_engine)
app = service.app


if __name__ == "__main__":
    import uvicorn

    uvicorn.run(app, port=8000)

Data consumers

With llama-index-networks, you can build a NetworkQueryEngine that is able to connect to set of (network) ContributorService's.

from llama_index.networks.contributor import ContributorClient
from llama_index.networks.query_engine import NetworkQueryEngine
from llama_index.llms.groq import Groq

# Use ContributorClient to connect to a ContributorService
client = ContributorClient.from_config_file(env_file=".env.contributor.client")
contributors = [client]

# NetworkQueryEngine
llm = Groq()
network_query_engine = NetworkQueryEngine.from_args(
    contributors=contributors, llm=llm
)

# Can query it like any other query engine
network_query_engine.query("Why is the sky blue?")

The .env.contributor.client file contains the parameters to connect to the ContributorService (i.e., api_url and api_token.)

Examples

For a full demo, checkout the examples/demo sub-folder.

FAQ

1. Can I add my own custom endpoints to a ContributorService?

Yes, the (Fastapi) app is accessible via ContributorService.app and can be modified to your needs.

settings = ContributorServiceSettings()
service = ContributorService(config=settings, query_engine=query_engine)
app = service.app


@app.get("<custom-path>")
def custom_endpoint_logic():
    ...

2. How can I add authentication to a ContributorService?

Currently, the client supports authentication through request headers as well as as via an api_token str. On the server side, you should be able to modify the app to your needs:

settings = ContributorServiceSettings()
service = ContributorService(config=settings, query_engine=query_engine)
app = service.app

# modify app here to include your own security mechanisms

As we continue to build out this library extension, we welcome any feedback or suggestions on what can be incorporated on this regard and others in order to make our tools more helpful to our users.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_networks-0.1.0a8.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

llama_index_networks-0.1.0a8-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_networks-0.1.0a8.tar.gz.

File metadata

  • Download URL: llama_index_networks-0.1.0a8.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.13 Darwin/23.0.0

File hashes

Hashes for llama_index_networks-0.1.0a8.tar.gz
Algorithm Hash digest
SHA256 11ffbdffeef474382cf8ec003252e1eb093ea124264c3ecb18eb96b180cfa95b
MD5 2f88a0a8a26eb166514767a9307bb5d6
BLAKE2b-256 70e95a5eae62a738abbbf4fba717b01191e3fdaee71b0aebc9ffcb8253b2d9d0

See more details on using hashes here.

File details

Details for the file llama_index_networks-0.1.0a8-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_networks-0.1.0a8-py3-none-any.whl
Algorithm Hash digest
SHA256 e0cbdd4942a4d9794fffd4a1307911452b354edb8d0ecb0a290b70f9fc003fd4
MD5 dfab53791115bb18a9aa9a9f05bc77aa
BLAKE2b-256 0f172e9ce84f4b551271cf19882889990dd77de2333b4d2a82d41340485b5a98

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page