a1-ai 2.8.0

A1 — The cryptographic identity and authorization layer that turns anonymous AI agents into accountable, verifiable entities. One Identity. Full Provenance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function AiToolsHub() {
  const [sub, setSub] = React.useState('assistant');
  return h('div', null,
    h('div', { style: { display: 'flex', gap: 8, marginBottom: 16 } },
      h('button', {
        className: 'btn ' + (sub === 'assistant' ? 'btn-p' : 'btn-s') + ' btn-sm',
        onClick: () => setSub('assistant')
      }, '🧠 AI Assistant'),
      h('button', {
        className: 'btn ' + (sub === 'localllm' ? 'btn-p' : 'btn-s') + ' btn-sm',
        onClick: () => setSub('localllm')
      }, '🤖 Local AI Setup')
    ),
    sub === 'assistant' && h(AiAssistant, null),
    sub === 'localllm'  && h(LocalLlmConnect, null)
  );
}