Skip to main content
Chat2Graph is an open-source graph-native agent system from the TuGraph family. It calls large language models through LiteLLM, and LLM_ENDPOINT can point to any OpenAI-compatible service, so you can connect Chat2Graph to ScitiX Model Inference. This guide uses glm-5.2 as an example. For the full model list and pricing, see Models.

Configure

Create an API Key on the API Keys page. Copy .env.template to .env, then fill in:

Verify

Build and start Chat2Graph with ./bin/build.sh and ./bin/start.sh, open the Web UI at the default http://localhost:5010/, and send a message. A normal reply confirms that the connection works. You can also run a minimal LiteLLM check with the same configuration:

FAQ

  • LLM_NAME must include the openai/ prefix: This tells LiteLLM to treat the model as an OpenAI-compatible provider and use LLM_ENDPOINT instead of trying to infer another provider.
  • LLM_ENDPOINT is a base URL with /v1: Use https://api.scitix.ai/model-api/v1. The embedding endpoint uses the full /v1/embeddings path.
  • Model IDs: Use model IDs from the Models page.