Skip to content

Commit

Permalink
nit fixes to poke (#3347)
Browse files Browse the repository at this point in the history
  • Loading branch information
spolu authored Jan 22, 2024
1 parent 4c009bf commit b9a4e44
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions front/pages/poke/[wId]/assistants/[aId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const DataSourcePage = ({
</div>
<div className="ml-4 text-sm text-element-700">
<div className="font-bold">model:</div>
{`${JSON.stringify(a.generation?.model, null, 2)}`}
{JSON.stringify(a.generation?.model, null, 2)}
</div>
{a.action && isRetrievalConfiguration(a.action) && (
<div className="mb-2 ml-4 flex-col text-sm text-gray-600">
Expand All @@ -96,7 +96,9 @@ const DataSourcePage = ({
<div className="mb-2 ml-4 flex-col text-sm text-gray-600">
<div className="font-bold">Tables:</div>
{a.action.tables.map((t) => (
<div key={t.tableId}>
<div
key={`${t.workspaceId}/${t.dataSourceId}/${t.tableId}`}
>
{t.workspaceId}/{t.dataSourceId}/{t.tableId}
</div>
))}
Expand Down

0 comments on commit b9a4e44

Please sign in to comment.