mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-06-04 13:30:32 +08:00
19 lines
618 B
Plaintext
19 lines
618 B
Plaintext
<view class="page">
|
|
<view class="card">
|
|
<view class="title">Knowledge Chat</view>
|
|
<view class="muted">Ask the selected WeKnora knowledge base.</view>
|
|
|
|
<view class="field">
|
|
<text class="label">Question</text>
|
|
<textarea value="{{query}}" placeholder="Ask something..." bindinput="onQueryInput" />
|
|
</view>
|
|
|
|
<button bindtap="ask" loading="{{loading}}" disabled="{{!query}}">Ask WeKnora</button>
|
|
</view>
|
|
|
|
<view class="card answer-card" wx:if="{{answer || rawResponse}}">
|
|
<view class="label">Answer</view>
|
|
<view class="answer">{{answer || rawResponse}}</view>
|
|
</view>
|
|
</view>
|