Skip to main content
chat.pinaivu.ai is a stateful web chat interface for conversing with large language models on the Pinaivu network. Unlike the raw API, the chat interface remembers your previous conversations across sessions, making it easy to pick up where you left off without managing context yourself.

Getting started

1

Visit the chat interface

Open https://chat.pinaivu.ai in your browser.
2

Sign in with your Pinaivu account

Use the same credentials you created at api.pinaivu.com. If you don’t have an account yet, sign up there first.
3

Select a model

Choose from the available models in the model selector. Currently supported models include llama3.2:1b and llama3.2:3b.
4

Start chatting

Type your message in the input box and press Enter or click Send. Your response streams back in real time directly from a peer node on the Pinaivu network.

Cross-session memory

The chat interface stores your full conversation history server-side, so context carries over automatically between browser sessions. You can close the tab, come back the next day, and continue exactly where you left off — no copy-pasting previous context required. This makes the chat interface well suited for:
  • Ongoing research where you want to build on earlier exchanges
  • Long-running tasks that span multiple work sessions
  • Comparing model responses over time on the same topic

Verifying your responses

Every message response in the chat interface is backed by a routing receipt on the Pinaivu network. To verify a specific response:
  1. Hover over any assistant message to reveal the action toolbar.
  2. Click the receipt icon (🧾) to open the routing receipt for that message.
  3. You are taken directly to the corresponding entry in the Pinaivu Explorer, where you can inspect the node, payment, and coordinator signature.
This means every conversation in the chat interface carries the same cryptographic accountability as a direct API call.

API vs Chat

Use the table below to decide which interface fits your workflow.
FeatureAPI (api.pinaivu.com)Chat (chat.pinaivu.ai)
Interface typeREST APIWeb browser
Session memoryStatelessCross-session
Use caseProgrammatic / applicationInteractive / exploratory
Routing receiptsrequest_id in response bodyLinked in the message UI
If you’re building an application or automating workflows, use the API directly. If you want to explore models interactively or have a conversation without writing any code, use the chat interface.