mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 17:36:25 +02:00
Merge pull request #23 from rowboatlabs/dev
add data source disclaimers
This commit is contained in:
commit
3ac8550765
2 changed files with 5 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ export function SourcesList({
|
|||
return <div className="flex flex-col h-full">
|
||||
<div className="shrink-0 flex justify-between items-center pb-4 border-b border-b-gray-100">
|
||||
<div className="flex flex-col">
|
||||
<h1 className="text-lg">Data sources</h1>
|
||||
<h1 className="text-lg">Data sources <sup>(beta)</sup></h1>
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
|
|
|
|||
|
|
@ -162,7 +162,10 @@ export function AgentConfig({
|
|||
<Divider />
|
||||
|
||||
<div className="flex flex-col gap-4 items-start">
|
||||
<Label label="RAG" />
|
||||
<Label label="RAG (beta)" />
|
||||
{agent.ragDataSources && agent.ragDataSources.length > 0 && <div className="text-xs text-red-500">
|
||||
<sup>*</sup> RAG data sources are currently not supported in the API.
|
||||
</div>}
|
||||
<List
|
||||
items={agent.ragDataSources?.map((source) => ({
|
||||
id: source,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue